nautobot 2.4.0b1__py3-none-any.whl → 2.4.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/__init__.py +1 -1
- nautobot/apps/api.py +8 -8
- nautobot/apps/change_logging.py +2 -2
- nautobot/apps/choices.py +4 -4
- nautobot/apps/events.py +3 -3
- nautobot/apps/factory.py +2 -2
- nautobot/apps/filters.py +1 -1
- nautobot/apps/forms.py +20 -20
- nautobot/apps/graphql.py +2 -2
- nautobot/apps/jobs.py +8 -8
- nautobot/apps/models.py +19 -19
- nautobot/apps/tables.py +1 -1
- nautobot/apps/testing.py +10 -10
- nautobot/apps/ui.py +2 -2
- nautobot/apps/utils.py +7 -7
- nautobot/apps/views.py +7 -7
- nautobot/circuits/api/serializers.py +1 -0
- nautobot/circuits/api/views.py +4 -8
- nautobot/circuits/tables.py +2 -1
- nautobot/circuits/templates/circuits/circuit_create.html +1 -7
- nautobot/circuits/views.py +3 -3
- nautobot/cloud/api/views.py +6 -10
- nautobot/cloud/models.py +1 -1
- nautobot/cloud/views.py +0 -16
- nautobot/core/api/constants.py +11 -0
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/filter_backends.py +3 -9
- nautobot/core/api/schema.py +13 -2
- nautobot/core/api/serializers.py +40 -34
- nautobot/core/api/views.py +56 -4
- nautobot/core/celery/log.py +4 -4
- nautobot/core/celery/schedulers.py +2 -2
- nautobot/core/choices.py +2 -2
- nautobot/core/events/__init__.py +3 -3
- nautobot/core/filters.py +67 -35
- nautobot/core/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +14 -11
- nautobot/core/forms/forms.py +33 -2
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +28 -7
- nautobot/core/jobs/bulk_actions.py +285 -0
- nautobot/core/jobs/cleanup.py +48 -12
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/models/__init__.py +3 -1
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +6 -3
- nautobot/core/settings.py +29 -2
- nautobot/core/settings.yaml +21 -0
- nautobot/core/tables.py +79 -61
- nautobot/core/templates/about.html +67 -0
- nautobot/core/templates/inc/media.html +3 -0
- nautobot/core/templates/inc/nav_menu.html +1 -0
- nautobot/core/templates/inc/tenancy_form_panel.html +9 -0
- nautobot/core/templates/inc/tenant_table_row.html +11 -0
- nautobot/core/templates/nautobot_config.py.j2 +13 -0
- nautobot/core/templates/search.html +7 -0
- nautobot/core/templates/utilities/render_jinja2.html +1 -1
- nautobot/core/templates/utilities/templatetags/tag.html +1 -1
- nautobot/core/templates/utilities/theme_preview.html +7 -0
- nautobot/core/templatetags/helpers.py +11 -2
- nautobot/core/testing/__init__.py +8 -8
- nautobot/core/testing/api.py +170 -15
- nautobot/core/testing/filters.py +45 -10
- nautobot/core/testing/forms.py +2 -0
- nautobot/core/testing/integration.py +86 -4
- nautobot/core/testing/mixins.py +7 -2
- nautobot/core/testing/views.py +44 -29
- nautobot/core/tests/integration/test_app_home.py +0 -1
- nautobot/core/tests/integration/test_app_navbar.py +0 -1
- nautobot/core/tests/integration/test_filters.py +0 -2
- nautobot/core/tests/integration/test_home.py +0 -1
- nautobot/core/tests/integration/test_navbar.py +0 -1
- nautobot/core/tests/integration/test_view_authentication.py +1 -0
- nautobot/core/tests/runner.py +1 -1
- nautobot/core/tests/test_api.py +98 -1
- nautobot/core/tests/test_csv.py +25 -3
- nautobot/core/tests/test_filters.py +209 -246
- nautobot/core/tests/test_forms.py +1 -0
- nautobot/core/tests/test_jobs.py +460 -1
- nautobot/core/tests/test_models.py +9 -0
- nautobot/core/tests/test_settings_schema.py +7 -0
- nautobot/core/tests/test_tables.py +100 -0
- nautobot/core/tests/test_utils.py +63 -1
- nautobot/core/tests/test_views.py +30 -3
- nautobot/core/ui/nav.py +1 -0
- nautobot/core/ui/object_detail.py +15 -1
- nautobot/core/urls.py +11 -0
- nautobot/core/utils/lookup.py +11 -8
- nautobot/core/utils/querysets.py +64 -0
- nautobot/core/utils/requests.py +24 -9
- nautobot/core/views/__init__.py +42 -0
- nautobot/core/views/generic.py +131 -197
- nautobot/core/views/mixins.py +126 -38
- nautobot/core/views/renderers.py +6 -6
- nautobot/dcim/api/serializers.py +56 -64
- nautobot/dcim/api/views.py +47 -113
- nautobot/dcim/constants.py +6 -13
- nautobot/dcim/factory.py +6 -1
- nautobot/dcim/filters/__init__.py +31 -2
- nautobot/dcim/forms.py +36 -17
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +25 -0
- nautobot/dcim/models/__init__.py +1 -1
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +22 -20
- nautobot/dcim/models/devices.py +10 -1
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +6 -5
- nautobot/dcim/models/racks.py +4 -4
- nautobot/dcim/tables/__init__.py +3 -3
- nautobot/dcim/tables/devices.py +7 -5
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/controller_create.html +1 -7
- nautobot/dcim/templates/dcim/controller_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +2 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +5 -0
- nautobot/dcim/templates/dcim/device.html +1 -9
- nautobot/dcim/templates/dcim/device_edit.html +36 -37
- nautobot/dcim/templates/dcim/location.html +1 -9
- nautobot/dcim/templates/dcim/location_edit.html +1 -7
- nautobot/dcim/templates/dcim/rack.html +1 -9
- nautobot/dcim/templates/dcim/rack_edit.html +1 -7
- nautobot/dcim/templates/dcim/rackreservation.html +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +1 -7
- nautobot/dcim/tests/integration/test_controller.py +62 -0
- nautobot/dcim/tests/integration/test_controller_managed_device_group.py +71 -0
- nautobot/dcim/tests/integration/test_device_bulk_delete.py +189 -0
- nautobot/dcim/tests/integration/test_device_bulk_edit.py +181 -0
- nautobot/dcim/tests/test_api.py +16 -5
- nautobot/dcim/tests/test_filters.py +33 -0
- nautobot/dcim/tests/test_forms.py +51 -2
- nautobot/dcim/tests/test_graphql.py +52 -0
- nautobot/dcim/tests/test_jobs.py +118 -0
- nautobot/dcim/tests/test_models.py +52 -9
- nautobot/dcim/tests/test_views.py +21 -83
- nautobot/dcim/views.py +1 -13
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +90 -85
- nautobot/extras/api/views.py +22 -27
- nautobot/extras/constants.py +2 -0
- nautobot/extras/filters/__init__.py +8 -6
- nautobot/extras/forms/base.py +2 -2
- nautobot/extras/forms/forms.py +139 -31
- nautobot/extras/forms/mixins.py +14 -6
- nautobot/extras/group_sync.py +3 -3
- nautobot/extras/health_checks.py +1 -2
- nautobot/extras/jobs.py +85 -18
- nautobot/extras/managers.py +3 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
- nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +22 -0
- nautobot/extras/migrations/0121_alter_team_contacts.py +17 -0
- nautobot/extras/models/__init__.py +1 -1
- nautobot/extras/models/contacts.py +1 -1
- nautobot/extras/models/customfields.py +12 -11
- nautobot/extras/models/groups.py +11 -9
- nautobot/extras/models/jobs.py +23 -4
- nautobot/extras/models/models.py +2 -2
- nautobot/extras/plugins/__init__.py +13 -2
- nautobot/extras/plugins/marketplace_manifest.yml +84 -79
- nautobot/extras/plugins/tables.py +16 -14
- nautobot/extras/plugins/views.py +65 -69
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/tables.py +7 -5
- nautobot/extras/templates/extras/dynamicgroup.html +1 -9
- nautobot/extras/templates/extras/job_detail.html +16 -0
- nautobot/extras/templates/extras/job_edit.html +1 -0
- nautobot/extras/templates/extras/jobqueue_retrieve.html +1 -9
- nautobot/extras/templates/extras/marketplace.html +29 -11
- nautobot/extras/templates/extras/plugin_detail.html +32 -15
- nautobot/extras/templates/extras/plugins_tiles.html +21 -10
- nautobot/extras/templatetags/job_buttons.py +4 -4
- nautobot/extras/test_jobs/api_test_job.py +1 -1
- nautobot/extras/test_jobs/atomic_transaction.py +2 -2
- nautobot/extras/test_jobs/dry_run.py +1 -1
- nautobot/extras/test_jobs/fail.py +5 -5
- nautobot/extras/test_jobs/file_output.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -1
- nautobot/extras/test_jobs/file_upload_pass.py +1 -1
- nautobot/extras/test_jobs/ipaddress_vars.py +3 -1
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
- nautobot/extras/test_jobs/log_redaction.py +1 -1
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
- nautobot/extras/test_jobs/modify_db.py +1 -1
- nautobot/extras/test_jobs/object_var_optional.py +1 -1
- nautobot/extras/test_jobs/object_var_required.py +1 -1
- nautobot/extras/test_jobs/object_vars.py +1 -1
- nautobot/extras/test_jobs/pass.py +3 -3
- nautobot/extras/test_jobs/profiling.py +1 -1
- nautobot/extras/test_jobs/relative_import.py +3 -3
- nautobot/extras/test_jobs/singleton.py +16 -0
- nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
- nautobot/extras/test_jobs/task_queues.py +1 -1
- nautobot/extras/tests/integration/test_plugin_banner.py +0 -2
- nautobot/extras/tests/test_api.py +13 -13
- nautobot/extras/tests/test_customfields.py +1 -1
- nautobot/extras/tests/test_datasources.py +2 -1
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +6 -6
- nautobot/extras/tests/test_forms.py +33 -1
- nautobot/extras/tests/test_jobs.py +178 -32
- nautobot/extras/tests/test_models.py +16 -10
- nautobot/extras/tests/test_plugins.py +62 -9
- nautobot/extras/tests/test_relationships.py +120 -9
- nautobot/extras/tests/test_views.py +56 -194
- nautobot/extras/utils.py +3 -2
- nautobot/extras/views.py +30 -98
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +41 -33
- nautobot/ipam/api/views.py +68 -117
- nautobot/ipam/factory.py +1 -1
- nautobot/ipam/filters.py +3 -2
- nautobot/ipam/lookups.py +101 -62
- nautobot/ipam/models.py +66 -16
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +23 -7
- nautobot/ipam/templates/ipam/ipaddress.html +1 -9
- nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +1 -7
- nautobot/ipam/templates/ipam/ipaddress_edit.html +1 -7
- nautobot/ipam/templates/ipam/prefix.html +1 -9
- nautobot/ipam/templates/ipam/prefix_edit.html +1 -7
- nautobot/ipam/templates/ipam/vlan.html +1 -9
- nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
- nautobot/ipam/templates/ipam/vrf_edit.html +1 -7
- nautobot/ipam/tests/test_api.py +436 -3
- nautobot/ipam/tests/test_forms.py +49 -47
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +95 -34
- nautobot/ipam/tests/test_querysets.py +63 -1
- nautobot/ipam/tests/test_views.py +3 -0
- nautobot/ipam/utils/__init__.py +36 -6
- nautobot/ipam/views.py +61 -87
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +40 -2
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/docs/404.html +46 -4
- nautobot/project-static/docs/apps/index.html +46 -4
- nautobot/project-static/docs/apps/nautobot-apps.html +47 -6
- nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.88dd0f4e.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.88dd0f4e.min.js.map} +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +62 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +59 -7
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +374 -122
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +90 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +95 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +53 -6
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +52 -5
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +79 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +102 -28
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +108 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +131 -38
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +239 -65
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +581 -165
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +109 -36
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +453 -167
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +493 -211
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +60 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +71 -15
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +407 -55
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +620 -205
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +858 -412
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +59 -7
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +448 -186
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +365 -147
- nautobot/project-static/docs/development/apps/api/configuration-view.html +46 -4
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/global-search.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/graphql.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +68 -7
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +46 -4
- nautobot/project-static/docs/development/apps/api/prometheus.html +46 -4
- nautobot/project-static/docs/development/apps/api/setup.html +46 -4
- nautobot/project-static/docs/development/apps/api/testing.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/base-template.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/notes.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +52 -6
- nautobot/project-static/docs/development/apps/api/views/urls.html +46 -4
- nautobot/project-static/docs/development/apps/index.html +46 -4
- nautobot/project-static/docs/development/apps/migration/code-updates.html +46 -4
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +46 -4
- nautobot/project-static/docs/development/apps/migration/from-v1.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +46 -4
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +50 -8
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +46 -4
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +211 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +46 -4
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +46 -4
- nautobot/project-static/docs/development/core/application-registry.html +46 -4
- nautobot/project-static/docs/development/core/best-practices.html +46 -4
- nautobot/project-static/docs/development/core/bootstrap-ui.html +46 -4
- nautobot/project-static/docs/development/core/caching.html +46 -4
- nautobot/project-static/docs/development/core/controllers.html +46 -4
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +73 -74
- nautobot/project-static/docs/development/core/generic-views.html +46 -4
- nautobot/project-static/docs/development/core/getting-started.html +249 -224
- nautobot/project-static/docs/development/core/homepage.html +49 -7
- nautobot/project-static/docs/development/core/index.html +46 -4
- nautobot/project-static/docs/development/core/{local-k8s.html → minikube-dev-environment-for-k8s-jobs.html} +469 -168
- nautobot/project-static/docs/development/core/model-checklist.html +56 -12
- nautobot/project-static/docs/development/core/model-features.html +46 -4
- nautobot/project-static/docs/development/core/natural-keys.html +46 -4
- nautobot/project-static/docs/development/core/navigation-menu.html +46 -4
- nautobot/project-static/docs/development/core/release-checklist.html +49 -7
- nautobot/project-static/docs/development/core/role-internals.html +46 -4
- nautobot/project-static/docs/development/core/settings.html +46 -4
- nautobot/project-static/docs/development/core/style-guide.html +49 -7
- nautobot/project-static/docs/development/core/templates.html +46 -4
- nautobot/project-static/docs/development/core/testing.html +46 -4
- nautobot/project-static/docs/development/core/ui-component-framework.html +369 -273
- nautobot/project-static/docs/development/core/user-preferences.html +46 -4
- nautobot/project-static/docs/development/index.html +46 -4
- nautobot/project-static/docs/development/jobs/index.html +216 -122
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +46 -4
- nautobot/project-static/docs/index.html +54 -23
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit_button.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_view.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_add.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_config.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_completed.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_pending.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_run_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_nautobot_login.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_job.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_scheduled_job_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_scheduled_job_result.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/buttons-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/cluster-type-before-after-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example_2.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example-code.png +0 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +47 -7
- nautobot/project-static/docs/overview/design_philosophy.html +46 -4
- nautobot/project-static/docs/release-notes/index.html +52 -12
- nautobot/project-static/docs/release-notes/version-1.0.html +234 -193
- nautobot/project-static/docs/release-notes/version-1.1.html +231 -190
- nautobot/project-static/docs/release-notes/version-1.2.html +306 -265
- nautobot/project-static/docs/release-notes/version-1.3.html +332 -291
- nautobot/project-static/docs/release-notes/version-1.4.html +417 -377
- nautobot/project-static/docs/release-notes/version-1.5.html +605 -566
- nautobot/project-static/docs/release-notes/version-1.6.html +904 -447
- nautobot/project-static/docs/release-notes/version-2.0.html +528 -489
- nautobot/project-static/docs/release-notes/version-2.1.html +363 -324
- nautobot/project-static/docs/release-notes/version-2.2.html +356 -317
- nautobot/project-static/docs/release-notes/version-2.3.html +997 -352
- nautobot/project-static/docs/release-notes/version-2.4.html +525 -101
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +295 -287
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +48 -6
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +110 -8
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +48 -6
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +66 -8
- nautobot/project-static/docs/user-guide/administration/installation/index.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +47 -5
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/services.html +46 -4
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +46 -4
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +46 -4
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +46 -4
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +49 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +50 -12
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +49 -7
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +51 -7
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/central-mode.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +49 -7
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +9444 -0
- nautobot/project-static/docs/user-guide/index.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +50 -8
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +50 -7
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +49 -7
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +9722 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +47 -5
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +94 -25
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +74 -5
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +46 -4
- nautobot/project-static/js/forms.js +1 -1
- nautobot/tenancy/api/views.py +9 -13
- nautobot/tenancy/views.py +4 -2
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +5 -4
- nautobot/users/api/views.py +3 -3
- nautobot/virtualization/api/serializers.py +4 -4
- nautobot/virtualization/api/views.py +5 -24
- nautobot/virtualization/filters.py +20 -3
- nautobot/virtualization/models.py +1 -1
- nautobot/virtualization/tables.py +2 -2
- nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
- nautobot/virtualization/templates/virtualization/virtualmachine.html +1 -9
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
- nautobot/virtualization/tests/test_filters.py +17 -0
- nautobot/wireless/filters.py +2 -2
- nautobot/wireless/forms.py +1 -1
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +1 -9
- nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot/wireless/tests/integration/test_radio_profile.py +42 -0
- nautobot/wireless/tests/test_filters.py +29 -1
- nautobot/wireless/tests/test_views.py +22 -1
- nautobot/wireless/views.py +0 -10
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/METADATA +6 -6
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/RECORD +600 -550
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/WHEEL +1 -1
- nautobot/core/fixtures/user-data.json +0 -59
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/NOTICE +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.49">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -2112,6 +2112,27 @@
|
|
|
2112
2112
|
|
|
2113
2113
|
|
|
2114
2114
|
|
|
2115
|
+
|
|
2116
|
+
|
|
2117
|
+
|
|
2118
|
+
|
|
2119
|
+
|
|
2120
|
+
|
|
2121
|
+
<li class="md-nav__item">
|
|
2122
|
+
<a href="../user-guide/feature-guides/wireless-networks-and-controllers.html" class="md-nav__link">
|
|
2123
|
+
|
|
2124
|
+
|
|
2125
|
+
<span class="md-ellipsis">
|
|
2126
|
+
Wireless Networks and Controllers
|
|
2127
|
+
</span>
|
|
2128
|
+
|
|
2129
|
+
|
|
2130
|
+
</a>
|
|
2131
|
+
</li>
|
|
2132
|
+
|
|
2133
|
+
|
|
2134
|
+
|
|
2135
|
+
|
|
2115
2136
|
</ul>
|
|
2116
2137
|
</nav>
|
|
2117
2138
|
|
|
@@ -5131,6 +5152,27 @@
|
|
|
5131
5152
|
|
|
5132
5153
|
|
|
5133
5154
|
|
|
5155
|
+
<li class="md-nav__item">
|
|
5156
|
+
<a href="../user-guide/platform-functionality/jobs/kubernetes-job-support.html" class="md-nav__link">
|
|
5157
|
+
|
|
5158
|
+
|
|
5159
|
+
<span class="md-ellipsis">
|
|
5160
|
+
Kubernetes Job Support
|
|
5161
|
+
</span>
|
|
5162
|
+
|
|
5163
|
+
|
|
5164
|
+
</a>
|
|
5165
|
+
</li>
|
|
5166
|
+
|
|
5167
|
+
|
|
5168
|
+
|
|
5169
|
+
|
|
5170
|
+
|
|
5171
|
+
|
|
5172
|
+
|
|
5173
|
+
|
|
5174
|
+
|
|
5175
|
+
|
|
5134
5176
|
<li class="md-nav__item">
|
|
5135
5177
|
<a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
5136
5178
|
|
|
@@ -8055,11 +8097,11 @@
|
|
|
8055
8097
|
|
|
8056
8098
|
|
|
8057
8099
|
<li class="md-nav__item">
|
|
8058
|
-
<a href="../development/core/
|
|
8100
|
+
<a href="../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
|
|
8059
8101
|
|
|
8060
8102
|
|
|
8061
8103
|
<span class="md-ellipsis">
|
|
8062
|
-
|
|
8104
|
+
Minikube Dev Environment for K8s Jobs
|
|
8063
8105
|
</span>
|
|
8064
8106
|
|
|
8065
8107
|
|
|
@@ -8656,6 +8698,246 @@
|
|
|
8656
8698
|
</ul>
|
|
8657
8699
|
</nav>
|
|
8658
8700
|
|
|
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
|
+
|
|
8659
8941
|
</li>
|
|
8660
8942
|
|
|
8661
8943
|
<li class="md-nav__item">
|
|
@@ -8669,45 +8951,45 @@
|
|
|
8669
8951
|
<ul class="md-nav__list">
|
|
8670
8952
|
|
|
8671
8953
|
<li class="md-nav__item">
|
|
8672
|
-
<a href="#
|
|
8954
|
+
<a href="#added-in-v2312" class="md-nav__link">
|
|
8673
8955
|
<span class="md-ellipsis">
|
|
8674
|
-
Added
|
|
8956
|
+
Added in v2.3.12
|
|
8675
8957
|
</span>
|
|
8676
8958
|
</a>
|
|
8677
8959
|
|
|
8678
8960
|
</li>
|
|
8679
8961
|
|
|
8680
8962
|
<li class="md-nav__item">
|
|
8681
|
-
<a href="#fixed" class="md-nav__link">
|
|
8963
|
+
<a href="#fixed-in-v2312" class="md-nav__link">
|
|
8682
8964
|
<span class="md-ellipsis">
|
|
8683
|
-
Fixed
|
|
8965
|
+
Fixed in v2.3.12
|
|
8684
8966
|
</span>
|
|
8685
8967
|
</a>
|
|
8686
8968
|
|
|
8687
8969
|
</li>
|
|
8688
8970
|
|
|
8689
8971
|
<li class="md-nav__item">
|
|
8690
|
-
<a href="#
|
|
8972
|
+
<a href="#dependencies-in-v2312" class="md-nav__link">
|
|
8691
8973
|
<span class="md-ellipsis">
|
|
8692
|
-
Dependencies
|
|
8974
|
+
Dependencies in v2.3.12
|
|
8693
8975
|
</span>
|
|
8694
8976
|
</a>
|
|
8695
8977
|
|
|
8696
8978
|
</li>
|
|
8697
8979
|
|
|
8698
8980
|
<li class="md-nav__item">
|
|
8699
|
-
<a href="#documentation" class="md-nav__link">
|
|
8981
|
+
<a href="#documentation-in-v2312" class="md-nav__link">
|
|
8700
8982
|
<span class="md-ellipsis">
|
|
8701
|
-
Documentation
|
|
8983
|
+
Documentation in v2.3.12
|
|
8702
8984
|
</span>
|
|
8703
8985
|
</a>
|
|
8704
8986
|
|
|
8705
8987
|
</li>
|
|
8706
8988
|
|
|
8707
8989
|
<li class="md-nav__item">
|
|
8708
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8990
|
+
<a href="#housekeeping-in-v2312" class="md-nav__link">
|
|
8709
8991
|
<span class="md-ellipsis">
|
|
8710
|
-
Housekeeping
|
|
8992
|
+
Housekeeping in v2.3.12
|
|
8711
8993
|
</span>
|
|
8712
8994
|
</a>
|
|
8713
8995
|
|
|
@@ -8729,45 +9011,45 @@
|
|
|
8729
9011
|
<ul class="md-nav__list">
|
|
8730
9012
|
|
|
8731
9013
|
<li class="md-nav__item">
|
|
8732
|
-
<a href="#
|
|
9014
|
+
<a href="#added-in-v2311" class="md-nav__link">
|
|
8733
9015
|
<span class="md-ellipsis">
|
|
8734
|
-
Added
|
|
9016
|
+
Added in v2.3.11
|
|
8735
9017
|
</span>
|
|
8736
9018
|
</a>
|
|
8737
9019
|
|
|
8738
9020
|
</li>
|
|
8739
9021
|
|
|
8740
9022
|
<li class="md-nav__item">
|
|
8741
|
-
<a href="#
|
|
9023
|
+
<a href="#changed-in-v2311" class="md-nav__link">
|
|
8742
9024
|
<span class="md-ellipsis">
|
|
8743
|
-
Changed
|
|
9025
|
+
Changed in v2.3.11
|
|
8744
9026
|
</span>
|
|
8745
9027
|
</a>
|
|
8746
9028
|
|
|
8747
9029
|
</li>
|
|
8748
9030
|
|
|
8749
9031
|
<li class="md-nav__item">
|
|
8750
|
-
<a href="#
|
|
9032
|
+
<a href="#fixed-in-v2311" class="md-nav__link">
|
|
8751
9033
|
<span class="md-ellipsis">
|
|
8752
|
-
Fixed
|
|
9034
|
+
Fixed in v2.3.11
|
|
8753
9035
|
</span>
|
|
8754
9036
|
</a>
|
|
8755
9037
|
|
|
8756
9038
|
</li>
|
|
8757
9039
|
|
|
8758
9040
|
<li class="md-nav__item">
|
|
8759
|
-
<a href="#
|
|
9041
|
+
<a href="#documentation-in-v2311" class="md-nav__link">
|
|
8760
9042
|
<span class="md-ellipsis">
|
|
8761
|
-
Documentation
|
|
9043
|
+
Documentation in v2.3.11
|
|
8762
9044
|
</span>
|
|
8763
9045
|
</a>
|
|
8764
9046
|
|
|
8765
9047
|
</li>
|
|
8766
9048
|
|
|
8767
9049
|
<li class="md-nav__item">
|
|
8768
|
-
<a href="#
|
|
9050
|
+
<a href="#housekeeping-in-v2311" class="md-nav__link">
|
|
8769
9051
|
<span class="md-ellipsis">
|
|
8770
|
-
Housekeeping
|
|
9052
|
+
Housekeeping in v2.3.11
|
|
8771
9053
|
</span>
|
|
8772
9054
|
</a>
|
|
8773
9055
|
|
|
@@ -8789,45 +9071,45 @@
|
|
|
8789
9071
|
<ul class="md-nav__list">
|
|
8790
9072
|
|
|
8791
9073
|
<li class="md-nav__item">
|
|
8792
|
-
<a href="#
|
|
9074
|
+
<a href="#added-in-v2310" class="md-nav__link">
|
|
8793
9075
|
<span class="md-ellipsis">
|
|
8794
|
-
Added
|
|
9076
|
+
Added in v2.3.10
|
|
8795
9077
|
</span>
|
|
8796
9078
|
</a>
|
|
8797
9079
|
|
|
8798
9080
|
</li>
|
|
8799
9081
|
|
|
8800
9082
|
<li class="md-nav__item">
|
|
8801
|
-
<a href="#
|
|
9083
|
+
<a href="#changed-in-v2310" class="md-nav__link">
|
|
8802
9084
|
<span class="md-ellipsis">
|
|
8803
|
-
Changed
|
|
9085
|
+
Changed in v2.3.10
|
|
8804
9086
|
</span>
|
|
8805
9087
|
</a>
|
|
8806
9088
|
|
|
8807
9089
|
</li>
|
|
8808
9090
|
|
|
8809
9091
|
<li class="md-nav__item">
|
|
8810
|
-
<a href="#
|
|
9092
|
+
<a href="#fixed-in-v2310" class="md-nav__link">
|
|
8811
9093
|
<span class="md-ellipsis">
|
|
8812
|
-
Fixed
|
|
9094
|
+
Fixed in v2.3.10
|
|
8813
9095
|
</span>
|
|
8814
9096
|
</a>
|
|
8815
9097
|
|
|
8816
9098
|
</li>
|
|
8817
9099
|
|
|
8818
9100
|
<li class="md-nav__item">
|
|
8819
|
-
<a href="#
|
|
9101
|
+
<a href="#dependencies-in-v2310" class="md-nav__link">
|
|
8820
9102
|
<span class="md-ellipsis">
|
|
8821
|
-
Dependencies
|
|
9103
|
+
Dependencies in v2.3.10
|
|
8822
9104
|
</span>
|
|
8823
9105
|
</a>
|
|
8824
9106
|
|
|
8825
9107
|
</li>
|
|
8826
9108
|
|
|
8827
9109
|
<li class="md-nav__item">
|
|
8828
|
-
<a href="#
|
|
9110
|
+
<a href="#housekeeping-in-v2310" class="md-nav__link">
|
|
8829
9111
|
<span class="md-ellipsis">
|
|
8830
|
-
Housekeeping
|
|
9112
|
+
Housekeeping in v2.3.10
|
|
8831
9113
|
</span>
|
|
8832
9114
|
</a>
|
|
8833
9115
|
|
|
@@ -8849,45 +9131,45 @@
|
|
|
8849
9131
|
<ul class="md-nav__list">
|
|
8850
9132
|
|
|
8851
9133
|
<li class="md-nav__item">
|
|
8852
|
-
<a href="#
|
|
9134
|
+
<a href="#added-in-v239" class="md-nav__link">
|
|
8853
9135
|
<span class="md-ellipsis">
|
|
8854
|
-
Added
|
|
9136
|
+
Added in v2.3.9
|
|
8855
9137
|
</span>
|
|
8856
9138
|
</a>
|
|
8857
9139
|
|
|
8858
9140
|
</li>
|
|
8859
9141
|
|
|
8860
9142
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#
|
|
9143
|
+
<a href="#changed-in-v239" class="md-nav__link">
|
|
8862
9144
|
<span class="md-ellipsis">
|
|
8863
|
-
Changed
|
|
9145
|
+
Changed in v2.3.9
|
|
8864
9146
|
</span>
|
|
8865
9147
|
</a>
|
|
8866
9148
|
|
|
8867
9149
|
</li>
|
|
8868
9150
|
|
|
8869
9151
|
<li class="md-nav__item">
|
|
8870
|
-
<a href="#
|
|
9152
|
+
<a href="#fixed-in-v239" class="md-nav__link">
|
|
8871
9153
|
<span class="md-ellipsis">
|
|
8872
|
-
Fixed
|
|
9154
|
+
Fixed in v2.3.9
|
|
8873
9155
|
</span>
|
|
8874
9156
|
</a>
|
|
8875
9157
|
|
|
8876
9158
|
</li>
|
|
8877
9159
|
|
|
8878
9160
|
<li class="md-nav__item">
|
|
8879
|
-
<a href="#
|
|
9161
|
+
<a href="#dependencies-in-v239" class="md-nav__link">
|
|
8880
9162
|
<span class="md-ellipsis">
|
|
8881
|
-
Dependencies
|
|
9163
|
+
Dependencies in v2.3.9
|
|
8882
9164
|
</span>
|
|
8883
9165
|
</a>
|
|
8884
9166
|
|
|
8885
9167
|
</li>
|
|
8886
9168
|
|
|
8887
9169
|
<li class="md-nav__item">
|
|
8888
|
-
<a href="#
|
|
9170
|
+
<a href="#housekeeping-in-v239" class="md-nav__link">
|
|
8889
9171
|
<span class="md-ellipsis">
|
|
8890
|
-
Housekeeping
|
|
9172
|
+
Housekeeping in v2.3.9
|
|
8891
9173
|
</span>
|
|
8892
9174
|
</a>
|
|
8893
9175
|
|
|
@@ -8909,9 +9191,9 @@
|
|
|
8909
9191
|
<ul class="md-nav__list">
|
|
8910
9192
|
|
|
8911
9193
|
<li class="md-nav__item">
|
|
8912
|
-
<a href="#
|
|
9194
|
+
<a href="#fixed-in-v238" class="md-nav__link">
|
|
8913
9195
|
<span class="md-ellipsis">
|
|
8914
|
-
Fixed
|
|
9196
|
+
Fixed in v2.3.8
|
|
8915
9197
|
</span>
|
|
8916
9198
|
</a>
|
|
8917
9199
|
|
|
@@ -8933,45 +9215,45 @@
|
|
|
8933
9215
|
<ul class="md-nav__list">
|
|
8934
9216
|
|
|
8935
9217
|
<li class="md-nav__item">
|
|
8936
|
-
<a href="#
|
|
9218
|
+
<a href="#added-in-v237" class="md-nav__link">
|
|
8937
9219
|
<span class="md-ellipsis">
|
|
8938
|
-
Added
|
|
9220
|
+
Added in v2.3.7
|
|
8939
9221
|
</span>
|
|
8940
9222
|
</a>
|
|
8941
9223
|
|
|
8942
9224
|
</li>
|
|
8943
9225
|
|
|
8944
9226
|
<li class="md-nav__item">
|
|
8945
|
-
<a href="#
|
|
9227
|
+
<a href="#changed-in-v237" class="md-nav__link">
|
|
8946
9228
|
<span class="md-ellipsis">
|
|
8947
|
-
Changed
|
|
9229
|
+
Changed in v2.3.7
|
|
8948
9230
|
</span>
|
|
8949
9231
|
</a>
|
|
8950
9232
|
|
|
8951
9233
|
</li>
|
|
8952
9234
|
|
|
8953
9235
|
<li class="md-nav__item">
|
|
8954
|
-
<a href="#
|
|
9236
|
+
<a href="#fixed-in-v237" class="md-nav__link">
|
|
8955
9237
|
<span class="md-ellipsis">
|
|
8956
|
-
Fixed
|
|
9238
|
+
Fixed in v2.3.7
|
|
8957
9239
|
</span>
|
|
8958
9240
|
</a>
|
|
8959
9241
|
|
|
8960
9242
|
</li>
|
|
8961
9243
|
|
|
8962
9244
|
<li class="md-nav__item">
|
|
8963
|
-
<a href="#
|
|
9245
|
+
<a href="#dependencies-in-v237" class="md-nav__link">
|
|
8964
9246
|
<span class="md-ellipsis">
|
|
8965
|
-
Dependencies
|
|
9247
|
+
Dependencies in v2.3.7
|
|
8966
9248
|
</span>
|
|
8967
9249
|
</a>
|
|
8968
9250
|
|
|
8969
9251
|
</li>
|
|
8970
9252
|
|
|
8971
9253
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
9254
|
+
<a href="#housekeeping-in-v237" class="md-nav__link">
|
|
8973
9255
|
<span class="md-ellipsis">
|
|
8974
|
-
Housekeeping
|
|
9256
|
+
Housekeeping in v2.3.7
|
|
8975
9257
|
</span>
|
|
8976
9258
|
</a>
|
|
8977
9259
|
|
|
@@ -8993,36 +9275,36 @@
|
|
|
8993
9275
|
<ul class="md-nav__list">
|
|
8994
9276
|
|
|
8995
9277
|
<li class="md-nav__item">
|
|
8996
|
-
<a href="#
|
|
9278
|
+
<a href="#added-in-v236" class="md-nav__link">
|
|
8997
9279
|
<span class="md-ellipsis">
|
|
8998
|
-
Added
|
|
9280
|
+
Added in v2.3.6
|
|
8999
9281
|
</span>
|
|
9000
9282
|
</a>
|
|
9001
9283
|
|
|
9002
9284
|
</li>
|
|
9003
9285
|
|
|
9004
9286
|
<li class="md-nav__item">
|
|
9005
|
-
<a href="#
|
|
9287
|
+
<a href="#fixed-in-v236" class="md-nav__link">
|
|
9006
9288
|
<span class="md-ellipsis">
|
|
9007
|
-
Fixed
|
|
9289
|
+
Fixed in v2.3.6
|
|
9008
9290
|
</span>
|
|
9009
9291
|
</a>
|
|
9010
9292
|
|
|
9011
9293
|
</li>
|
|
9012
9294
|
|
|
9013
9295
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
9296
|
+
<a href="#documentation-in-v236" class="md-nav__link">
|
|
9015
9297
|
<span class="md-ellipsis">
|
|
9016
|
-
Documentation
|
|
9298
|
+
Documentation in v2.3.6
|
|
9017
9299
|
</span>
|
|
9018
9300
|
</a>
|
|
9019
9301
|
|
|
9020
9302
|
</li>
|
|
9021
9303
|
|
|
9022
9304
|
<li class="md-nav__item">
|
|
9023
|
-
<a href="#
|
|
9305
|
+
<a href="#housekeeping-in-v236" class="md-nav__link">
|
|
9024
9306
|
<span class="md-ellipsis">
|
|
9025
|
-
Housekeeping
|
|
9307
|
+
Housekeeping in v2.3.6
|
|
9026
9308
|
</span>
|
|
9027
9309
|
</a>
|
|
9028
9310
|
|
|
@@ -9044,54 +9326,54 @@
|
|
|
9044
9326
|
<ul class="md-nav__list">
|
|
9045
9327
|
|
|
9046
9328
|
<li class="md-nav__item">
|
|
9047
|
-
<a href="#
|
|
9329
|
+
<a href="#added-in-v235" class="md-nav__link">
|
|
9048
9330
|
<span class="md-ellipsis">
|
|
9049
|
-
Added
|
|
9331
|
+
Added in v2.3.5
|
|
9050
9332
|
</span>
|
|
9051
9333
|
</a>
|
|
9052
9334
|
|
|
9053
9335
|
</li>
|
|
9054
9336
|
|
|
9055
9337
|
<li class="md-nav__item">
|
|
9056
|
-
<a href="#
|
|
9338
|
+
<a href="#changed-in-v235" class="md-nav__link">
|
|
9057
9339
|
<span class="md-ellipsis">
|
|
9058
|
-
Changed
|
|
9340
|
+
Changed in v2.3.5
|
|
9059
9341
|
</span>
|
|
9060
9342
|
</a>
|
|
9061
9343
|
|
|
9062
9344
|
</li>
|
|
9063
9345
|
|
|
9064
9346
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9347
|
+
<a href="#fixed-in-v235" class="md-nav__link">
|
|
9066
9348
|
<span class="md-ellipsis">
|
|
9067
|
-
Fixed
|
|
9349
|
+
Fixed in v2.3.5
|
|
9068
9350
|
</span>
|
|
9069
9351
|
</a>
|
|
9070
9352
|
|
|
9071
9353
|
</li>
|
|
9072
9354
|
|
|
9073
9355
|
<li class="md-nav__item">
|
|
9074
|
-
<a href="#
|
|
9356
|
+
<a href="#dependencies-in-v235" class="md-nav__link">
|
|
9075
9357
|
<span class="md-ellipsis">
|
|
9076
|
-
Dependencies
|
|
9358
|
+
Dependencies in v2.3.5
|
|
9077
9359
|
</span>
|
|
9078
9360
|
</a>
|
|
9079
9361
|
|
|
9080
9362
|
</li>
|
|
9081
9363
|
|
|
9082
9364
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9365
|
+
<a href="#documentation-in-v235" class="md-nav__link">
|
|
9084
9366
|
<span class="md-ellipsis">
|
|
9085
|
-
Documentation
|
|
9367
|
+
Documentation in v2.3.5
|
|
9086
9368
|
</span>
|
|
9087
9369
|
</a>
|
|
9088
9370
|
|
|
9089
9371
|
</li>
|
|
9090
9372
|
|
|
9091
9373
|
<li class="md-nav__item">
|
|
9092
|
-
<a href="#
|
|
9374
|
+
<a href="#housekeeping-in-v235" class="md-nav__link">
|
|
9093
9375
|
<span class="md-ellipsis">
|
|
9094
|
-
Housekeeping
|
|
9376
|
+
Housekeeping in v2.3.5
|
|
9095
9377
|
</span>
|
|
9096
9378
|
</a>
|
|
9097
9379
|
|
|
@@ -9113,45 +9395,45 @@
|
|
|
9113
9395
|
<ul class="md-nav__list">
|
|
9114
9396
|
|
|
9115
9397
|
<li class="md-nav__item">
|
|
9116
|
-
<a href="#
|
|
9398
|
+
<a href="#added-in-v234" class="md-nav__link">
|
|
9117
9399
|
<span class="md-ellipsis">
|
|
9118
|
-
Added
|
|
9400
|
+
Added in v2.3.4
|
|
9119
9401
|
</span>
|
|
9120
9402
|
</a>
|
|
9121
9403
|
|
|
9122
9404
|
</li>
|
|
9123
9405
|
|
|
9124
9406
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9407
|
+
<a href="#changed-in-v234" class="md-nav__link">
|
|
9126
9408
|
<span class="md-ellipsis">
|
|
9127
|
-
Changed
|
|
9409
|
+
Changed in v2.3.4
|
|
9128
9410
|
</span>
|
|
9129
9411
|
</a>
|
|
9130
9412
|
|
|
9131
9413
|
</li>
|
|
9132
9414
|
|
|
9133
9415
|
<li class="md-nav__item">
|
|
9134
|
-
<a href="#
|
|
9416
|
+
<a href="#fixed-in-v234" class="md-nav__link">
|
|
9135
9417
|
<span class="md-ellipsis">
|
|
9136
|
-
Fixed
|
|
9418
|
+
Fixed in v2.3.4
|
|
9137
9419
|
</span>
|
|
9138
9420
|
</a>
|
|
9139
9421
|
|
|
9140
9422
|
</li>
|
|
9141
9423
|
|
|
9142
9424
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
9425
|
+
<a href="#documentation-in-v234" class="md-nav__link">
|
|
9144
9426
|
<span class="md-ellipsis">
|
|
9145
|
-
Documentation
|
|
9427
|
+
Documentation in v2.3.4
|
|
9146
9428
|
</span>
|
|
9147
9429
|
</a>
|
|
9148
9430
|
|
|
9149
9431
|
</li>
|
|
9150
9432
|
|
|
9151
9433
|
<li class="md-nav__item">
|
|
9152
|
-
<a href="#
|
|
9434
|
+
<a href="#housekeeping-in-v234" class="md-nav__link">
|
|
9153
9435
|
<span class="md-ellipsis">
|
|
9154
|
-
Housekeeping
|
|
9436
|
+
Housekeeping in v2.3.4
|
|
9155
9437
|
</span>
|
|
9156
9438
|
</a>
|
|
9157
9439
|
|
|
@@ -9173,36 +9455,36 @@
|
|
|
9173
9455
|
<ul class="md-nav__list">
|
|
9174
9456
|
|
|
9175
9457
|
<li class="md-nav__item">
|
|
9176
|
-
<a href="#security" class="md-nav__link">
|
|
9458
|
+
<a href="#security-in-v233" class="md-nav__link">
|
|
9177
9459
|
<span class="md-ellipsis">
|
|
9178
|
-
Security
|
|
9460
|
+
Security in v2.3.3
|
|
9179
9461
|
</span>
|
|
9180
9462
|
</a>
|
|
9181
9463
|
|
|
9182
9464
|
</li>
|
|
9183
9465
|
|
|
9184
9466
|
<li class="md-nav__item">
|
|
9185
|
-
<a href="#
|
|
9467
|
+
<a href="#fixed-in-v233" class="md-nav__link">
|
|
9186
9468
|
<span class="md-ellipsis">
|
|
9187
|
-
Fixed
|
|
9469
|
+
Fixed in v2.3.3
|
|
9188
9470
|
</span>
|
|
9189
9471
|
</a>
|
|
9190
9472
|
|
|
9191
9473
|
</li>
|
|
9192
9474
|
|
|
9193
9475
|
<li class="md-nav__item">
|
|
9194
|
-
<a href="#
|
|
9476
|
+
<a href="#dependencies-in-v233" class="md-nav__link">
|
|
9195
9477
|
<span class="md-ellipsis">
|
|
9196
|
-
Dependencies
|
|
9478
|
+
Dependencies in v2.3.3
|
|
9197
9479
|
</span>
|
|
9198
9480
|
</a>
|
|
9199
9481
|
|
|
9200
9482
|
</li>
|
|
9201
9483
|
|
|
9202
9484
|
<li class="md-nav__item">
|
|
9203
|
-
<a href="#
|
|
9485
|
+
<a href="#housekeeping-in-v233" class="md-nav__link">
|
|
9204
9486
|
<span class="md-ellipsis">
|
|
9205
|
-
Housekeeping
|
|
9487
|
+
Housekeeping in v2.3.3
|
|
9206
9488
|
</span>
|
|
9207
9489
|
</a>
|
|
9208
9490
|
|
|
@@ -9224,36 +9506,36 @@
|
|
|
9224
9506
|
<ul class="md-nav__list">
|
|
9225
9507
|
|
|
9226
9508
|
<li class="md-nav__item">
|
|
9227
|
-
<a href="#
|
|
9509
|
+
<a href="#security-in-v232" class="md-nav__link">
|
|
9228
9510
|
<span class="md-ellipsis">
|
|
9229
|
-
Security
|
|
9511
|
+
Security in v2.3.2
|
|
9230
9512
|
</span>
|
|
9231
9513
|
</a>
|
|
9232
9514
|
|
|
9233
9515
|
</li>
|
|
9234
9516
|
|
|
9235
9517
|
<li class="md-nav__item">
|
|
9236
|
-
<a href="#
|
|
9518
|
+
<a href="#added-in-v232" class="md-nav__link">
|
|
9237
9519
|
<span class="md-ellipsis">
|
|
9238
|
-
Added
|
|
9520
|
+
Added in v2.3.2
|
|
9239
9521
|
</span>
|
|
9240
9522
|
</a>
|
|
9241
9523
|
|
|
9242
9524
|
</li>
|
|
9243
9525
|
|
|
9244
9526
|
<li class="md-nav__item">
|
|
9245
|
-
<a href="#
|
|
9527
|
+
<a href="#fixed-in-v232" class="md-nav__link">
|
|
9246
9528
|
<span class="md-ellipsis">
|
|
9247
|
-
Fixed
|
|
9529
|
+
Fixed in v2.3.2
|
|
9248
9530
|
</span>
|
|
9249
9531
|
</a>
|
|
9250
9532
|
|
|
9251
9533
|
</li>
|
|
9252
9534
|
|
|
9253
9535
|
<li class="md-nav__item">
|
|
9254
|
-
<a href="#
|
|
9536
|
+
<a href="#housekeeping-in-v232" class="md-nav__link">
|
|
9255
9537
|
<span class="md-ellipsis">
|
|
9256
|
-
Housekeeping
|
|
9538
|
+
Housekeeping in v2.3.2
|
|
9257
9539
|
</span>
|
|
9258
9540
|
</a>
|
|
9259
9541
|
|
|
@@ -9275,36 +9557,36 @@
|
|
|
9275
9557
|
<ul class="md-nav__list">
|
|
9276
9558
|
|
|
9277
9559
|
<li class="md-nav__item">
|
|
9278
|
-
<a href="#
|
|
9560
|
+
<a href="#added-in-v231" class="md-nav__link">
|
|
9279
9561
|
<span class="md-ellipsis">
|
|
9280
|
-
Added
|
|
9562
|
+
Added in v2.3.1
|
|
9281
9563
|
</span>
|
|
9282
9564
|
</a>
|
|
9283
9565
|
|
|
9284
9566
|
</li>
|
|
9285
9567
|
|
|
9286
9568
|
<li class="md-nav__item">
|
|
9287
|
-
<a href="#
|
|
9569
|
+
<a href="#changed-in-v231" class="md-nav__link">
|
|
9288
9570
|
<span class="md-ellipsis">
|
|
9289
|
-
Changed
|
|
9571
|
+
Changed in v2.3.1
|
|
9290
9572
|
</span>
|
|
9291
9573
|
</a>
|
|
9292
9574
|
|
|
9293
9575
|
</li>
|
|
9294
9576
|
|
|
9295
9577
|
<li class="md-nav__item">
|
|
9296
|
-
<a href="#
|
|
9578
|
+
<a href="#fixed-in-v231" class="md-nav__link">
|
|
9297
9579
|
<span class="md-ellipsis">
|
|
9298
|
-
Fixed
|
|
9580
|
+
Fixed in v2.3.1
|
|
9299
9581
|
</span>
|
|
9300
9582
|
</a>
|
|
9301
9583
|
|
|
9302
9584
|
</li>
|
|
9303
9585
|
|
|
9304
9586
|
<li class="md-nav__item">
|
|
9305
|
-
<a href="#
|
|
9587
|
+
<a href="#housekeeping-in-v231" class="md-nav__link">
|
|
9306
9588
|
<span class="md-ellipsis">
|
|
9307
|
-
Housekeeping
|
|
9589
|
+
Housekeeping in v2.3.1
|
|
9308
9590
|
</span>
|
|
9309
9591
|
</a>
|
|
9310
9592
|
|
|
@@ -9326,63 +9608,63 @@
|
|
|
9326
9608
|
<ul class="md-nav__list">
|
|
9327
9609
|
|
|
9328
9610
|
<li class="md-nav__item">
|
|
9329
|
-
<a href="#
|
|
9611
|
+
<a href="#security-in-v230" class="md-nav__link">
|
|
9330
9612
|
<span class="md-ellipsis">
|
|
9331
|
-
Security
|
|
9613
|
+
Security in v2.3.0
|
|
9332
9614
|
</span>
|
|
9333
9615
|
</a>
|
|
9334
9616
|
|
|
9335
9617
|
</li>
|
|
9336
9618
|
|
|
9337
9619
|
<li class="md-nav__item">
|
|
9338
|
-
<a href="#
|
|
9620
|
+
<a href="#added-in-v230" class="md-nav__link">
|
|
9339
9621
|
<span class="md-ellipsis">
|
|
9340
|
-
Added
|
|
9622
|
+
Added in v2.3.0
|
|
9341
9623
|
</span>
|
|
9342
9624
|
</a>
|
|
9343
9625
|
|
|
9344
9626
|
</li>
|
|
9345
9627
|
|
|
9346
9628
|
<li class="md-nav__item">
|
|
9347
|
-
<a href="#
|
|
9629
|
+
<a href="#changed-in-v230" class="md-nav__link">
|
|
9348
9630
|
<span class="md-ellipsis">
|
|
9349
|
-
Changed
|
|
9631
|
+
Changed in v2.3.0
|
|
9350
9632
|
</span>
|
|
9351
9633
|
</a>
|
|
9352
9634
|
|
|
9353
9635
|
</li>
|
|
9354
9636
|
|
|
9355
9637
|
<li class="md-nav__item">
|
|
9356
|
-
<a href="#removed" class="md-nav__link">
|
|
9638
|
+
<a href="#removed-in-v230" class="md-nav__link">
|
|
9357
9639
|
<span class="md-ellipsis">
|
|
9358
|
-
Removed
|
|
9640
|
+
Removed in v2.3.0
|
|
9359
9641
|
</span>
|
|
9360
9642
|
</a>
|
|
9361
9643
|
|
|
9362
9644
|
</li>
|
|
9363
9645
|
|
|
9364
9646
|
<li class="md-nav__item">
|
|
9365
|
-
<a href="#
|
|
9647
|
+
<a href="#fixed-in-v230" class="md-nav__link">
|
|
9366
9648
|
<span class="md-ellipsis">
|
|
9367
|
-
Fixed
|
|
9649
|
+
Fixed in v2.3.0
|
|
9368
9650
|
</span>
|
|
9369
9651
|
</a>
|
|
9370
9652
|
|
|
9371
9653
|
</li>
|
|
9372
9654
|
|
|
9373
9655
|
<li class="md-nav__item">
|
|
9374
|
-
<a href="#
|
|
9656
|
+
<a href="#documentation-in-v230" class="md-nav__link">
|
|
9375
9657
|
<span class="md-ellipsis">
|
|
9376
|
-
Documentation
|
|
9658
|
+
Documentation in v2.3.0
|
|
9377
9659
|
</span>
|
|
9378
9660
|
</a>
|
|
9379
9661
|
|
|
9380
9662
|
</li>
|
|
9381
9663
|
|
|
9382
9664
|
<li class="md-nav__item">
|
|
9383
|
-
<a href="#
|
|
9665
|
+
<a href="#housekeeping-in-v230" class="md-nav__link">
|
|
9384
9666
|
<span class="md-ellipsis">
|
|
9385
|
-
Housekeeping
|
|
9667
|
+
Housekeeping in v2.3.0
|
|
9386
9668
|
</span>
|
|
9387
9669
|
</a>
|
|
9388
9670
|
|
|
@@ -9404,81 +9686,81 @@
|
|
|
9404
9686
|
<ul class="md-nav__list">
|
|
9405
9687
|
|
|
9406
9688
|
<li class="md-nav__item">
|
|
9407
|
-
<a href="#
|
|
9689
|
+
<a href="#security-in-v230-beta1" class="md-nav__link">
|
|
9408
9690
|
<span class="md-ellipsis">
|
|
9409
|
-
Security
|
|
9691
|
+
Security in v2.3.0-beta.1
|
|
9410
9692
|
</span>
|
|
9411
9693
|
</a>
|
|
9412
9694
|
|
|
9413
9695
|
</li>
|
|
9414
9696
|
|
|
9415
9697
|
<li class="md-nav__item">
|
|
9416
|
-
<a href="#
|
|
9698
|
+
<a href="#added-in-v230-beta1" class="md-nav__link">
|
|
9417
9699
|
<span class="md-ellipsis">
|
|
9418
|
-
Added
|
|
9700
|
+
Added in v2.3.0-beta.1
|
|
9419
9701
|
</span>
|
|
9420
9702
|
</a>
|
|
9421
9703
|
|
|
9422
9704
|
</li>
|
|
9423
9705
|
|
|
9424
9706
|
<li class="md-nav__item">
|
|
9425
|
-
<a href="#
|
|
9707
|
+
<a href="#changed-in-v230-beta1" class="md-nav__link">
|
|
9426
9708
|
<span class="md-ellipsis">
|
|
9427
|
-
Changed
|
|
9709
|
+
Changed in v2.3.0-beta.1
|
|
9428
9710
|
</span>
|
|
9429
9711
|
</a>
|
|
9430
9712
|
|
|
9431
9713
|
</li>
|
|
9432
9714
|
|
|
9433
9715
|
<li class="md-nav__item">
|
|
9434
|
-
<a href="#deprecated" class="md-nav__link">
|
|
9716
|
+
<a href="#deprecated-in-v230-beta1" class="md-nav__link">
|
|
9435
9717
|
<span class="md-ellipsis">
|
|
9436
|
-
Deprecated
|
|
9718
|
+
Deprecated in v2.3.0-beta.1
|
|
9437
9719
|
</span>
|
|
9438
9720
|
</a>
|
|
9439
9721
|
|
|
9440
9722
|
</li>
|
|
9441
9723
|
|
|
9442
9724
|
<li class="md-nav__item">
|
|
9443
|
-
<a href="#
|
|
9725
|
+
<a href="#removed-in-v230-beta1" class="md-nav__link">
|
|
9444
9726
|
<span class="md-ellipsis">
|
|
9445
|
-
Removed
|
|
9727
|
+
Removed in v2.3.0-beta.1
|
|
9446
9728
|
</span>
|
|
9447
9729
|
</a>
|
|
9448
9730
|
|
|
9449
9731
|
</li>
|
|
9450
9732
|
|
|
9451
9733
|
<li class="md-nav__item">
|
|
9452
|
-
<a href="#
|
|
9734
|
+
<a href="#fixed-in-v230-beta1" class="md-nav__link">
|
|
9453
9735
|
<span class="md-ellipsis">
|
|
9454
|
-
Fixed
|
|
9736
|
+
Fixed in v2.3.0-beta.1
|
|
9455
9737
|
</span>
|
|
9456
9738
|
</a>
|
|
9457
9739
|
|
|
9458
9740
|
</li>
|
|
9459
9741
|
|
|
9460
9742
|
<li class="md-nav__item">
|
|
9461
|
-
<a href="#
|
|
9743
|
+
<a href="#dependencies-in-v230-beta1" class="md-nav__link">
|
|
9462
9744
|
<span class="md-ellipsis">
|
|
9463
|
-
Dependencies
|
|
9745
|
+
Dependencies in v2.3.0-beta.1
|
|
9464
9746
|
</span>
|
|
9465
9747
|
</a>
|
|
9466
9748
|
|
|
9467
9749
|
</li>
|
|
9468
9750
|
|
|
9469
9751
|
<li class="md-nav__item">
|
|
9470
|
-
<a href="#
|
|
9752
|
+
<a href="#documentation-in-v230-beta1" class="md-nav__link">
|
|
9471
9753
|
<span class="md-ellipsis">
|
|
9472
|
-
Documentation
|
|
9754
|
+
Documentation in v2.3.0-beta.1
|
|
9473
9755
|
</span>
|
|
9474
9756
|
</a>
|
|
9475
9757
|
|
|
9476
9758
|
</li>
|
|
9477
9759
|
|
|
9478
9760
|
<li class="md-nav__item">
|
|
9479
|
-
<a href="#
|
|
9761
|
+
<a href="#housekeeping-in-v230-beta1" class="md-nav__link">
|
|
9480
9762
|
<span class="md-ellipsis">
|
|
9481
|
-
Housekeeping
|
|
9763
|
+
Housekeeping in v2.3.0-beta.1
|
|
9482
9764
|
</span>
|
|
9483
9765
|
</a>
|
|
9484
9766
|
|
|
@@ -10287,6 +10569,246 @@
|
|
|
10287
10569
|
</ul>
|
|
10288
10570
|
</nav>
|
|
10289
10571
|
|
|
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
|
+
|
|
10290
10812
|
</li>
|
|
10291
10813
|
|
|
10292
10814
|
<li class="md-nav__item">
|
|
@@ -10300,45 +10822,45 @@
|
|
|
10300
10822
|
<ul class="md-nav__list">
|
|
10301
10823
|
|
|
10302
10824
|
<li class="md-nav__item">
|
|
10303
|
-
<a href="#
|
|
10825
|
+
<a href="#added-in-v2312" class="md-nav__link">
|
|
10304
10826
|
<span class="md-ellipsis">
|
|
10305
|
-
Added
|
|
10827
|
+
Added in v2.3.12
|
|
10306
10828
|
</span>
|
|
10307
10829
|
</a>
|
|
10308
10830
|
|
|
10309
10831
|
</li>
|
|
10310
10832
|
|
|
10311
10833
|
<li class="md-nav__item">
|
|
10312
|
-
<a href="#fixed" class="md-nav__link">
|
|
10834
|
+
<a href="#fixed-in-v2312" class="md-nav__link">
|
|
10313
10835
|
<span class="md-ellipsis">
|
|
10314
|
-
Fixed
|
|
10836
|
+
Fixed in v2.3.12
|
|
10315
10837
|
</span>
|
|
10316
10838
|
</a>
|
|
10317
10839
|
|
|
10318
10840
|
</li>
|
|
10319
10841
|
|
|
10320
10842
|
<li class="md-nav__item">
|
|
10321
|
-
<a href="#
|
|
10843
|
+
<a href="#dependencies-in-v2312" class="md-nav__link">
|
|
10322
10844
|
<span class="md-ellipsis">
|
|
10323
|
-
Dependencies
|
|
10845
|
+
Dependencies in v2.3.12
|
|
10324
10846
|
</span>
|
|
10325
10847
|
</a>
|
|
10326
10848
|
|
|
10327
10849
|
</li>
|
|
10328
10850
|
|
|
10329
10851
|
<li class="md-nav__item">
|
|
10330
|
-
<a href="#documentation" class="md-nav__link">
|
|
10852
|
+
<a href="#documentation-in-v2312" class="md-nav__link">
|
|
10331
10853
|
<span class="md-ellipsis">
|
|
10332
|
-
Documentation
|
|
10854
|
+
Documentation in v2.3.12
|
|
10333
10855
|
</span>
|
|
10334
10856
|
</a>
|
|
10335
10857
|
|
|
10336
10858
|
</li>
|
|
10337
10859
|
|
|
10338
10860
|
<li class="md-nav__item">
|
|
10339
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10861
|
+
<a href="#housekeeping-in-v2312" class="md-nav__link">
|
|
10340
10862
|
<span class="md-ellipsis">
|
|
10341
|
-
Housekeeping
|
|
10863
|
+
Housekeeping in v2.3.12
|
|
10342
10864
|
</span>
|
|
10343
10865
|
</a>
|
|
10344
10866
|
|
|
@@ -10360,45 +10882,45 @@
|
|
|
10360
10882
|
<ul class="md-nav__list">
|
|
10361
10883
|
|
|
10362
10884
|
<li class="md-nav__item">
|
|
10363
|
-
<a href="#
|
|
10885
|
+
<a href="#added-in-v2311" class="md-nav__link">
|
|
10364
10886
|
<span class="md-ellipsis">
|
|
10365
|
-
Added
|
|
10887
|
+
Added in v2.3.11
|
|
10366
10888
|
</span>
|
|
10367
10889
|
</a>
|
|
10368
10890
|
|
|
10369
10891
|
</li>
|
|
10370
10892
|
|
|
10371
10893
|
<li class="md-nav__item">
|
|
10372
|
-
<a href="#
|
|
10894
|
+
<a href="#changed-in-v2311" class="md-nav__link">
|
|
10373
10895
|
<span class="md-ellipsis">
|
|
10374
|
-
Changed
|
|
10896
|
+
Changed in v2.3.11
|
|
10375
10897
|
</span>
|
|
10376
10898
|
</a>
|
|
10377
10899
|
|
|
10378
10900
|
</li>
|
|
10379
10901
|
|
|
10380
10902
|
<li class="md-nav__item">
|
|
10381
|
-
<a href="#
|
|
10903
|
+
<a href="#fixed-in-v2311" class="md-nav__link">
|
|
10382
10904
|
<span class="md-ellipsis">
|
|
10383
|
-
Fixed
|
|
10905
|
+
Fixed in v2.3.11
|
|
10384
10906
|
</span>
|
|
10385
10907
|
</a>
|
|
10386
10908
|
|
|
10387
10909
|
</li>
|
|
10388
10910
|
|
|
10389
10911
|
<li class="md-nav__item">
|
|
10390
|
-
<a href="#
|
|
10912
|
+
<a href="#documentation-in-v2311" class="md-nav__link">
|
|
10391
10913
|
<span class="md-ellipsis">
|
|
10392
|
-
Documentation
|
|
10914
|
+
Documentation in v2.3.11
|
|
10393
10915
|
</span>
|
|
10394
10916
|
</a>
|
|
10395
10917
|
|
|
10396
10918
|
</li>
|
|
10397
10919
|
|
|
10398
10920
|
<li class="md-nav__item">
|
|
10399
|
-
<a href="#
|
|
10921
|
+
<a href="#housekeeping-in-v2311" class="md-nav__link">
|
|
10400
10922
|
<span class="md-ellipsis">
|
|
10401
|
-
Housekeeping
|
|
10923
|
+
Housekeeping in v2.3.11
|
|
10402
10924
|
</span>
|
|
10403
10925
|
</a>
|
|
10404
10926
|
|
|
@@ -10420,45 +10942,45 @@
|
|
|
10420
10942
|
<ul class="md-nav__list">
|
|
10421
10943
|
|
|
10422
10944
|
<li class="md-nav__item">
|
|
10423
|
-
<a href="#
|
|
10945
|
+
<a href="#added-in-v2310" class="md-nav__link">
|
|
10424
10946
|
<span class="md-ellipsis">
|
|
10425
|
-
Added
|
|
10947
|
+
Added in v2.3.10
|
|
10426
10948
|
</span>
|
|
10427
10949
|
</a>
|
|
10428
10950
|
|
|
10429
10951
|
</li>
|
|
10430
10952
|
|
|
10431
10953
|
<li class="md-nav__item">
|
|
10432
|
-
<a href="#
|
|
10954
|
+
<a href="#changed-in-v2310" class="md-nav__link">
|
|
10433
10955
|
<span class="md-ellipsis">
|
|
10434
|
-
Changed
|
|
10956
|
+
Changed in v2.3.10
|
|
10435
10957
|
</span>
|
|
10436
10958
|
</a>
|
|
10437
10959
|
|
|
10438
10960
|
</li>
|
|
10439
10961
|
|
|
10440
10962
|
<li class="md-nav__item">
|
|
10441
|
-
<a href="#
|
|
10963
|
+
<a href="#fixed-in-v2310" class="md-nav__link">
|
|
10442
10964
|
<span class="md-ellipsis">
|
|
10443
|
-
Fixed
|
|
10965
|
+
Fixed in v2.3.10
|
|
10444
10966
|
</span>
|
|
10445
10967
|
</a>
|
|
10446
10968
|
|
|
10447
10969
|
</li>
|
|
10448
10970
|
|
|
10449
10971
|
<li class="md-nav__item">
|
|
10450
|
-
<a href="#
|
|
10972
|
+
<a href="#dependencies-in-v2310" class="md-nav__link">
|
|
10451
10973
|
<span class="md-ellipsis">
|
|
10452
|
-
Dependencies
|
|
10974
|
+
Dependencies in v2.3.10
|
|
10453
10975
|
</span>
|
|
10454
10976
|
</a>
|
|
10455
10977
|
|
|
10456
10978
|
</li>
|
|
10457
10979
|
|
|
10458
10980
|
<li class="md-nav__item">
|
|
10459
|
-
<a href="#
|
|
10981
|
+
<a href="#housekeeping-in-v2310" class="md-nav__link">
|
|
10460
10982
|
<span class="md-ellipsis">
|
|
10461
|
-
Housekeeping
|
|
10983
|
+
Housekeeping in v2.3.10
|
|
10462
10984
|
</span>
|
|
10463
10985
|
</a>
|
|
10464
10986
|
|
|
@@ -10480,45 +11002,45 @@
|
|
|
10480
11002
|
<ul class="md-nav__list">
|
|
10481
11003
|
|
|
10482
11004
|
<li class="md-nav__item">
|
|
10483
|
-
<a href="#
|
|
11005
|
+
<a href="#added-in-v239" class="md-nav__link">
|
|
10484
11006
|
<span class="md-ellipsis">
|
|
10485
|
-
Added
|
|
11007
|
+
Added in v2.3.9
|
|
10486
11008
|
</span>
|
|
10487
11009
|
</a>
|
|
10488
11010
|
|
|
10489
11011
|
</li>
|
|
10490
11012
|
|
|
10491
11013
|
<li class="md-nav__item">
|
|
10492
|
-
<a href="#
|
|
11014
|
+
<a href="#changed-in-v239" class="md-nav__link">
|
|
10493
11015
|
<span class="md-ellipsis">
|
|
10494
|
-
Changed
|
|
11016
|
+
Changed in v2.3.9
|
|
10495
11017
|
</span>
|
|
10496
11018
|
</a>
|
|
10497
11019
|
|
|
10498
11020
|
</li>
|
|
10499
11021
|
|
|
10500
11022
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
11023
|
+
<a href="#fixed-in-v239" class="md-nav__link">
|
|
10502
11024
|
<span class="md-ellipsis">
|
|
10503
|
-
Fixed
|
|
11025
|
+
Fixed in v2.3.9
|
|
10504
11026
|
</span>
|
|
10505
11027
|
</a>
|
|
10506
11028
|
|
|
10507
11029
|
</li>
|
|
10508
11030
|
|
|
10509
11031
|
<li class="md-nav__item">
|
|
10510
|
-
<a href="#
|
|
11032
|
+
<a href="#dependencies-in-v239" class="md-nav__link">
|
|
10511
11033
|
<span class="md-ellipsis">
|
|
10512
|
-
Dependencies
|
|
11034
|
+
Dependencies in v2.3.9
|
|
10513
11035
|
</span>
|
|
10514
11036
|
</a>
|
|
10515
11037
|
|
|
10516
11038
|
</li>
|
|
10517
11039
|
|
|
10518
11040
|
<li class="md-nav__item">
|
|
10519
|
-
<a href="#
|
|
11041
|
+
<a href="#housekeeping-in-v239" class="md-nav__link">
|
|
10520
11042
|
<span class="md-ellipsis">
|
|
10521
|
-
Housekeeping
|
|
11043
|
+
Housekeeping in v2.3.9
|
|
10522
11044
|
</span>
|
|
10523
11045
|
</a>
|
|
10524
11046
|
|
|
@@ -10540,9 +11062,9 @@
|
|
|
10540
11062
|
<ul class="md-nav__list">
|
|
10541
11063
|
|
|
10542
11064
|
<li class="md-nav__item">
|
|
10543
|
-
<a href="#
|
|
11065
|
+
<a href="#fixed-in-v238" class="md-nav__link">
|
|
10544
11066
|
<span class="md-ellipsis">
|
|
10545
|
-
Fixed
|
|
11067
|
+
Fixed in v2.3.8
|
|
10546
11068
|
</span>
|
|
10547
11069
|
</a>
|
|
10548
11070
|
|
|
@@ -10564,45 +11086,45 @@
|
|
|
10564
11086
|
<ul class="md-nav__list">
|
|
10565
11087
|
|
|
10566
11088
|
<li class="md-nav__item">
|
|
10567
|
-
<a href="#
|
|
11089
|
+
<a href="#added-in-v237" class="md-nav__link">
|
|
10568
11090
|
<span class="md-ellipsis">
|
|
10569
|
-
Added
|
|
11091
|
+
Added in v2.3.7
|
|
10570
11092
|
</span>
|
|
10571
11093
|
</a>
|
|
10572
11094
|
|
|
10573
11095
|
</li>
|
|
10574
11096
|
|
|
10575
11097
|
<li class="md-nav__item">
|
|
10576
|
-
<a href="#
|
|
11098
|
+
<a href="#changed-in-v237" class="md-nav__link">
|
|
10577
11099
|
<span class="md-ellipsis">
|
|
10578
|
-
Changed
|
|
11100
|
+
Changed in v2.3.7
|
|
10579
11101
|
</span>
|
|
10580
11102
|
</a>
|
|
10581
11103
|
|
|
10582
11104
|
</li>
|
|
10583
11105
|
|
|
10584
11106
|
<li class="md-nav__item">
|
|
10585
|
-
<a href="#
|
|
11107
|
+
<a href="#fixed-in-v237" class="md-nav__link">
|
|
10586
11108
|
<span class="md-ellipsis">
|
|
10587
|
-
Fixed
|
|
11109
|
+
Fixed in v2.3.7
|
|
10588
11110
|
</span>
|
|
10589
11111
|
</a>
|
|
10590
11112
|
|
|
10591
11113
|
</li>
|
|
10592
11114
|
|
|
10593
11115
|
<li class="md-nav__item">
|
|
10594
|
-
<a href="#
|
|
11116
|
+
<a href="#dependencies-in-v237" class="md-nav__link">
|
|
10595
11117
|
<span class="md-ellipsis">
|
|
10596
|
-
Dependencies
|
|
11118
|
+
Dependencies in v2.3.7
|
|
10597
11119
|
</span>
|
|
10598
11120
|
</a>
|
|
10599
11121
|
|
|
10600
11122
|
</li>
|
|
10601
11123
|
|
|
10602
11124
|
<li class="md-nav__item">
|
|
10603
|
-
<a href="#
|
|
11125
|
+
<a href="#housekeeping-in-v237" class="md-nav__link">
|
|
10604
11126
|
<span class="md-ellipsis">
|
|
10605
|
-
Housekeeping
|
|
11127
|
+
Housekeeping in v2.3.7
|
|
10606
11128
|
</span>
|
|
10607
11129
|
</a>
|
|
10608
11130
|
|
|
@@ -10624,36 +11146,36 @@
|
|
|
10624
11146
|
<ul class="md-nav__list">
|
|
10625
11147
|
|
|
10626
11148
|
<li class="md-nav__item">
|
|
10627
|
-
<a href="#
|
|
11149
|
+
<a href="#added-in-v236" class="md-nav__link">
|
|
10628
11150
|
<span class="md-ellipsis">
|
|
10629
|
-
Added
|
|
11151
|
+
Added in v2.3.6
|
|
10630
11152
|
</span>
|
|
10631
11153
|
</a>
|
|
10632
11154
|
|
|
10633
11155
|
</li>
|
|
10634
11156
|
|
|
10635
11157
|
<li class="md-nav__item">
|
|
10636
|
-
<a href="#
|
|
11158
|
+
<a href="#fixed-in-v236" class="md-nav__link">
|
|
10637
11159
|
<span class="md-ellipsis">
|
|
10638
|
-
Fixed
|
|
11160
|
+
Fixed in v2.3.6
|
|
10639
11161
|
</span>
|
|
10640
11162
|
</a>
|
|
10641
11163
|
|
|
10642
11164
|
</li>
|
|
10643
11165
|
|
|
10644
11166
|
<li class="md-nav__item">
|
|
10645
|
-
<a href="#
|
|
11167
|
+
<a href="#documentation-in-v236" class="md-nav__link">
|
|
10646
11168
|
<span class="md-ellipsis">
|
|
10647
|
-
Documentation
|
|
11169
|
+
Documentation in v2.3.6
|
|
10648
11170
|
</span>
|
|
10649
11171
|
</a>
|
|
10650
11172
|
|
|
10651
11173
|
</li>
|
|
10652
11174
|
|
|
10653
11175
|
<li class="md-nav__item">
|
|
10654
|
-
<a href="#
|
|
11176
|
+
<a href="#housekeeping-in-v236" class="md-nav__link">
|
|
10655
11177
|
<span class="md-ellipsis">
|
|
10656
|
-
Housekeeping
|
|
11178
|
+
Housekeeping in v2.3.6
|
|
10657
11179
|
</span>
|
|
10658
11180
|
</a>
|
|
10659
11181
|
|
|
@@ -10675,54 +11197,54 @@
|
|
|
10675
11197
|
<ul class="md-nav__list">
|
|
10676
11198
|
|
|
10677
11199
|
<li class="md-nav__item">
|
|
10678
|
-
<a href="#
|
|
11200
|
+
<a href="#added-in-v235" class="md-nav__link">
|
|
10679
11201
|
<span class="md-ellipsis">
|
|
10680
|
-
Added
|
|
11202
|
+
Added in v2.3.5
|
|
10681
11203
|
</span>
|
|
10682
11204
|
</a>
|
|
10683
11205
|
|
|
10684
11206
|
</li>
|
|
10685
11207
|
|
|
10686
11208
|
<li class="md-nav__item">
|
|
10687
|
-
<a href="#
|
|
11209
|
+
<a href="#changed-in-v235" class="md-nav__link">
|
|
10688
11210
|
<span class="md-ellipsis">
|
|
10689
|
-
Changed
|
|
11211
|
+
Changed in v2.3.5
|
|
10690
11212
|
</span>
|
|
10691
11213
|
</a>
|
|
10692
11214
|
|
|
10693
11215
|
</li>
|
|
10694
11216
|
|
|
10695
11217
|
<li class="md-nav__item">
|
|
10696
|
-
<a href="#
|
|
11218
|
+
<a href="#fixed-in-v235" class="md-nav__link">
|
|
10697
11219
|
<span class="md-ellipsis">
|
|
10698
|
-
Fixed
|
|
11220
|
+
Fixed in v2.3.5
|
|
10699
11221
|
</span>
|
|
10700
11222
|
</a>
|
|
10701
11223
|
|
|
10702
11224
|
</li>
|
|
10703
11225
|
|
|
10704
11226
|
<li class="md-nav__item">
|
|
10705
|
-
<a href="#
|
|
11227
|
+
<a href="#dependencies-in-v235" class="md-nav__link">
|
|
10706
11228
|
<span class="md-ellipsis">
|
|
10707
|
-
Dependencies
|
|
11229
|
+
Dependencies in v2.3.5
|
|
10708
11230
|
</span>
|
|
10709
11231
|
</a>
|
|
10710
11232
|
|
|
10711
11233
|
</li>
|
|
10712
11234
|
|
|
10713
11235
|
<li class="md-nav__item">
|
|
10714
|
-
<a href="#
|
|
11236
|
+
<a href="#documentation-in-v235" class="md-nav__link">
|
|
10715
11237
|
<span class="md-ellipsis">
|
|
10716
|
-
Documentation
|
|
11238
|
+
Documentation in v2.3.5
|
|
10717
11239
|
</span>
|
|
10718
11240
|
</a>
|
|
10719
11241
|
|
|
10720
11242
|
</li>
|
|
10721
11243
|
|
|
10722
11244
|
<li class="md-nav__item">
|
|
10723
|
-
<a href="#
|
|
11245
|
+
<a href="#housekeeping-in-v235" class="md-nav__link">
|
|
10724
11246
|
<span class="md-ellipsis">
|
|
10725
|
-
Housekeeping
|
|
11247
|
+
Housekeeping in v2.3.5
|
|
10726
11248
|
</span>
|
|
10727
11249
|
</a>
|
|
10728
11250
|
|
|
@@ -10744,45 +11266,45 @@
|
|
|
10744
11266
|
<ul class="md-nav__list">
|
|
10745
11267
|
|
|
10746
11268
|
<li class="md-nav__item">
|
|
10747
|
-
<a href="#
|
|
11269
|
+
<a href="#added-in-v234" class="md-nav__link">
|
|
10748
11270
|
<span class="md-ellipsis">
|
|
10749
|
-
Added
|
|
11271
|
+
Added in v2.3.4
|
|
10750
11272
|
</span>
|
|
10751
11273
|
</a>
|
|
10752
11274
|
|
|
10753
11275
|
</li>
|
|
10754
11276
|
|
|
10755
11277
|
<li class="md-nav__item">
|
|
10756
|
-
<a href="#
|
|
11278
|
+
<a href="#changed-in-v234" class="md-nav__link">
|
|
10757
11279
|
<span class="md-ellipsis">
|
|
10758
|
-
Changed
|
|
11280
|
+
Changed in v2.3.4
|
|
10759
11281
|
</span>
|
|
10760
11282
|
</a>
|
|
10761
11283
|
|
|
10762
11284
|
</li>
|
|
10763
11285
|
|
|
10764
11286
|
<li class="md-nav__item">
|
|
10765
|
-
<a href="#
|
|
11287
|
+
<a href="#fixed-in-v234" class="md-nav__link">
|
|
10766
11288
|
<span class="md-ellipsis">
|
|
10767
|
-
Fixed
|
|
11289
|
+
Fixed in v2.3.4
|
|
10768
11290
|
</span>
|
|
10769
11291
|
</a>
|
|
10770
11292
|
|
|
10771
11293
|
</li>
|
|
10772
11294
|
|
|
10773
11295
|
<li class="md-nav__item">
|
|
10774
|
-
<a href="#
|
|
11296
|
+
<a href="#documentation-in-v234" class="md-nav__link">
|
|
10775
11297
|
<span class="md-ellipsis">
|
|
10776
|
-
Documentation
|
|
11298
|
+
Documentation in v2.3.4
|
|
10777
11299
|
</span>
|
|
10778
11300
|
</a>
|
|
10779
11301
|
|
|
10780
11302
|
</li>
|
|
10781
11303
|
|
|
10782
11304
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#
|
|
11305
|
+
<a href="#housekeeping-in-v234" class="md-nav__link">
|
|
10784
11306
|
<span class="md-ellipsis">
|
|
10785
|
-
Housekeeping
|
|
11307
|
+
Housekeeping in v2.3.4
|
|
10786
11308
|
</span>
|
|
10787
11309
|
</a>
|
|
10788
11310
|
|
|
@@ -10804,36 +11326,36 @@
|
|
|
10804
11326
|
<ul class="md-nav__list">
|
|
10805
11327
|
|
|
10806
11328
|
<li class="md-nav__item">
|
|
10807
|
-
<a href="#security" class="md-nav__link">
|
|
11329
|
+
<a href="#security-in-v233" class="md-nav__link">
|
|
10808
11330
|
<span class="md-ellipsis">
|
|
10809
|
-
Security
|
|
11331
|
+
Security in v2.3.3
|
|
10810
11332
|
</span>
|
|
10811
11333
|
</a>
|
|
10812
11334
|
|
|
10813
11335
|
</li>
|
|
10814
11336
|
|
|
10815
11337
|
<li class="md-nav__item">
|
|
10816
|
-
<a href="#
|
|
11338
|
+
<a href="#fixed-in-v233" class="md-nav__link">
|
|
10817
11339
|
<span class="md-ellipsis">
|
|
10818
|
-
Fixed
|
|
11340
|
+
Fixed in v2.3.3
|
|
10819
11341
|
</span>
|
|
10820
11342
|
</a>
|
|
10821
11343
|
|
|
10822
11344
|
</li>
|
|
10823
11345
|
|
|
10824
11346
|
<li class="md-nav__item">
|
|
10825
|
-
<a href="#
|
|
11347
|
+
<a href="#dependencies-in-v233" class="md-nav__link">
|
|
10826
11348
|
<span class="md-ellipsis">
|
|
10827
|
-
Dependencies
|
|
11349
|
+
Dependencies in v2.3.3
|
|
10828
11350
|
</span>
|
|
10829
11351
|
</a>
|
|
10830
11352
|
|
|
10831
11353
|
</li>
|
|
10832
11354
|
|
|
10833
11355
|
<li class="md-nav__item">
|
|
10834
|
-
<a href="#
|
|
11356
|
+
<a href="#housekeeping-in-v233" class="md-nav__link">
|
|
10835
11357
|
<span class="md-ellipsis">
|
|
10836
|
-
Housekeeping
|
|
11358
|
+
Housekeeping in v2.3.3
|
|
10837
11359
|
</span>
|
|
10838
11360
|
</a>
|
|
10839
11361
|
|
|
@@ -10855,36 +11377,36 @@
|
|
|
10855
11377
|
<ul class="md-nav__list">
|
|
10856
11378
|
|
|
10857
11379
|
<li class="md-nav__item">
|
|
10858
|
-
<a href="#
|
|
11380
|
+
<a href="#security-in-v232" class="md-nav__link">
|
|
10859
11381
|
<span class="md-ellipsis">
|
|
10860
|
-
Security
|
|
11382
|
+
Security in v2.3.2
|
|
10861
11383
|
</span>
|
|
10862
11384
|
</a>
|
|
10863
11385
|
|
|
10864
11386
|
</li>
|
|
10865
11387
|
|
|
10866
11388
|
<li class="md-nav__item">
|
|
10867
|
-
<a href="#
|
|
11389
|
+
<a href="#added-in-v232" class="md-nav__link">
|
|
10868
11390
|
<span class="md-ellipsis">
|
|
10869
|
-
Added
|
|
11391
|
+
Added in v2.3.2
|
|
10870
11392
|
</span>
|
|
10871
11393
|
</a>
|
|
10872
11394
|
|
|
10873
11395
|
</li>
|
|
10874
11396
|
|
|
10875
11397
|
<li class="md-nav__item">
|
|
10876
|
-
<a href="#
|
|
11398
|
+
<a href="#fixed-in-v232" class="md-nav__link">
|
|
10877
11399
|
<span class="md-ellipsis">
|
|
10878
|
-
Fixed
|
|
11400
|
+
Fixed in v2.3.2
|
|
10879
11401
|
</span>
|
|
10880
11402
|
</a>
|
|
10881
11403
|
|
|
10882
11404
|
</li>
|
|
10883
11405
|
|
|
10884
11406
|
<li class="md-nav__item">
|
|
10885
|
-
<a href="#
|
|
11407
|
+
<a href="#housekeeping-in-v232" class="md-nav__link">
|
|
10886
11408
|
<span class="md-ellipsis">
|
|
10887
|
-
Housekeeping
|
|
11409
|
+
Housekeeping in v2.3.2
|
|
10888
11410
|
</span>
|
|
10889
11411
|
</a>
|
|
10890
11412
|
|
|
@@ -10906,36 +11428,36 @@
|
|
|
10906
11428
|
<ul class="md-nav__list">
|
|
10907
11429
|
|
|
10908
11430
|
<li class="md-nav__item">
|
|
10909
|
-
<a href="#
|
|
11431
|
+
<a href="#added-in-v231" class="md-nav__link">
|
|
10910
11432
|
<span class="md-ellipsis">
|
|
10911
|
-
Added
|
|
11433
|
+
Added in v2.3.1
|
|
10912
11434
|
</span>
|
|
10913
11435
|
</a>
|
|
10914
11436
|
|
|
10915
11437
|
</li>
|
|
10916
11438
|
|
|
10917
11439
|
<li class="md-nav__item">
|
|
10918
|
-
<a href="#
|
|
11440
|
+
<a href="#changed-in-v231" class="md-nav__link">
|
|
10919
11441
|
<span class="md-ellipsis">
|
|
10920
|
-
Changed
|
|
11442
|
+
Changed in v2.3.1
|
|
10921
11443
|
</span>
|
|
10922
11444
|
</a>
|
|
10923
11445
|
|
|
10924
11446
|
</li>
|
|
10925
11447
|
|
|
10926
11448
|
<li class="md-nav__item">
|
|
10927
|
-
<a href="#
|
|
11449
|
+
<a href="#fixed-in-v231" class="md-nav__link">
|
|
10928
11450
|
<span class="md-ellipsis">
|
|
10929
|
-
Fixed
|
|
11451
|
+
Fixed in v2.3.1
|
|
10930
11452
|
</span>
|
|
10931
11453
|
</a>
|
|
10932
11454
|
|
|
10933
11455
|
</li>
|
|
10934
11456
|
|
|
10935
11457
|
<li class="md-nav__item">
|
|
10936
|
-
<a href="#
|
|
11458
|
+
<a href="#housekeeping-in-v231" class="md-nav__link">
|
|
10937
11459
|
<span class="md-ellipsis">
|
|
10938
|
-
Housekeeping
|
|
11460
|
+
Housekeeping in v2.3.1
|
|
10939
11461
|
</span>
|
|
10940
11462
|
</a>
|
|
10941
11463
|
|
|
@@ -10957,63 +11479,63 @@
|
|
|
10957
11479
|
<ul class="md-nav__list">
|
|
10958
11480
|
|
|
10959
11481
|
<li class="md-nav__item">
|
|
10960
|
-
<a href="#
|
|
11482
|
+
<a href="#security-in-v230" class="md-nav__link">
|
|
10961
11483
|
<span class="md-ellipsis">
|
|
10962
|
-
Security
|
|
11484
|
+
Security in v2.3.0
|
|
10963
11485
|
</span>
|
|
10964
11486
|
</a>
|
|
10965
11487
|
|
|
10966
11488
|
</li>
|
|
10967
11489
|
|
|
10968
11490
|
<li class="md-nav__item">
|
|
10969
|
-
<a href="#
|
|
11491
|
+
<a href="#added-in-v230" class="md-nav__link">
|
|
10970
11492
|
<span class="md-ellipsis">
|
|
10971
|
-
Added
|
|
11493
|
+
Added in v2.3.0
|
|
10972
11494
|
</span>
|
|
10973
11495
|
</a>
|
|
10974
11496
|
|
|
10975
11497
|
</li>
|
|
10976
11498
|
|
|
10977
11499
|
<li class="md-nav__item">
|
|
10978
|
-
<a href="#
|
|
11500
|
+
<a href="#changed-in-v230" class="md-nav__link">
|
|
10979
11501
|
<span class="md-ellipsis">
|
|
10980
|
-
Changed
|
|
11502
|
+
Changed in v2.3.0
|
|
10981
11503
|
</span>
|
|
10982
11504
|
</a>
|
|
10983
11505
|
|
|
10984
11506
|
</li>
|
|
10985
11507
|
|
|
10986
11508
|
<li class="md-nav__item">
|
|
10987
|
-
<a href="#removed" class="md-nav__link">
|
|
11509
|
+
<a href="#removed-in-v230" class="md-nav__link">
|
|
10988
11510
|
<span class="md-ellipsis">
|
|
10989
|
-
Removed
|
|
11511
|
+
Removed in v2.3.0
|
|
10990
11512
|
</span>
|
|
10991
11513
|
</a>
|
|
10992
11514
|
|
|
10993
11515
|
</li>
|
|
10994
11516
|
|
|
10995
11517
|
<li class="md-nav__item">
|
|
10996
|
-
<a href="#
|
|
11518
|
+
<a href="#fixed-in-v230" class="md-nav__link">
|
|
10997
11519
|
<span class="md-ellipsis">
|
|
10998
|
-
Fixed
|
|
11520
|
+
Fixed in v2.3.0
|
|
10999
11521
|
</span>
|
|
11000
11522
|
</a>
|
|
11001
11523
|
|
|
11002
11524
|
</li>
|
|
11003
11525
|
|
|
11004
11526
|
<li class="md-nav__item">
|
|
11005
|
-
<a href="#
|
|
11527
|
+
<a href="#documentation-in-v230" class="md-nav__link">
|
|
11006
11528
|
<span class="md-ellipsis">
|
|
11007
|
-
Documentation
|
|
11529
|
+
Documentation in v2.3.0
|
|
11008
11530
|
</span>
|
|
11009
11531
|
</a>
|
|
11010
11532
|
|
|
11011
11533
|
</li>
|
|
11012
11534
|
|
|
11013
11535
|
<li class="md-nav__item">
|
|
11014
|
-
<a href="#
|
|
11536
|
+
<a href="#housekeeping-in-v230" class="md-nav__link">
|
|
11015
11537
|
<span class="md-ellipsis">
|
|
11016
|
-
Housekeeping
|
|
11538
|
+
Housekeeping in v2.3.0
|
|
11017
11539
|
</span>
|
|
11018
11540
|
</a>
|
|
11019
11541
|
|
|
@@ -11035,81 +11557,81 @@
|
|
|
11035
11557
|
<ul class="md-nav__list">
|
|
11036
11558
|
|
|
11037
11559
|
<li class="md-nav__item">
|
|
11038
|
-
<a href="#
|
|
11560
|
+
<a href="#security-in-v230-beta1" class="md-nav__link">
|
|
11039
11561
|
<span class="md-ellipsis">
|
|
11040
|
-
Security
|
|
11562
|
+
Security in v2.3.0-beta.1
|
|
11041
11563
|
</span>
|
|
11042
11564
|
</a>
|
|
11043
11565
|
|
|
11044
11566
|
</li>
|
|
11045
11567
|
|
|
11046
11568
|
<li class="md-nav__item">
|
|
11047
|
-
<a href="#
|
|
11569
|
+
<a href="#added-in-v230-beta1" class="md-nav__link">
|
|
11048
11570
|
<span class="md-ellipsis">
|
|
11049
|
-
Added
|
|
11571
|
+
Added in v2.3.0-beta.1
|
|
11050
11572
|
</span>
|
|
11051
11573
|
</a>
|
|
11052
11574
|
|
|
11053
11575
|
</li>
|
|
11054
11576
|
|
|
11055
11577
|
<li class="md-nav__item">
|
|
11056
|
-
<a href="#
|
|
11578
|
+
<a href="#changed-in-v230-beta1" class="md-nav__link">
|
|
11057
11579
|
<span class="md-ellipsis">
|
|
11058
|
-
Changed
|
|
11580
|
+
Changed in v2.3.0-beta.1
|
|
11059
11581
|
</span>
|
|
11060
11582
|
</a>
|
|
11061
11583
|
|
|
11062
11584
|
</li>
|
|
11063
11585
|
|
|
11064
11586
|
<li class="md-nav__item">
|
|
11065
|
-
<a href="#deprecated" class="md-nav__link">
|
|
11587
|
+
<a href="#deprecated-in-v230-beta1" class="md-nav__link">
|
|
11066
11588
|
<span class="md-ellipsis">
|
|
11067
|
-
Deprecated
|
|
11589
|
+
Deprecated in v2.3.0-beta.1
|
|
11068
11590
|
</span>
|
|
11069
11591
|
</a>
|
|
11070
11592
|
|
|
11071
11593
|
</li>
|
|
11072
11594
|
|
|
11073
11595
|
<li class="md-nav__item">
|
|
11074
|
-
<a href="#
|
|
11596
|
+
<a href="#removed-in-v230-beta1" class="md-nav__link">
|
|
11075
11597
|
<span class="md-ellipsis">
|
|
11076
|
-
Removed
|
|
11598
|
+
Removed in v2.3.0-beta.1
|
|
11077
11599
|
</span>
|
|
11078
11600
|
</a>
|
|
11079
11601
|
|
|
11080
11602
|
</li>
|
|
11081
11603
|
|
|
11082
11604
|
<li class="md-nav__item">
|
|
11083
|
-
<a href="#
|
|
11605
|
+
<a href="#fixed-in-v230-beta1" class="md-nav__link">
|
|
11084
11606
|
<span class="md-ellipsis">
|
|
11085
|
-
Fixed
|
|
11607
|
+
Fixed in v2.3.0-beta.1
|
|
11086
11608
|
</span>
|
|
11087
11609
|
</a>
|
|
11088
11610
|
|
|
11089
11611
|
</li>
|
|
11090
11612
|
|
|
11091
11613
|
<li class="md-nav__item">
|
|
11092
|
-
<a href="#
|
|
11614
|
+
<a href="#dependencies-in-v230-beta1" class="md-nav__link">
|
|
11093
11615
|
<span class="md-ellipsis">
|
|
11094
|
-
Dependencies
|
|
11616
|
+
Dependencies in v2.3.0-beta.1
|
|
11095
11617
|
</span>
|
|
11096
11618
|
</a>
|
|
11097
11619
|
|
|
11098
11620
|
</li>
|
|
11099
11621
|
|
|
11100
11622
|
<li class="md-nav__item">
|
|
11101
|
-
<a href="#
|
|
11623
|
+
<a href="#documentation-in-v230-beta1" class="md-nav__link">
|
|
11102
11624
|
<span class="md-ellipsis">
|
|
11103
|
-
Documentation
|
|
11625
|
+
Documentation in v2.3.0-beta.1
|
|
11104
11626
|
</span>
|
|
11105
11627
|
</a>
|
|
11106
11628
|
|
|
11107
11629
|
</li>
|
|
11108
11630
|
|
|
11109
11631
|
<li class="md-nav__item">
|
|
11110
|
-
<a href="#
|
|
11632
|
+
<a href="#housekeeping-in-v230-beta1" class="md-nav__link">
|
|
11111
11633
|
<span class="md-ellipsis">
|
|
11112
|
-
Housekeeping
|
|
11634
|
+
Housekeeping in v2.3.0-beta.1
|
|
11113
11635
|
</span>
|
|
11114
11636
|
</a>
|
|
11115
11637
|
|
|
@@ -11138,8 +11660,6 @@
|
|
|
11138
11660
|
|
|
11139
11661
|
|
|
11140
11662
|
|
|
11141
|
-
<!-- markdownlint-disable MD024 -->
|
|
11142
|
-
|
|
11143
11663
|
<h1 id="nautobot-v23">Nautobot v2.3<a class="headerlink" href="#nautobot-v23" title="Permanent link">¶</a></h1>
|
|
11144
11664
|
<p>This document describes all new features and changes in Nautobot 2.3.</p>
|
|
11145
11665
|
<h2 id="upgrade-actions">Upgrade Actions<a class="headerlink" href="#upgrade-actions" title="Permanent link">¶</a></h2>
|
|
@@ -11229,15 +11749,140 @@
|
|
|
11229
11749
|
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11230
11750
|
<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>
|
|
11231
11751
|
<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 -->
|
|
11232
11753
|
<!-- 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>
|
|
11233
11878
|
<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>
|
|
11234
|
-
<h3 id="
|
|
11879
|
+
<h3 id="added-in-v2312">Added in v2.3.12<a class="headerlink" href="#added-in-v2312" title="Permanent link">¶</a></h3>
|
|
11235
11880
|
<ul>
|
|
11236
11881
|
<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>
|
|
11237
11882
|
<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>
|
|
11238
11883
|
<li><a href="https://github.com/nautobot/nautobot/issues/6550">#6550</a> - Added OSFP-XD (800GE and 1600GE) and OSFP1600 interface types.</li>
|
|
11239
11884
|
</ul>
|
|
11240
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11885
|
+
<h3 id="fixed-in-v2312">Fixed in v2.3.12<a class="headerlink" href="#fixed-in-v2312" title="Permanent link">¶</a></h3>
|
|
11241
11886
|
<ul>
|
|
11242
11887
|
<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>
|
|
11243
11888
|
<li><a href="https://github.com/nautobot/nautobot/issues/6478">#6478</a> - Fixed inconsistent rendering of the Role field.</li>
|
|
@@ -11249,34 +11894,34 @@
|
|
|
11249
11894
|
<li><a href="https://github.com/nautobot/nautobot/issues/6547">#6547</a> - Fixed incorrect VRF filter specified on VRF column on Prefix Table.</li>
|
|
11250
11895
|
<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>
|
|
11251
11896
|
</ul>
|
|
11252
|
-
<h3 id="
|
|
11897
|
+
<h3 id="dependencies-in-v2312">Dependencies in v2.3.12<a class="headerlink" href="#dependencies-in-v2312" title="Permanent link">¶</a></h3>
|
|
11253
11898
|
<ul>
|
|
11254
11899
|
<li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated <code>mysqlclient</code> dependency to <code>~2.2.6</code>.</li>
|
|
11255
11900
|
</ul>
|
|
11256
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11901
|
+
<h3 id="documentation-in-v2312">Documentation in v2.3.12<a class="headerlink" href="#documentation-in-v2312" title="Permanent link">¶</a></h3>
|
|
11257
11902
|
<ul>
|
|
11258
11903
|
<li><a href="https://github.com/nautobot/nautobot/issues/6516">#6516</a> - Updated release notes to make it clearer which are model changes.</li>
|
|
11259
11904
|
<li><a href="https://github.com/nautobot/nautobot/issues/6524">#6524</a> - Updated AzureAD authentication documentation.</li>
|
|
11260
11905
|
<li><a href="https://github.com/nautobot/nautobot/issues/6567">#6567</a> - Fixed incorrect example in documentation on using test factories.</li>
|
|
11261
11906
|
</ul>
|
|
11262
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11907
|
+
<h3 id="housekeeping-in-v2312">Housekeeping in v2.3.12<a class="headerlink" href="#housekeeping-in-v2312" title="Permanent link">¶</a></h3>
|
|
11263
11908
|
<ul>
|
|
11264
11909
|
<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>
|
|
11265
11910
|
<li><a href="https://github.com/nautobot/nautobot/issues/6500">#6500</a> - Added support for <code>invoke showmigrations</code> command.</li>
|
|
11266
11911
|
</ul>
|
|
11267
11912
|
<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>
|
|
11268
|
-
<h3 id="
|
|
11913
|
+
<h3 id="added-in-v2311">Added in v2.3.11<a class="headerlink" href="#added-in-v2311" title="Permanent link">¶</a></h3>
|
|
11269
11914
|
<ul>
|
|
11270
11915
|
<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>
|
|
11271
11916
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added optional <code>lookup</code> parameter to <code>LinkedCountColumn</code>.</li>
|
|
11272
11917
|
</ul>
|
|
11273
|
-
<h3 id="
|
|
11918
|
+
<h3 id="changed-in-v2311">Changed in v2.3.11<a class="headerlink" href="#changed-in-v2311" title="Permanent link">¶</a></h3>
|
|
11274
11919
|
<ul>
|
|
11275
11920
|
<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>
|
|
11276
11921
|
<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>
|
|
11277
11922
|
<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>
|
|
11278
11923
|
</ul>
|
|
11279
|
-
<h3 id="
|
|
11924
|
+
<h3 id="fixed-in-v2311">Fixed in v2.3.11<a class="headerlink" href="#fixed-in-v2311" title="Permanent link">¶</a></h3>
|
|
11280
11925
|
<ul>
|
|
11281
11926
|
<li><a href="https://github.com/nautobot/nautobot/issues/6414">#6414</a> - Fixed layout bug in browsable REST API.</li>
|
|
11282
11927
|
<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>
|
|
@@ -11287,11 +11932,11 @@
|
|
|
11287
11932
|
<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>
|
|
11288
11933
|
<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>
|
|
11289
11934
|
</ul>
|
|
11290
|
-
<h3 id="
|
|
11935
|
+
<h3 id="documentation-in-v2311">Documentation in v2.3.11<a class="headerlink" href="#documentation-in-v2311" title="Permanent link">¶</a></h3>
|
|
11291
11936
|
<ul>
|
|
11292
11937
|
<li><a href="https://github.com/nautobot/nautobot/issues/6485">#6485</a> - Added additional clarification for enabling request profiling via user profile.</li>
|
|
11293
11938
|
</ul>
|
|
11294
|
-
<h3 id="
|
|
11939
|
+
<h3 id="housekeeping-in-v2311">Housekeeping in v2.3.11<a class="headerlink" href="#housekeeping-in-v2311" title="Permanent link">¶</a></h3>
|
|
11295
11940
|
<ul>
|
|
11296
11941
|
<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>
|
|
11297
11942
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Fixed incorrect assertion in core navbar integration tests.</li>
|
|
@@ -11300,62 +11945,62 @@
|
|
|
11300
11945
|
<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>
|
|
11301
11946
|
</ul>
|
|
11302
11947
|
<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>
|
|
11303
|
-
<h3 id="
|
|
11948
|
+
<h3 id="added-in-v2310">Added in v2.3.10<a class="headerlink" href="#added-in-v2310" title="Permanent link">¶</a></h3>
|
|
11304
11949
|
<ul>
|
|
11305
11950
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added cacheable <code>CustomField.objects.keys_for_model(model)</code> API.</li>
|
|
11306
11951
|
<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>
|
|
11307
11952
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added logging to JobResults for CustomField provisioning background tasks.</li>
|
|
11308
11953
|
<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>
|
|
11309
11954
|
</ul>
|
|
11310
|
-
<h3 id="
|
|
11955
|
+
<h3 id="changed-in-v2310">Changed in v2.3.10<a class="headerlink" href="#changed-in-v2310" title="Permanent link">¶</a></h3>
|
|
11311
11956
|
<ul>
|
|
11312
11957
|
<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>
|
|
11313
11958
|
</ul>
|
|
11314
|
-
<h3 id="
|
|
11959
|
+
<h3 id="fixed-in-v2310">Fixed in v2.3.10<a class="headerlink" href="#fixed-in-v2310" title="Permanent link">¶</a></h3>
|
|
11315
11960
|
<ul>
|
|
11316
11961
|
<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>
|
|
11317
11962
|
<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>
|
|
11318
11963
|
</ul>
|
|
11319
|
-
<h3 id="
|
|
11964
|
+
<h3 id="dependencies-in-v2310">Dependencies in v2.3.10<a class="headerlink" href="#dependencies-in-v2310" title="Permanent link">¶</a></h3>
|
|
11320
11965
|
<ul>
|
|
11321
11966
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
|
|
11322
11967
|
</ul>
|
|
11323
|
-
<h3 id="
|
|
11968
|
+
<h3 id="housekeeping-in-v2310">Housekeeping in v2.3.10<a class="headerlink" href="#housekeeping-in-v2310" title="Permanent link">¶</a></h3>
|
|
11324
11969
|
<ul>
|
|
11325
11970
|
<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>
|
|
11326
11971
|
</ul>
|
|
11327
11972
|
<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>
|
|
11328
|
-
<h3 id="
|
|
11973
|
+
<h3 id="added-in-v239">Added in v2.3.9<a class="headerlink" href="#added-in-v239" title="Permanent link">¶</a></h3>
|
|
11329
11974
|
<ul>
|
|
11330
11975
|
<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>
|
|
11331
11976
|
<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>
|
|
11332
11977
|
<li><a href="https://github.com/nautobot/nautobot/issues/6372">#6372</a> - Added environment variable support for setting <code>CSRF_TRUSTED_ORIGINS</code>.</li>
|
|
11333
11978
|
</ul>
|
|
11334
|
-
<h3 id="
|
|
11979
|
+
<h3 id="changed-in-v239">Changed in v2.3.9<a class="headerlink" href="#changed-in-v239" title="Permanent link">¶</a></h3>
|
|
11335
11980
|
<ul>
|
|
11336
11981
|
<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>
|
|
11337
11982
|
<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>
|
|
11338
11983
|
<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>
|
|
11339
11984
|
</ul>
|
|
11340
|
-
<h3 id="
|
|
11985
|
+
<h3 id="fixed-in-v239">Fixed in v2.3.9<a class="headerlink" href="#fixed-in-v239" title="Permanent link">¶</a></h3>
|
|
11341
11986
|
<ul>
|
|
11342
11987
|
<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>
|
|
11343
11988
|
<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>
|
|
11344
11989
|
<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>
|
|
11345
11990
|
<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>
|
|
11346
11991
|
<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>
|
|
11347
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6425">#6425</a> - Fixed bug in which ColoredLabelColumn() wasn't being applied to the
|
|
11992
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6425">#6425</a> - Fixed bug in which ColoredLabelColumn() wasn't being applied to the <code>role</code> column on Device/VM interfaces.</li>
|
|
11348
11993
|
</ul>
|
|
11349
|
-
<h3 id="
|
|
11994
|
+
<h3 id="dependencies-in-v239">Dependencies in v2.3.9<a class="headerlink" href="#dependencies-in-v239" title="Permanent link">¶</a></h3>
|
|
11350
11995
|
<ul>
|
|
11351
11996
|
<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>
|
|
11352
11997
|
</ul>
|
|
11353
|
-
<h3 id="
|
|
11998
|
+
<h3 id="housekeeping-in-v239">Housekeeping in v2.3.9<a class="headerlink" href="#housekeeping-in-v239" title="Permanent link">¶</a></h3>
|
|
11354
11999
|
<ul>
|
|
11355
12000
|
<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>
|
|
11356
12001
|
</ul>
|
|
11357
12002
|
<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>
|
|
11358
|
-
<h3 id="
|
|
12003
|
+
<h3 id="fixed-in-v238">Fixed in v2.3.8<a class="headerlink" href="#fixed-in-v238" title="Permanent link">¶</a></h3>
|
|
11359
12004
|
<ul>
|
|
11360
12005
|
<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>
|
|
11361
12006
|
<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>
|
|
@@ -11364,27 +12009,27 @@
|
|
|
11364
12009
|
<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>
|
|
11365
12010
|
</ul>
|
|
11366
12011
|
<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>
|
|
11367
|
-
<h3 id="
|
|
12012
|
+
<h3 id="added-in-v237">Added in v2.3.7<a class="headerlink" href="#added-in-v237" title="Permanent link">¶</a></h3>
|
|
11368
12013
|
<ul>
|
|
11369
12014
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added <code>assertBodyContains()</code> test helper API to <code>NautobotTestCaseMixin</code>.</li>
|
|
11370
12015
|
</ul>
|
|
11371
|
-
<h3 id="
|
|
12016
|
+
<h3 id="changed-in-v237">Changed in v2.3.7<a class="headerlink" href="#changed-in-v237" title="Permanent link">¶</a></h3>
|
|
11372
12017
|
<ul>
|
|
11373
12018
|
<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>
|
|
11374
12019
|
<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>
|
|
11375
12020
|
</ul>
|
|
11376
|
-
<h3 id="
|
|
12021
|
+
<h3 id="fixed-in-v237">Fixed in v2.3.7<a class="headerlink" href="#fixed-in-v237" title="Permanent link">¶</a></h3>
|
|
11377
12022
|
<ul>
|
|
11378
12023
|
<li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
|
|
11379
12024
|
<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>
|
|
11380
12025
|
<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>
|
|
11381
12026
|
<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>
|
|
11382
12027
|
</ul>
|
|
11383
|
-
<h3 id="
|
|
12028
|
+
<h3 id="dependencies-in-v237">Dependencies in v2.3.7<a class="headerlink" href="#dependencies-in-v237" title="Permanent link">¶</a></h3>
|
|
11384
12029
|
<ul>
|
|
11385
12030
|
<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>
|
|
11386
12031
|
</ul>
|
|
11387
|
-
<h3 id="
|
|
12032
|
+
<h3 id="housekeeping-in-v237">Housekeeping in v2.3.7<a class="headerlink" href="#housekeeping-in-v237" title="Permanent link">¶</a></h3>
|
|
11388
12033
|
<ul>
|
|
11389
12034
|
<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>
|
|
11390
12035
|
<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>
|
|
@@ -11395,36 +12040,36 @@
|
|
|
11395
12040
|
<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>
|
|
11396
12041
|
</ul>
|
|
11397
12042
|
<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>
|
|
11398
|
-
<h3 id="
|
|
12043
|
+
<h3 id="added-in-v236">Added in v2.3.6<a class="headerlink" href="#added-in-v236" title="Permanent link">¶</a></h3>
|
|
11399
12044
|
<ul>
|
|
11400
12045
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
11401
12046
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
11402
12047
|
</ul>
|
|
11403
|
-
<h3 id="
|
|
12048
|
+
<h3 id="fixed-in-v236">Fixed in v2.3.6<a class="headerlink" href="#fixed-in-v236" title="Permanent link">¶</a></h3>
|
|
11404
12049
|
<ul>
|
|
11405
12050
|
<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>
|
|
11406
12051
|
<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>
|
|
11407
12052
|
</ul>
|
|
11408
|
-
<h3 id="
|
|
12053
|
+
<h3 id="documentation-in-v236">Documentation in v2.3.6<a class="headerlink" href="#documentation-in-v236" title="Permanent link">¶</a></h3>
|
|
11409
12054
|
<ul>
|
|
11410
12055
|
<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>
|
|
11411
12056
|
<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>
|
|
11412
12057
|
</ul>
|
|
11413
|
-
<h3 id="
|
|
12058
|
+
<h3 id="housekeeping-in-v236">Housekeeping in v2.3.6<a class="headerlink" href="#housekeeping-in-v236" title="Permanent link">¶</a></h3>
|
|
11414
12059
|
<ul>
|
|
11415
12060
|
<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>
|
|
11416
12061
|
</ul>
|
|
11417
12062
|
<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>
|
|
11418
|
-
<h3 id="
|
|
12063
|
+
<h3 id="added-in-v235">Added in v2.3.5<a class="headerlink" href="#added-in-v235" title="Permanent link">¶</a></h3>
|
|
11419
12064
|
<ul>
|
|
11420
12065
|
<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>
|
|
11421
12066
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
|
|
11422
12067
|
</ul>
|
|
11423
|
-
<h3 id="
|
|
12068
|
+
<h3 id="changed-in-v235">Changed in v2.3.5<a class="headerlink" href="#changed-in-v235" title="Permanent link">¶</a></h3>
|
|
11424
12069
|
<ul>
|
|
11425
12070
|
<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>
|
|
11426
12071
|
</ul>
|
|
11427
|
-
<h3 id="
|
|
12072
|
+
<h3 id="fixed-in-v235">Fixed in v2.3.5<a class="headerlink" href="#fixed-in-v235" title="Permanent link">¶</a></h3>
|
|
11428
12073
|
<ul>
|
|
11429
12074
|
<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>
|
|
11430
12075
|
<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>
|
|
@@ -11435,16 +12080,16 @@
|
|
|
11435
12080
|
<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>
|
|
11436
12081
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
|
|
11437
12082
|
</ul>
|
|
11438
|
-
<h3 id="
|
|
12083
|
+
<h3 id="dependencies-in-v235">Dependencies in v2.3.5<a class="headerlink" href="#dependencies-in-v235" title="Permanent link">¶</a></h3>
|
|
11439
12084
|
<ul>
|
|
11440
12085
|
<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>
|
|
11441
12086
|
<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>
|
|
11442
12087
|
</ul>
|
|
11443
|
-
<h3 id="
|
|
12088
|
+
<h3 id="documentation-in-v235">Documentation in v2.3.5<a class="headerlink" href="#documentation-in-v235" title="Permanent link">¶</a></h3>
|
|
11444
12089
|
<ul>
|
|
11445
12090
|
<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>
|
|
11446
12091
|
</ul>
|
|
11447
|
-
<h3 id="
|
|
12092
|
+
<h3 id="housekeeping-in-v235">Housekeeping in v2.3.5<a class="headerlink" href="#housekeeping-in-v235" title="Permanent link">¶</a></h3>
|
|
11448
12093
|
<ul>
|
|
11449
12094
|
<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>
|
|
11450
12095
|
<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>
|
|
@@ -11453,22 +12098,22 @@
|
|
|
11453
12098
|
<li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
|
|
11454
12099
|
</ul>
|
|
11455
12100
|
<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>
|
|
11456
|
-
<h3 id="
|
|
12101
|
+
<h3 id="added-in-v234">Added in v2.3.4<a class="headerlink" href="#added-in-v234" title="Permanent link">¶</a></h3>
|
|
11457
12102
|
<ul>
|
|
11458
12103
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
|
|
11459
12104
|
<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>
|
|
11460
12105
|
</ul>
|
|
11461
|
-
<h3 id="
|
|
12106
|
+
<h3 id="changed-in-v234">Changed in v2.3.4<a class="headerlink" href="#changed-in-v234" title="Permanent link">¶</a></h3>
|
|
11462
12107
|
<ul>
|
|
11463
12108
|
<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>
|
|
11464
12109
|
</ul>
|
|
11465
|
-
<h3 id="
|
|
12110
|
+
<h3 id="fixed-in-v234">Fixed in v2.3.4<a class="headerlink" href="#fixed-in-v234" title="Permanent link">¶</a></h3>
|
|
11466
12111
|
<ul>
|
|
11467
12112
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
11468
12113
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
11469
12114
|
<li><a href="https://github.com/nautobot/nautobot/issues/6230">#6230</a> - Fixed an issue with Celery Scheduler around datetime imports.</li>
|
|
11470
12115
|
</ul>
|
|
11471
|
-
<h3 id="
|
|
12116
|
+
<h3 id="documentation-in-v234">Documentation in v2.3.4<a class="headerlink" href="#documentation-in-v234" title="Permanent link">¶</a></h3>
|
|
11472
12117
|
<ul>
|
|
11473
12118
|
<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>
|
|
11474
12119
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Administration: Installation Extras" docs section into the "Administration: Guides" section.</li>
|
|
@@ -11476,7 +12121,7 @@
|
|
|
11476
12121
|
<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>
|
|
11477
12122
|
<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>
|
|
11478
12123
|
</ul>
|
|
11479
|
-
<h3 id="
|
|
12124
|
+
<h3 id="housekeeping-in-v234">Housekeeping in v2.3.4<a class="headerlink" href="#housekeeping-in-v234" title="Permanent link">¶</a></h3>
|
|
11480
12125
|
<ul>
|
|
11481
12126
|
<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>
|
|
11482
12127
|
<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>
|
|
@@ -11484,22 +12129,22 @@
|
|
|
11484
12129
|
<li><a href="https://github.com/nautobot/nautobot/issues/6227">#6227</a> - Fixed typo in app upstream testing workflow.</li>
|
|
11485
12130
|
</ul>
|
|
11486
12131
|
<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>
|
|
11487
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
12132
|
+
<h3 id="security-in-v233">Security in v2.3.3<a class="headerlink" href="#security-in-v233" title="Permanent link">¶</a></h3>
|
|
11488
12133
|
<ul>
|
|
11489
12134
|
<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>
|
|
11490
12135
|
</ul>
|
|
11491
|
-
<h3 id="
|
|
12136
|
+
<h3 id="fixed-in-v233">Fixed in v2.3.3<a class="headerlink" href="#fixed-in-v233" title="Permanent link">¶</a></h3>
|
|
11492
12137
|
<ul>
|
|
11493
12138
|
<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>
|
|
11494
12139
|
<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>
|
|
11495
12140
|
<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>
|
|
11496
12141
|
<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>
|
|
11497
12142
|
</ul>
|
|
11498
|
-
<h3 id="
|
|
12143
|
+
<h3 id="dependencies-in-v233">Dependencies in v2.3.3<a class="headerlink" href="#dependencies-in-v233" title="Permanent link">¶</a></h3>
|
|
11499
12144
|
<ul>
|
|
11500
12145
|
<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>
|
|
11501
12146
|
</ul>
|
|
11502
|
-
<h3 id="
|
|
12147
|
+
<h3 id="housekeeping-in-v233">Housekeeping in v2.3.3<a class="headerlink" href="#housekeeping-in-v233" title="Permanent link">¶</a></h3>
|
|
11503
12148
|
<ul>
|
|
11504
12149
|
<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>
|
|
11505
12150
|
<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>
|
|
@@ -11509,18 +12154,18 @@
|
|
|
11509
12154
|
<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>
|
|
11510
12155
|
</ul>
|
|
11511
12156
|
<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>
|
|
11512
|
-
<h3 id="
|
|
12157
|
+
<h3 id="security-in-v232">Security in v2.3.2<a class="headerlink" href="#security-in-v232" title="Permanent link">¶</a></h3>
|
|
11513
12158
|
<ul>
|
|
11514
12159
|
<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>
|
|
11515
12160
|
</ul>
|
|
11516
|
-
<h3 id="
|
|
12161
|
+
<h3 id="added-in-v232">Added in v2.3.2<a class="headerlink" href="#added-in-v232" title="Permanent link">¶</a></h3>
|
|
11517
12162
|
<ul>
|
|
11518
12163
|
<li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
|
|
11519
12164
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
|
|
11520
12165
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
11521
12166
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
11522
12167
|
</ul>
|
|
11523
|
-
<h3 id="
|
|
12168
|
+
<h3 id="fixed-in-v232">Fixed in v2.3.2<a class="headerlink" href="#fixed-in-v232" title="Permanent link">¶</a></h3>
|
|
11524
12169
|
<ul>
|
|
11525
12170
|
<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>
|
|
11526
12171
|
<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>
|
|
@@ -11529,7 +12174,7 @@
|
|
|
11529
12174
|
<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>
|
|
11530
12175
|
<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>
|
|
11531
12176
|
</ul>
|
|
11532
|
-
<h3 id="
|
|
12177
|
+
<h3 id="housekeeping-in-v232">Housekeeping in v2.3.2<a class="headerlink" href="#housekeeping-in-v232" title="Permanent link">¶</a></h3>
|
|
11533
12178
|
<ul>
|
|
11534
12179
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
|
|
11535
12180
|
<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>
|
|
@@ -11537,33 +12182,33 @@
|
|
|
11537
12182
|
<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>
|
|
11538
12183
|
</ul>
|
|
11539
12184
|
<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>
|
|
11540
|
-
<h3 id="
|
|
12185
|
+
<h3 id="added-in-v231">Added in v2.3.1<a class="headerlink" href="#added-in-v231" title="Permanent link">¶</a></h3>
|
|
11541
12186
|
<ul>
|
|
11542
12187
|
<li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
|
|
11543
12188
|
<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>
|
|
11544
12189
|
<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>
|
|
11545
12190
|
</ul>
|
|
11546
|
-
<h3 id="
|
|
12191
|
+
<h3 id="changed-in-v231">Changed in v2.3.1<a class="headerlink" href="#changed-in-v231" title="Permanent link">¶</a></h3>
|
|
11547
12192
|
<ul>
|
|
11548
12193
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
11549
12194
|
</ul>
|
|
11550
|
-
<h3 id="
|
|
12195
|
+
<h3 id="fixed-in-v231">Fixed in v2.3.1<a class="headerlink" href="#fixed-in-v231" title="Permanent link">¶</a></h3>
|
|
11551
12196
|
<ul>
|
|
11552
12197
|
<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>
|
|
11553
12198
|
<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>
|
|
11554
12199
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
11555
12200
|
<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>
|
|
11556
12201
|
</ul>
|
|
11557
|
-
<h3 id="
|
|
12202
|
+
<h3 id="housekeeping-in-v231">Housekeeping in v2.3.1<a class="headerlink" href="#housekeeping-in-v231" title="Permanent link">¶</a></h3>
|
|
11558
12203
|
<ul>
|
|
11559
12204
|
<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>
|
|
11560
12205
|
</ul>
|
|
11561
12206
|
<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>
|
|
11562
|
-
<h3 id="
|
|
12207
|
+
<h3 id="security-in-v230">Security in v2.3.0<a class="headerlink" href="#security-in-v230" title="Permanent link">¶</a></h3>
|
|
11563
12208
|
<ul>
|
|
11564
12209
|
<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>
|
|
11565
12210
|
</ul>
|
|
11566
|
-
<h3 id="
|
|
12211
|
+
<h3 id="added-in-v230">Added in v2.3.0<a class="headerlink" href="#added-in-v230" title="Permanent link">¶</a></h3>
|
|
11567
12212
|
<ul>
|
|
11568
12213
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
|
|
11569
12214
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
|
|
@@ -11573,7 +12218,7 @@
|
|
|
11573
12218
|
<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>
|
|
11574
12219
|
<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>
|
|
11575
12220
|
</ul>
|
|
11576
|
-
<h3 id="
|
|
12221
|
+
<h3 id="changed-in-v230">Changed in v2.3.0<a class="headerlink" href="#changed-in-v230" title="Permanent link">¶</a></h3>
|
|
11577
12222
|
<ul>
|
|
11578
12223
|
<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>
|
|
11579
12224
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
|
|
@@ -11582,12 +12227,12 @@
|
|
|
11582
12227
|
<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>
|
|
11583
12228
|
<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>
|
|
11584
12229
|
</ul>
|
|
11585
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
12230
|
+
<h3 id="removed-in-v230">Removed in v2.3.0<a class="headerlink" href="#removed-in-v230" title="Permanent link">¶</a></h3>
|
|
11586
12231
|
<ul>
|
|
11587
12232
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
11588
12233
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
11589
12234
|
</ul>
|
|
11590
|
-
<h3 id="
|
|
12235
|
+
<h3 id="fixed-in-v230">Fixed in v2.3.0<a class="headerlink" href="#fixed-in-v230" title="Permanent link">¶</a></h3>
|
|
11591
12236
|
<ul>
|
|
11592
12237
|
<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>
|
|
11593
12238
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -11603,7 +12248,7 @@
|
|
|
11603
12248
|
<li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>IPAddressFilterSet.device</code> filter.</li>
|
|
11604
12249
|
<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>
|
|
11605
12250
|
</ul>
|
|
11606
|
-
<h3 id="
|
|
12251
|
+
<h3 id="documentation-in-v230">Documentation in v2.3.0<a class="headerlink" href="#documentation-in-v230" title="Permanent link">¶</a></h3>
|
|
11607
12252
|
<ul>
|
|
11608
12253
|
<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>
|
|
11609
12254
|
<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>
|
|
@@ -11611,7 +12256,7 @@
|
|
|
11611
12256
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
11612
12257
|
<li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
|
|
11613
12258
|
</ul>
|
|
11614
|
-
<h3 id="
|
|
12259
|
+
<h3 id="housekeeping-in-v230">Housekeeping in v2.3.0<a class="headerlink" href="#housekeeping-in-v230" title="Permanent link">¶</a></h3>
|
|
11615
12260
|
<ul>
|
|
11616
12261
|
<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>
|
|
11617
12262
|
<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>
|
|
@@ -11622,11 +12267,11 @@
|
|
|
11622
12267
|
<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>
|
|
11623
12268
|
</ul>
|
|
11624
12269
|
<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>
|
|
11625
|
-
<h3 id="
|
|
12270
|
+
<h3 id="security-in-v230-beta1">Security in v2.3.0-beta.1<a class="headerlink" href="#security-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11626
12271
|
<ul>
|
|
11627
12272
|
<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>
|
|
11628
12273
|
</ul>
|
|
11629
|
-
<h3 id="
|
|
12274
|
+
<h3 id="added-in-v230-beta1">Added in v2.3.0-beta.1<a class="headerlink" href="#added-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11630
12275
|
<ul>
|
|
11631
12276
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
|
|
11632
12277
|
<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>
|
|
@@ -11673,7 +12318,7 @@
|
|
|
11673
12318
|
<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>
|
|
11674
12319
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
|
|
11675
12320
|
</ul>
|
|
11676
|
-
<h3 id="
|
|
12321
|
+
<h3 id="changed-in-v230-beta1">Changed in v2.3.0-beta.1<a class="headerlink" href="#changed-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11677
12322
|
<ul>
|
|
11678
12323
|
<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>
|
|
11679
12324
|
<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>
|
|
@@ -11705,19 +12350,19 @@
|
|
|
11705
12350
|
<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>
|
|
11706
12351
|
<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>
|
|
11707
12352
|
</ul>
|
|
11708
|
-
<h3 id="deprecated">Deprecated<a class="headerlink" href="#deprecated" title="Permanent link">¶</a></h3>
|
|
12353
|
+
<h3 id="deprecated-in-v230-beta1">Deprecated in v2.3.0-beta.1<a class="headerlink" href="#deprecated-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11709
12354
|
<ul>
|
|
11710
12355
|
<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>
|
|
11711
12356
|
<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>
|
|
11712
12357
|
<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>
|
|
11713
12358
|
</ul>
|
|
11714
|
-
<h3 id="
|
|
12359
|
+
<h3 id="removed-in-v230-beta1">Removed in v2.3.0-beta.1<a class="headerlink" href="#removed-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11715
12360
|
<ul>
|
|
11716
12361
|
<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>
|
|
11717
12362
|
<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>
|
|
11718
12363
|
<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>
|
|
11719
12364
|
</ul>
|
|
11720
|
-
<h3 id="
|
|
12365
|
+
<h3 id="fixed-in-v230-beta1">Fixed in v2.3.0-beta.1<a class="headerlink" href="#fixed-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11721
12366
|
<ul>
|
|
11722
12367
|
<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>
|
|
11723
12368
|
<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>
|
|
@@ -11741,7 +12386,7 @@
|
|
|
11741
12386
|
<li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
|
|
11742
12387
|
<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>
|
|
11743
12388
|
</ul>
|
|
11744
|
-
<h3 id="
|
|
12389
|
+
<h3 id="dependencies-in-v230-beta1">Dependencies in v2.3.0-beta.1<a class="headerlink" href="#dependencies-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11745
12390
|
<ul>
|
|
11746
12391
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
|
|
11747
12392
|
<li><a href="https://github.com/nautobot/nautobot/issues/4616">#4616</a> - Updated <code>django-taggit</code> to <code>~5.0.0</code>.</li>
|
|
@@ -11767,13 +12412,13 @@
|
|
|
11767
12412
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-filter</code> to version <code>~24.2</code>.</li>
|
|
11768
12413
|
<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>
|
|
11769
12414
|
</ul>
|
|
11770
|
-
<h3 id="
|
|
12415
|
+
<h3 id="documentation-in-v230-beta1">Documentation in v2.3.0-beta.1<a class="headerlink" href="#documentation-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11771
12416
|
<ul>
|
|
11772
12417
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
11773
12418
|
<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>
|
|
11774
12419
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
11775
12420
|
</ul>
|
|
11776
|
-
<h3 id="
|
|
12421
|
+
<h3 id="housekeeping-in-v230-beta1">Housekeeping in v2.3.0-beta.1<a class="headerlink" href="#housekeeping-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11777
12422
|
<ul>
|
|
11778
12423
|
<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>
|
|
11779
12424
|
<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>
|
|
@@ -11944,7 +12589,7 @@
|
|
|
11944
12589
|
<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>
|
|
11945
12590
|
|
|
11946
12591
|
|
|
11947
|
-
<script src="../assets/javascripts/bundle.
|
|
12592
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
11948
12593
|
|
|
11949
12594
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11950
12595
|
|