nautobot 2.4.0b1__py3-none-any.whl → 2.4.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/__init__.py +1 -1
- nautobot/apps/api.py +8 -8
- nautobot/apps/change_logging.py +2 -2
- nautobot/apps/choices.py +4 -4
- nautobot/apps/events.py +3 -3
- nautobot/apps/factory.py +2 -2
- nautobot/apps/filters.py +1 -1
- nautobot/apps/forms.py +20 -20
- nautobot/apps/graphql.py +2 -2
- nautobot/apps/jobs.py +8 -8
- nautobot/apps/models.py +19 -19
- nautobot/apps/tables.py +1 -1
- nautobot/apps/testing.py +10 -10
- nautobot/apps/ui.py +2 -2
- nautobot/apps/utils.py +7 -7
- nautobot/apps/views.py +7 -7
- nautobot/circuits/api/serializers.py +1 -0
- nautobot/circuits/api/views.py +4 -8
- nautobot/circuits/tables.py +2 -1
- nautobot/circuits/templates/circuits/circuit_create.html +1 -7
- nautobot/circuits/tests/integration/test_circuits_bulk_operations.py +43 -0
- nautobot/circuits/tests/integration/test_relationships.py +1 -1
- nautobot/circuits/views.py +3 -3
- nautobot/cloud/api/views.py +6 -10
- nautobot/cloud/models.py +1 -1
- nautobot/cloud/views.py +0 -16
- nautobot/core/api/constants.py +11 -0
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/filter_backends.py +3 -9
- nautobot/core/api/schema.py +13 -2
- nautobot/core/api/serializers.py +40 -34
- nautobot/core/api/views.py +56 -4
- nautobot/core/apps/__init__.py +0 -5
- nautobot/core/celery/log.py +4 -4
- nautobot/core/celery/schedulers.py +2 -2
- nautobot/core/choices.py +2 -2
- nautobot/core/events/__init__.py +3 -3
- nautobot/core/filters.py +67 -35
- nautobot/core/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +14 -11
- nautobot/core/forms/forms.py +33 -2
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +28 -7
- nautobot/core/jobs/bulk_actions.py +285 -0
- nautobot/core/jobs/cleanup.py +48 -12
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/models/__init__.py +3 -1
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +6 -3
- nautobot/core/settings.py +29 -2
- nautobot/core/settings.yaml +21 -0
- nautobot/core/tables.py +79 -61
- nautobot/core/templates/about.html +67 -0
- nautobot/core/templates/generic/object_bulk_destroy.html +1 -1
- nautobot/core/templates/inc/media.html +3 -0
- nautobot/core/templates/inc/nav_menu.html +1 -0
- nautobot/core/templates/inc/tenancy_form_panel.html +9 -0
- nautobot/core/templates/inc/tenant_table_row.html +11 -0
- nautobot/core/templates/nautobot_config.py.j2 +13 -0
- nautobot/core/templates/search.html +7 -0
- nautobot/core/templates/utilities/render_jinja2.html +1 -1
- nautobot/core/templates/utilities/templatetags/tag.html +1 -1
- nautobot/core/templates/utilities/theme_preview.html +7 -0
- nautobot/core/templatetags/helpers.py +11 -2
- nautobot/core/testing/__init__.py +8 -8
- nautobot/core/testing/api.py +170 -15
- nautobot/core/testing/filters.py +45 -10
- nautobot/core/testing/forms.py +2 -0
- nautobot/core/testing/integration.py +514 -5
- nautobot/core/testing/mixins.py +7 -2
- nautobot/core/testing/views.py +44 -29
- nautobot/core/tests/integration/test_app_home.py +0 -1
- nautobot/core/tests/integration/test_app_navbar.py +0 -1
- nautobot/core/tests/integration/test_filters.py +0 -2
- nautobot/core/tests/integration/test_home.py +0 -1
- nautobot/core/tests/integration/test_navbar.py +0 -1
- nautobot/core/tests/integration/test_view_authentication.py +1 -0
- nautobot/core/tests/runner.py +1 -1
- nautobot/core/tests/test_api.py +98 -1
- nautobot/core/tests/test_csv.py +25 -3
- nautobot/core/tests/test_filters.py +209 -246
- nautobot/core/tests/test_forms.py +1 -0
- nautobot/core/tests/test_jobs.py +492 -1
- nautobot/core/tests/test_models.py +9 -0
- nautobot/core/tests/test_settings_schema.py +7 -0
- nautobot/core/tests/test_tables.py +100 -0
- nautobot/core/tests/test_utils.py +63 -1
- nautobot/core/tests/test_views.py +30 -3
- nautobot/core/ui/nav.py +1 -0
- nautobot/core/ui/object_detail.py +15 -1
- nautobot/core/urls.py +11 -0
- nautobot/core/utils/git.py +7 -2
- nautobot/core/utils/lookup.py +11 -8
- nautobot/core/utils/querysets.py +64 -0
- nautobot/core/utils/requests.py +24 -9
- nautobot/core/views/__init__.py +42 -0
- nautobot/core/views/generic.py +131 -197
- nautobot/core/views/mixins.py +136 -41
- nautobot/core/views/renderers.py +6 -6
- nautobot/core/views/utils.py +2 -2
- nautobot/dcim/api/serializers.py +56 -64
- nautobot/dcim/api/views.py +47 -113
- nautobot/dcim/constants.py +6 -13
- nautobot/dcim/factory.py +6 -1
- nautobot/dcim/filters/__init__.py +31 -2
- nautobot/dcim/forms.py +48 -17
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +25 -0
- nautobot/dcim/models/__init__.py +1 -1
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +22 -20
- nautobot/dcim/models/devices.py +10 -1
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +6 -5
- nautobot/dcim/models/racks.py +4 -4
- nautobot/dcim/tables/__init__.py +3 -3
- nautobot/dcim/tables/devices.py +9 -6
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/cable.html +1 -1
- nautobot/dcim/templates/dcim/controller_create.html +1 -7
- nautobot/dcim/templates/dcim/controller_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +2 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +5 -0
- nautobot/dcim/templates/dcim/device/base.html +1 -1
- nautobot/dcim/templates/dcim/device.html +3 -11
- nautobot/dcim/templates/dcim/device_component.html +1 -1
- nautobot/dcim/templates/dcim/device_edit.html +36 -37
- nautobot/dcim/templates/dcim/devicetype.html +1 -1
- nautobot/dcim/templates/dcim/location.html +2 -10
- nautobot/dcim/templates/dcim/location_edit.html +1 -7
- nautobot/dcim/templates/dcim/locationtype.html +1 -1
- nautobot/dcim/templates/dcim/locationtype_retrieve.html +1 -1
- nautobot/dcim/templates/dcim/manufacturer.html +1 -1
- nautobot/dcim/templates/dcim/platform.html +1 -1
- nautobot/dcim/templates/dcim/powerfeed.html +1 -1
- nautobot/dcim/templates/dcim/powerpanel.html +1 -1
- nautobot/dcim/templates/dcim/rack.html +2 -10
- nautobot/dcim/templates/dcim/rack_edit.html +1 -7
- nautobot/dcim/templates/dcim/rackgroup.html +1 -1
- nautobot/dcim/templates/dcim/rackreservation.html +3 -11
- nautobot/dcim/templates/dcim/virtualchassis.html +1 -1
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +1 -7
- nautobot/dcim/tests/integration/test_controller.py +62 -0
- nautobot/dcim/tests/integration/test_controller_managed_device_group.py +71 -0
- nautobot/dcim/tests/integration/test_device_bulk_operations.py +30 -0
- nautobot/dcim/tests/integration/test_location_bulk_operations.py +43 -0
- nautobot/dcim/tests/test_api.py +16 -5
- nautobot/dcim/tests/test_filters.py +33 -0
- nautobot/dcim/tests/test_forms.py +51 -2
- nautobot/dcim/tests/test_graphql.py +52 -0
- nautobot/dcim/tests/test_jobs.py +118 -0
- nautobot/dcim/tests/test_models.py +52 -9
- nautobot/dcim/tests/test_views.py +30 -84
- nautobot/dcim/views.py +13 -28
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +123 -85
- nautobot/extras/api/views.py +33 -30
- nautobot/extras/constants.py +3 -0
- nautobot/extras/datasources/git.py +125 -0
- nautobot/extras/filters/__init__.py +8 -6
- nautobot/extras/forms/base.py +2 -2
- nautobot/extras/forms/forms.py +139 -31
- nautobot/extras/forms/mixins.py +14 -6
- nautobot/extras/group_sync.py +3 -3
- nautobot/extras/health_checks.py +1 -2
- nautobot/extras/jobs.py +85 -18
- nautobot/extras/managers.py +3 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
- nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +22 -0
- nautobot/extras/migrations/0121_alter_team_contacts.py +17 -0
- nautobot/extras/migrations/0122_add_graphqlquery_owner_content_type.py +34 -0
- nautobot/extras/models/__init__.py +1 -1
- nautobot/extras/models/contacts.py +1 -1
- nautobot/extras/models/customfields.py +41 -23
- nautobot/extras/models/datasources.py +85 -0
- nautobot/extras/models/groups.py +11 -9
- nautobot/extras/models/jobs.py +23 -4
- nautobot/extras/models/models.py +17 -2
- nautobot/extras/models/relationships.py +17 -5
- nautobot/extras/plugins/__init__.py +13 -2
- nautobot/extras/plugins/marketplace_manifest.yml +84 -79
- nautobot/extras/plugins/tables.py +16 -14
- nautobot/extras/plugins/views.py +65 -69
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/signals.py +15 -1
- nautobot/extras/tables.py +7 -5
- nautobot/extras/templates/extras/computedfield.html +1 -1
- nautobot/extras/templates/extras/configcontext.html +1 -1
- nautobot/extras/templates/extras/configcontextschema.html +1 -1
- nautobot/extras/templates/extras/customfield.html +1 -1
- nautobot/extras/templates/extras/customlink.html +1 -1
- nautobot/extras/templates/extras/dynamicgroup.html +2 -10
- nautobot/extras/templates/extras/exporttemplate.html +1 -1
- nautobot/extras/templates/extras/gitrepository.html +1 -1
- nautobot/extras/templates/extras/graphqlquery.html +1 -1
- nautobot/extras/templates/extras/job_detail.html +17 -1
- nautobot/extras/templates/extras/job_edit.html +1 -0
- nautobot/extras/templates/extras/jobbutton_retrieve.html +1 -1
- nautobot/extras/templates/extras/jobhook.html +1 -1
- nautobot/extras/templates/extras/jobqueue_retrieve.html +1 -9
- nautobot/extras/templates/extras/jobresult.html +1 -1
- nautobot/extras/templates/extras/marketplace.html +29 -11
- nautobot/extras/templates/extras/objectchange.html +1 -1
- nautobot/extras/templates/extras/plugin_detail.html +33 -16
- nautobot/extras/templates/extras/plugins_tiles.html +21 -10
- nautobot/extras/templates/extras/relationship.html +1 -63
- nautobot/extras/templates/extras/role_retrieve.html +1 -1
- nautobot/extras/templates/extras/scheduledjob.html +1 -1
- nautobot/extras/templates/extras/secret.html +1 -1
- nautobot/extras/templates/extras/secretsgroup.html +1 -1
- nautobot/extras/templates/extras/status.html +1 -1
- nautobot/extras/templates/extras/tag.html +1 -1
- nautobot/extras/templates/extras/webhook.html +1 -1
- nautobot/extras/templatetags/job_buttons.py +4 -4
- nautobot/extras/test_jobs/api_test_job.py +1 -1
- nautobot/extras/test_jobs/atomic_transaction.py +2 -2
- nautobot/extras/test_jobs/dry_run.py +1 -1
- nautobot/extras/test_jobs/fail.py +5 -5
- nautobot/extras/test_jobs/file_output.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -1
- nautobot/extras/test_jobs/file_upload_pass.py +1 -1
- nautobot/extras/test_jobs/ipaddress_vars.py +3 -1
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
- nautobot/extras/test_jobs/log_redaction.py +1 -1
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
- nautobot/extras/test_jobs/modify_db.py +1 -1
- nautobot/extras/test_jobs/object_var_optional.py +1 -1
- nautobot/extras/test_jobs/object_var_required.py +1 -1
- nautobot/extras/test_jobs/object_vars.py +1 -1
- nautobot/extras/test_jobs/pass.py +3 -3
- nautobot/extras/test_jobs/profiling.py +1 -1
- nautobot/extras/test_jobs/relative_import.py +3 -3
- nautobot/extras/test_jobs/singleton.py +16 -0
- nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
- nautobot/extras/test_jobs/task_queues.py +1 -1
- nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_interfaces.gql +8 -0
- nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_names.gql +5 -0
- nautobot/extras/tests/git_data/02-invalid-files/graphql_queries/bad_device_names.gql +5 -0
- nautobot/extras/tests/git_helper.py +9 -1
- nautobot/extras/tests/integration/__init__.py +29 -16
- nautobot/extras/tests/integration/test_plugin_banner.py +0 -2
- nautobot/extras/tests/test_api.py +19 -13
- nautobot/extras/tests/test_customfields.py +50 -52
- nautobot/extras/tests/test_datasources.py +29 -1
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +6 -6
- nautobot/extras/tests/test_forms.py +33 -1
- nautobot/extras/tests/test_jobs.py +178 -32
- nautobot/extras/tests/test_models.py +299 -10
- nautobot/extras/tests/test_plugins.py +62 -9
- nautobot/extras/tests/test_relationships.py +120 -9
- nautobot/extras/tests/test_utils.py +22 -1
- nautobot/extras/tests/test_views.py +56 -194
- nautobot/extras/utils.py +20 -10
- nautobot/extras/views.py +85 -110
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +41 -33
- nautobot/ipam/api/views.py +68 -117
- nautobot/ipam/factory.py +1 -1
- nautobot/ipam/filters.py +3 -2
- nautobot/ipam/lookups.py +101 -62
- nautobot/ipam/models.py +74 -18
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +25 -9
- nautobot/ipam/templates/ipam/ipaddress.html +2 -10
- nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +1 -7
- nautobot/ipam/templates/ipam/ipaddress_edit.html +1 -7
- nautobot/ipam/templates/ipam/prefix.html +2 -10
- nautobot/ipam/templates/ipam/prefix_edit.html +1 -7
- nautobot/ipam/templates/ipam/rir.html +1 -1
- nautobot/ipam/templates/ipam/routetarget.html +1 -1
- nautobot/ipam/templates/ipam/service.html +1 -1
- nautobot/ipam/templates/ipam/vlan.html +2 -10
- nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
- nautobot/ipam/templates/ipam/vlangroup.html +1 -1
- nautobot/ipam/templates/ipam/vrf.html +1 -1
- nautobot/ipam/templates/ipam/vrf_edit.html +1 -7
- nautobot/ipam/tests/test_api.py +436 -3
- nautobot/ipam/tests/test_forms.py +49 -47
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +119 -34
- nautobot/ipam/tests/test_querysets.py +63 -1
- nautobot/ipam/tests/test_utils.py +41 -2
- nautobot/ipam/tests/test_views.py +3 -0
- nautobot/ipam/utils/__init__.py +54 -17
- nautobot/ipam/views.py +61 -87
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +40 -2
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/docs/404.html +131 -14
- nautobot/project-static/docs/apps/index.html +131 -14
- nautobot/project-static/docs/apps/nautobot-apps.html +132 -16
- nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.60a45f97.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.60a45f97.min.js.map} +2 -2
- nautobot/project-static/docs/assets/javascripts/workers/{search.6ce7567c.min.js → search.f8cc74c7.min.js} +1 -1
- nautobot/project-static/docs/assets/javascripts/workers/{search.6ce7567c.min.js.map → search.f8cc74c7.min.js.map} +1 -1
- nautobot/project-static/docs/assets/stylesheets/{main.6f8fc17f.min.css → main.a40c8224.min.css} +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +147 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +144 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +459 -132
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +175 -28
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +180 -31
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +138 -16
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +137 -15
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +164 -27
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +187 -38
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +193 -31
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +216 -48
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +324 -75
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +666 -175
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +194 -46
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +538 -177
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +578 -221
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +145 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +156 -25
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +492 -65
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +705 -215
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +943 -422
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +144 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +619 -200
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +474 -159
- nautobot/project-static/docs/development/apps/api/configuration-view.html +131 -14
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/global-search.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/graphql.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +153 -17
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +131 -14
- nautobot/project-static/docs/development/apps/api/prometheus.html +131 -14
- nautobot/project-static/docs/development/apps/api/setup.html +131 -14
- nautobot/project-static/docs/development/apps/api/testing.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/base-template.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/notes.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +137 -16
- nautobot/project-static/docs/development/apps/api/views/urls.html +131 -14
- nautobot/project-static/docs/development/apps/index.html +131 -14
- nautobot/project-static/docs/development/apps/migration/code-updates.html +131 -14
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +131 -14
- nautobot/project-static/docs/development/apps/migration/from-v1.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +131 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +135 -18
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +131 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +297 -25
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +131 -14
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +131 -14
- nautobot/project-static/docs/development/core/application-registry.html +131 -14
- nautobot/project-static/docs/development/core/best-practices.html +131 -14
- nautobot/project-static/docs/development/core/bootstrap-ui.html +131 -14
- nautobot/project-static/docs/development/core/caching.html +131 -14
- nautobot/project-static/docs/development/core/controllers.html +131 -14
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +158 -84
- nautobot/project-static/docs/development/core/generic-views.html +131 -14
- nautobot/project-static/docs/development/core/getting-started.html +334 -234
- nautobot/project-static/docs/development/core/homepage.html +134 -17
- nautobot/project-static/docs/development/core/index.html +131 -14
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +9829 -0
- nautobot/project-static/docs/development/core/model-checklist.html +141 -22
- nautobot/project-static/docs/development/core/model-features.html +131 -14
- nautobot/project-static/docs/development/core/natural-keys.html +131 -14
- nautobot/project-static/docs/development/core/navigation-menu.html +131 -14
- nautobot/project-static/docs/development/core/release-checklist.html +134 -17
- nautobot/project-static/docs/development/core/role-internals.html +131 -14
- nautobot/project-static/docs/development/core/settings.html +131 -14
- nautobot/project-static/docs/development/core/style-guide.html +134 -17
- nautobot/project-static/docs/development/core/templates.html +132 -15
- nautobot/project-static/docs/development/core/testing.html +131 -14
- nautobot/project-static/docs/development/core/ui-component-framework.html +454 -283
- nautobot/project-static/docs/development/core/user-preferences.html +131 -14
- nautobot/project-static/docs/development/index.html +131 -14
- nautobot/project-static/docs/development/jobs/index.html +301 -132
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +131 -14
- nautobot/project-static/docs/index.html +139 -33
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit_button.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_view.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_add.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_config.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_completed.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_pending.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_run_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_nautobot_login.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_job.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_scheduled_job_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_scheduled_job_result.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/buttons-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/cluster-type-before-after-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example_2.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example-code.png +0 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +132 -17
- nautobot/project-static/docs/overview/design_philosophy.html +131 -14
- nautobot/project-static/docs/release-notes/index.html +137 -22
- nautobot/project-static/docs/release-notes/version-1.0.html +319 -203
- nautobot/project-static/docs/release-notes/version-1.1.html +316 -200
- nautobot/project-static/docs/release-notes/version-1.2.html +391 -275
- nautobot/project-static/docs/release-notes/version-1.3.html +417 -301
- nautobot/project-static/docs/release-notes/version-1.4.html +502 -387
- nautobot/project-static/docs/release-notes/version-1.5.html +690 -576
- nautobot/project-static/docs/release-notes/version-1.6.html +989 -457
- nautobot/project-static/docs/release-notes/version-2.0.html +613 -499
- nautobot/project-static/docs/release-notes/version-2.1.html +448 -334
- nautobot/project-static/docs/release-notes/version-2.2.html +441 -327
- nautobot/project-static/docs/release-notes/version-2.3.html +1171 -451
- nautobot/project-static/docs/release-notes/version-2.4.html +800 -111
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +303 -287
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +133 -16
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +195 -18
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +134 -17
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +133 -16
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +151 -18
- nautobot/project-static/docs/user-guide/administration/installation/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +132 -15
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/services.html +131 -14
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +131 -14
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +131 -14
- nautobot/project-static/docs/user-guide/administration/security/index.html +9420 -0
- nautobot/project-static/docs/user-guide/administration/security/notices.html +9843 -0
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +131 -14
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +134 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +135 -22
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +134 -17
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +134 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +236 -34
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/central-mode.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +134 -17
- nautobot/project-static/docs/{development/core/local-k8s.html → user-guide/feature-guides/wireless-networks-and-controllers.html} +632 -566
- nautobot/project-static/docs/user-guide/index.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +135 -18
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +451 -16
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +135 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +134 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +9797 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +132 -15
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +179 -35
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +159 -15
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +131 -14
- nautobot/project-static/js/forms.js +1 -1
- nautobot/tenancy/api/views.py +9 -13
- nautobot/tenancy/templates/tenancy/tenant.html +1 -2
- nautobot/tenancy/templates/tenancy/tenantgroup.html +1 -1
- nautobot/tenancy/views.py +4 -2
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +5 -4
- nautobot/users/api/views.py +3 -3
- nautobot/virtualization/api/serializers.py +4 -4
- nautobot/virtualization/api/views.py +5 -24
- nautobot/virtualization/filters.py +20 -3
- nautobot/virtualization/models.py +1 -1
- nautobot/virtualization/tables.py +2 -2
- nautobot/virtualization/templates/virtualization/cluster.html +1 -1
- nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
- nautobot/virtualization/templates/virtualization/clustergroup.html +1 -1
- nautobot/virtualization/templates/virtualization/clustertype.html +1 -1
- nautobot/virtualization/templates/virtualization/virtualmachine.html +2 -10
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
- nautobot/virtualization/templates/virtualization/vminterface.html +1 -1
- nautobot/virtualization/tests/test_filters.py +17 -0
- nautobot/wireless/filters.py +2 -2
- nautobot/wireless/forms.py +1 -1
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +1 -9
- nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot/wireless/tests/integration/test_radio_profile.py +42 -0
- nautobot/wireless/tests/test_filters.py +29 -1
- nautobot/wireless/tests/test_views.py +22 -1
- nautobot/wireless/views.py +0 -10
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/METADATA +9 -9
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/RECORD +667 -610
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/WHEEL +1 -1
- nautobot/core/fixtures/user-data.json +0 -59
- /nautobot/project-static/docs/assets/stylesheets/{main.6f8fc17f.min.css.map → main.a40c8224.min.css.map} +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/NOTICE +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.50">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../assets/stylesheets/main.a40c8224.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
<style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
41
|
+
<style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1"/></svg>');}</style>
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
218
218
|
<div class="md-source__icon md-icon">
|
|
219
219
|
|
|
220
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
220
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
|
|
221
221
|
</div>
|
|
222
222
|
<div class="md-source__repository">
|
|
223
223
|
GitHub
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
378
378
|
<div class="md-source__icon md-icon">
|
|
379
379
|
|
|
380
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
380
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
|
|
381
381
|
</div>
|
|
382
382
|
<div class="md-source__repository">
|
|
383
383
|
GitHub
|
|
@@ -1697,6 +1697,81 @@
|
|
|
1697
1697
|
|
|
1698
1698
|
|
|
1699
1699
|
|
|
1700
|
+
|
|
1701
|
+
|
|
1702
|
+
|
|
1703
|
+
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
|
|
1707
|
+
|
|
1708
|
+
|
|
1709
|
+
|
|
1710
|
+
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
|
|
1717
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_7" >
|
|
1718
|
+
|
|
1719
|
+
|
|
1720
|
+
|
|
1721
|
+
<div class="md-nav__link md-nav__container">
|
|
1722
|
+
<a href="../user-guide/administration/security/index.html" class="md-nav__link ">
|
|
1723
|
+
|
|
1724
|
+
|
|
1725
|
+
<span class="md-ellipsis">
|
|
1726
|
+
Security
|
|
1727
|
+
</span>
|
|
1728
|
+
|
|
1729
|
+
|
|
1730
|
+
</a>
|
|
1731
|
+
|
|
1732
|
+
|
|
1733
|
+
<label class="md-nav__link " for="__nav_2_1_7" id="__nav_2_1_7_label" tabindex="0">
|
|
1734
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1735
|
+
</label>
|
|
1736
|
+
|
|
1737
|
+
</div>
|
|
1738
|
+
|
|
1739
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_7_label" aria-expanded="false">
|
|
1740
|
+
<label class="md-nav__title" for="__nav_2_1_7">
|
|
1741
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1742
|
+
Security
|
|
1743
|
+
</label>
|
|
1744
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1745
|
+
|
|
1746
|
+
|
|
1747
|
+
|
|
1748
|
+
|
|
1749
|
+
|
|
1750
|
+
|
|
1751
|
+
|
|
1752
|
+
<li class="md-nav__item">
|
|
1753
|
+
<a href="../user-guide/administration/security/notices.html" class="md-nav__link">
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
<span class="md-ellipsis">
|
|
1757
|
+
Notices
|
|
1758
|
+
</span>
|
|
1759
|
+
|
|
1760
|
+
|
|
1761
|
+
</a>
|
|
1762
|
+
</li>
|
|
1763
|
+
|
|
1764
|
+
|
|
1765
|
+
|
|
1766
|
+
|
|
1767
|
+
</ul>
|
|
1768
|
+
</nav>
|
|
1769
|
+
|
|
1770
|
+
</li>
|
|
1771
|
+
|
|
1772
|
+
|
|
1773
|
+
|
|
1774
|
+
|
|
1700
1775
|
</ul>
|
|
1701
1776
|
</nav>
|
|
1702
1777
|
|
|
@@ -2112,6 +2187,27 @@
|
|
|
2112
2187
|
|
|
2113
2188
|
|
|
2114
2189
|
|
|
2190
|
+
|
|
2191
|
+
|
|
2192
|
+
|
|
2193
|
+
|
|
2194
|
+
|
|
2195
|
+
|
|
2196
|
+
<li class="md-nav__item">
|
|
2197
|
+
<a href="../user-guide/feature-guides/wireless-networks-and-controllers.html" class="md-nav__link">
|
|
2198
|
+
|
|
2199
|
+
|
|
2200
|
+
<span class="md-ellipsis">
|
|
2201
|
+
Wireless Networks and Controllers
|
|
2202
|
+
</span>
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
</a>
|
|
2206
|
+
</li>
|
|
2207
|
+
|
|
2208
|
+
|
|
2209
|
+
|
|
2210
|
+
|
|
2115
2211
|
</ul>
|
|
2116
2212
|
</nav>
|
|
2117
2213
|
|
|
@@ -5131,6 +5227,27 @@
|
|
|
5131
5227
|
|
|
5132
5228
|
|
|
5133
5229
|
|
|
5230
|
+
<li class="md-nav__item">
|
|
5231
|
+
<a href="../user-guide/platform-functionality/jobs/kubernetes-job-support.html" class="md-nav__link">
|
|
5232
|
+
|
|
5233
|
+
|
|
5234
|
+
<span class="md-ellipsis">
|
|
5235
|
+
Kubernetes Job Support
|
|
5236
|
+
</span>
|
|
5237
|
+
|
|
5238
|
+
|
|
5239
|
+
</a>
|
|
5240
|
+
</li>
|
|
5241
|
+
|
|
5242
|
+
|
|
5243
|
+
|
|
5244
|
+
|
|
5245
|
+
|
|
5246
|
+
|
|
5247
|
+
|
|
5248
|
+
|
|
5249
|
+
|
|
5250
|
+
|
|
5134
5251
|
<li class="md-nav__item">
|
|
5135
5252
|
<a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
5136
5253
|
|
|
@@ -8055,11 +8172,11 @@
|
|
|
8055
8172
|
|
|
8056
8173
|
|
|
8057
8174
|
<li class="md-nav__item">
|
|
8058
|
-
<a href="../development/core/
|
|
8175
|
+
<a href="../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
|
|
8059
8176
|
|
|
8060
8177
|
|
|
8061
8178
|
<span class="md-ellipsis">
|
|
8062
|
-
|
|
8179
|
+
Minikube Dev Environment for K8s Jobs
|
|
8063
8180
|
</span>
|
|
8064
8181
|
|
|
8065
8182
|
|
|
@@ -8659,115 +8776,97 @@
|
|
|
8659
8776
|
</li>
|
|
8660
8777
|
|
|
8661
8778
|
<li class="md-nav__item">
|
|
8662
|
-
<a href="#
|
|
8779
|
+
<a href="#v2316-2025-01-06" class="md-nav__link">
|
|
8663
8780
|
<span class="md-ellipsis">
|
|
8664
|
-
v2.3.
|
|
8781
|
+
v2.3.16 (2025-01-06)
|
|
8665
8782
|
</span>
|
|
8666
8783
|
</a>
|
|
8667
8784
|
|
|
8668
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
8785
|
+
<nav class="md-nav" aria-label="v2.3.16 (2025-01-06)">
|
|
8669
8786
|
<ul class="md-nav__list">
|
|
8670
8787
|
|
|
8671
8788
|
<li class="md-nav__item">
|
|
8672
|
-
<a href="#
|
|
8789
|
+
<a href="#fixed-in-v2316" class="md-nav__link">
|
|
8673
8790
|
<span class="md-ellipsis">
|
|
8674
|
-
|
|
8791
|
+
Fixed in v2.3.16
|
|
8675
8792
|
</span>
|
|
8676
8793
|
</a>
|
|
8677
8794
|
|
|
8678
8795
|
</li>
|
|
8679
8796
|
|
|
8680
8797
|
<li class="md-nav__item">
|
|
8681
|
-
<a href="#
|
|
8798
|
+
<a href="#housekeeping-in-v2316" class="md-nav__link">
|
|
8682
8799
|
<span class="md-ellipsis">
|
|
8683
|
-
|
|
8800
|
+
Housekeeping in v2.3.16
|
|
8684
8801
|
</span>
|
|
8685
8802
|
</a>
|
|
8686
8803
|
|
|
8687
8804
|
</li>
|
|
8688
8805
|
|
|
8689
|
-
|
|
8690
|
-
|
|
8691
|
-
<span class="md-ellipsis">
|
|
8692
|
-
Dependencies
|
|
8693
|
-
</span>
|
|
8694
|
-
</a>
|
|
8806
|
+
</ul>
|
|
8807
|
+
</nav>
|
|
8695
8808
|
|
|
8696
8809
|
</li>
|
|
8697
|
-
|
|
8698
|
-
|
|
8699
|
-
<a href="#
|
|
8810
|
+
|
|
8811
|
+
<li class="md-nav__item">
|
|
8812
|
+
<a href="#v2315-2025-01-02" class="md-nav__link">
|
|
8700
8813
|
<span class="md-ellipsis">
|
|
8701
|
-
|
|
8814
|
+
v2.3.15 (2025-01-02)
|
|
8702
8815
|
</span>
|
|
8703
8816
|
</a>
|
|
8704
8817
|
|
|
8705
|
-
|
|
8818
|
+
<nav class="md-nav" aria-label="v2.3.15 (2025-01-02)">
|
|
8819
|
+
<ul class="md-nav__list">
|
|
8706
8820
|
|
|
8707
8821
|
<li class="md-nav__item">
|
|
8708
|
-
<a href="#
|
|
8822
|
+
<a href="#security-in-v2315" class="md-nav__link">
|
|
8709
8823
|
<span class="md-ellipsis">
|
|
8710
|
-
|
|
8824
|
+
Security in v2.3.15
|
|
8711
8825
|
</span>
|
|
8712
8826
|
</a>
|
|
8713
8827
|
|
|
8714
8828
|
</li>
|
|
8715
8829
|
|
|
8716
|
-
</ul>
|
|
8717
|
-
</nav>
|
|
8718
|
-
|
|
8719
|
-
</li>
|
|
8720
|
-
|
|
8721
|
-
<li class="md-nav__item">
|
|
8722
|
-
<a href="#v2311-2024-11-12" class="md-nav__link">
|
|
8723
|
-
<span class="md-ellipsis">
|
|
8724
|
-
v2.3.11 (2024-11-12)
|
|
8725
|
-
</span>
|
|
8726
|
-
</a>
|
|
8727
|
-
|
|
8728
|
-
<nav class="md-nav" aria-label="v2.3.11 (2024-11-12)">
|
|
8729
|
-
<ul class="md-nav__list">
|
|
8730
|
-
|
|
8731
8830
|
<li class="md-nav__item">
|
|
8732
|
-
<a href="#
|
|
8831
|
+
<a href="#added-in-v2315" class="md-nav__link">
|
|
8733
8832
|
<span class="md-ellipsis">
|
|
8734
|
-
Added
|
|
8833
|
+
Added in v2.3.15
|
|
8735
8834
|
</span>
|
|
8736
8835
|
</a>
|
|
8737
8836
|
|
|
8738
8837
|
</li>
|
|
8739
8838
|
|
|
8740
8839
|
<li class="md-nav__item">
|
|
8741
|
-
<a href="#
|
|
8840
|
+
<a href="#changed-in-v2315" class="md-nav__link">
|
|
8742
8841
|
<span class="md-ellipsis">
|
|
8743
|
-
Changed
|
|
8842
|
+
Changed in v2.3.15
|
|
8744
8843
|
</span>
|
|
8745
8844
|
</a>
|
|
8746
8845
|
|
|
8747
8846
|
</li>
|
|
8748
8847
|
|
|
8749
8848
|
<li class="md-nav__item">
|
|
8750
|
-
<a href="#
|
|
8849
|
+
<a href="#fixed-in-v2315" class="md-nav__link">
|
|
8751
8850
|
<span class="md-ellipsis">
|
|
8752
|
-
Fixed
|
|
8851
|
+
Fixed in v2.3.15
|
|
8753
8852
|
</span>
|
|
8754
8853
|
</a>
|
|
8755
8854
|
|
|
8756
8855
|
</li>
|
|
8757
8856
|
|
|
8758
8857
|
<li class="md-nav__item">
|
|
8759
|
-
<a href="#
|
|
8858
|
+
<a href="#dependencies-in-v2315" class="md-nav__link">
|
|
8760
8859
|
<span class="md-ellipsis">
|
|
8761
|
-
|
|
8860
|
+
Dependencies in v2.3.15
|
|
8762
8861
|
</span>
|
|
8763
8862
|
</a>
|
|
8764
8863
|
|
|
8765
8864
|
</li>
|
|
8766
8865
|
|
|
8767
8866
|
<li class="md-nav__item">
|
|
8768
|
-
<a href="#
|
|
8867
|
+
<a href="#housekeeping-in-v2315" class="md-nav__link">
|
|
8769
8868
|
<span class="md-ellipsis">
|
|
8770
|
-
Housekeeping
|
|
8869
|
+
Housekeeping in v2.3.15
|
|
8771
8870
|
</span>
|
|
8772
8871
|
</a>
|
|
8773
8872
|
|
|
@@ -8779,55 +8878,55 @@
|
|
|
8779
8878
|
</li>
|
|
8780
8879
|
|
|
8781
8880
|
<li class="md-nav__item">
|
|
8782
|
-
<a href="#
|
|
8881
|
+
<a href="#v2314-2024-12-19" class="md-nav__link">
|
|
8783
8882
|
<span class="md-ellipsis">
|
|
8784
|
-
v2.3.
|
|
8883
|
+
v2.3.14 (2024-12-19)
|
|
8785
8884
|
</span>
|
|
8786
8885
|
</a>
|
|
8787
8886
|
|
|
8788
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
8887
|
+
<nav class="md-nav" aria-label="v2.3.14 (2024-12-19)">
|
|
8789
8888
|
<ul class="md-nav__list">
|
|
8790
8889
|
|
|
8791
8890
|
<li class="md-nav__item">
|
|
8792
|
-
<a href="#
|
|
8891
|
+
<a href="#added-in-v2314" class="md-nav__link">
|
|
8793
8892
|
<span class="md-ellipsis">
|
|
8794
|
-
Added
|
|
8893
|
+
Added in v2.3.14
|
|
8795
8894
|
</span>
|
|
8796
8895
|
</a>
|
|
8797
8896
|
|
|
8798
8897
|
</li>
|
|
8799
8898
|
|
|
8800
8899
|
<li class="md-nav__item">
|
|
8801
|
-
<a href="#
|
|
8900
|
+
<a href="#changed-in-v2314" class="md-nav__link">
|
|
8802
8901
|
<span class="md-ellipsis">
|
|
8803
|
-
Changed
|
|
8902
|
+
Changed in v2.3.14
|
|
8804
8903
|
</span>
|
|
8805
8904
|
</a>
|
|
8806
8905
|
|
|
8807
8906
|
</li>
|
|
8808
8907
|
|
|
8809
8908
|
<li class="md-nav__item">
|
|
8810
|
-
<a href="#
|
|
8909
|
+
<a href="#fixed-in-v2314" class="md-nav__link">
|
|
8811
8910
|
<span class="md-ellipsis">
|
|
8812
|
-
Fixed
|
|
8911
|
+
Fixed in v2.3.14
|
|
8813
8912
|
</span>
|
|
8814
8913
|
</a>
|
|
8815
8914
|
|
|
8816
8915
|
</li>
|
|
8817
8916
|
|
|
8818
8917
|
<li class="md-nav__item">
|
|
8819
|
-
<a href="#
|
|
8918
|
+
<a href="#documentation-in-v2314" class="md-nav__link">
|
|
8820
8919
|
<span class="md-ellipsis">
|
|
8821
|
-
|
|
8920
|
+
Documentation in v2.3.14
|
|
8822
8921
|
</span>
|
|
8823
8922
|
</a>
|
|
8824
8923
|
|
|
8825
8924
|
</li>
|
|
8826
8925
|
|
|
8827
8926
|
<li class="md-nav__item">
|
|
8828
|
-
<a href="#
|
|
8927
|
+
<a href="#housekeeping-in-v2314" class="md-nav__link">
|
|
8829
8928
|
<span class="md-ellipsis">
|
|
8830
|
-
Housekeeping
|
|
8929
|
+
Housekeeping in v2.3.14
|
|
8831
8930
|
</span>
|
|
8832
8931
|
</a>
|
|
8833
8932
|
|
|
@@ -8839,79 +8938,73 @@
|
|
|
8839
8938
|
</li>
|
|
8840
8939
|
|
|
8841
8940
|
<li class="md-nav__item">
|
|
8842
|
-
<a href="#
|
|
8941
|
+
<a href="#v2313-2024-12-10" class="md-nav__link">
|
|
8843
8942
|
<span class="md-ellipsis">
|
|
8844
|
-
v2.3.
|
|
8943
|
+
v2.3.13 (2024-12-10)
|
|
8845
8944
|
</span>
|
|
8846
8945
|
</a>
|
|
8847
8946
|
|
|
8848
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
8947
|
+
<nav class="md-nav" aria-label="v2.3.13 (2024-12-10)">
|
|
8849
8948
|
<ul class="md-nav__list">
|
|
8850
8949
|
|
|
8851
8950
|
<li class="md-nav__item">
|
|
8852
|
-
<a href="#
|
|
8951
|
+
<a href="#security-in-v2313" class="md-nav__link">
|
|
8853
8952
|
<span class="md-ellipsis">
|
|
8854
|
-
|
|
8953
|
+
Security in v2.3.13
|
|
8855
8954
|
</span>
|
|
8856
8955
|
</a>
|
|
8857
8956
|
|
|
8858
8957
|
</li>
|
|
8859
8958
|
|
|
8860
8959
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#
|
|
8960
|
+
<a href="#added-in-v2313" class="md-nav__link">
|
|
8862
8961
|
<span class="md-ellipsis">
|
|
8863
|
-
|
|
8962
|
+
Added in v2.3.13
|
|
8864
8963
|
</span>
|
|
8865
8964
|
</a>
|
|
8866
8965
|
|
|
8867
8966
|
</li>
|
|
8868
8967
|
|
|
8869
8968
|
<li class="md-nav__item">
|
|
8870
|
-
<a href="#
|
|
8969
|
+
<a href="#changed-in-v2313" class="md-nav__link">
|
|
8871
8970
|
<span class="md-ellipsis">
|
|
8872
|
-
|
|
8971
|
+
Changed in v2.3.13
|
|
8873
8972
|
</span>
|
|
8874
8973
|
</a>
|
|
8875
8974
|
|
|
8876
8975
|
</li>
|
|
8877
8976
|
|
|
8878
8977
|
<li class="md-nav__item">
|
|
8879
|
-
<a href="#
|
|
8978
|
+
<a href="#fixed-in-v2313" class="md-nav__link">
|
|
8880
8979
|
<span class="md-ellipsis">
|
|
8881
|
-
|
|
8980
|
+
Fixed in v2.3.13
|
|
8882
8981
|
</span>
|
|
8883
8982
|
</a>
|
|
8884
8983
|
|
|
8885
8984
|
</li>
|
|
8886
8985
|
|
|
8887
8986
|
<li class="md-nav__item">
|
|
8888
|
-
<a href="#
|
|
8987
|
+
<a href="#dependencies-in-v2313" class="md-nav__link">
|
|
8889
8988
|
<span class="md-ellipsis">
|
|
8890
|
-
|
|
8989
|
+
Dependencies in v2.3.13
|
|
8891
8990
|
</span>
|
|
8892
8991
|
</a>
|
|
8893
8992
|
|
|
8894
8993
|
</li>
|
|
8895
8994
|
|
|
8896
|
-
|
|
8897
|
-
|
|
8898
|
-
|
|
8899
|
-
</li>
|
|
8900
|
-
|
|
8901
|
-
<li class="md-nav__item">
|
|
8902
|
-
<a href="#v238-2024-10-18" class="md-nav__link">
|
|
8995
|
+
<li class="md-nav__item">
|
|
8996
|
+
<a href="#documentation-in-v2313" class="md-nav__link">
|
|
8903
8997
|
<span class="md-ellipsis">
|
|
8904
|
-
v2.3.
|
|
8998
|
+
Documentation in v2.3.13
|
|
8905
8999
|
</span>
|
|
8906
9000
|
</a>
|
|
8907
9001
|
|
|
8908
|
-
|
|
8909
|
-
<ul class="md-nav__list">
|
|
9002
|
+
</li>
|
|
8910
9003
|
|
|
8911
9004
|
<li class="md-nav__item">
|
|
8912
|
-
<a href="#
|
|
9005
|
+
<a href="#housekeeping-in-v2313" class="md-nav__link">
|
|
8913
9006
|
<span class="md-ellipsis">
|
|
8914
|
-
|
|
9007
|
+
Housekeeping in v2.3.13
|
|
8915
9008
|
</span>
|
|
8916
9009
|
</a>
|
|
8917
9010
|
|
|
@@ -8923,55 +9016,55 @@
|
|
|
8923
9016
|
</li>
|
|
8924
9017
|
|
|
8925
9018
|
<li class="md-nav__item">
|
|
8926
|
-
<a href="#
|
|
9019
|
+
<a href="#v2312-2024-11-25" class="md-nav__link">
|
|
8927
9020
|
<span class="md-ellipsis">
|
|
8928
|
-
v2.3.
|
|
9021
|
+
v2.3.12 (2024-11-25)
|
|
8929
9022
|
</span>
|
|
8930
9023
|
</a>
|
|
8931
9024
|
|
|
8932
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
9025
|
+
<nav class="md-nav" aria-label="v2.3.12 (2024-11-25)">
|
|
8933
9026
|
<ul class="md-nav__list">
|
|
8934
9027
|
|
|
8935
9028
|
<li class="md-nav__item">
|
|
8936
|
-
<a href="#
|
|
9029
|
+
<a href="#added-in-v2312" class="md-nav__link">
|
|
8937
9030
|
<span class="md-ellipsis">
|
|
8938
|
-
Added
|
|
9031
|
+
Added in v2.3.12
|
|
8939
9032
|
</span>
|
|
8940
9033
|
</a>
|
|
8941
9034
|
|
|
8942
9035
|
</li>
|
|
8943
9036
|
|
|
8944
9037
|
<li class="md-nav__item">
|
|
8945
|
-
<a href="#
|
|
9038
|
+
<a href="#fixed-in-v2312" class="md-nav__link">
|
|
8946
9039
|
<span class="md-ellipsis">
|
|
8947
|
-
|
|
9040
|
+
Fixed in v2.3.12
|
|
8948
9041
|
</span>
|
|
8949
9042
|
</a>
|
|
8950
9043
|
|
|
8951
9044
|
</li>
|
|
8952
9045
|
|
|
8953
9046
|
<li class="md-nav__item">
|
|
8954
|
-
<a href="#
|
|
9047
|
+
<a href="#dependencies-in-v2312" class="md-nav__link">
|
|
8955
9048
|
<span class="md-ellipsis">
|
|
8956
|
-
|
|
9049
|
+
Dependencies in v2.3.12
|
|
8957
9050
|
</span>
|
|
8958
9051
|
</a>
|
|
8959
9052
|
|
|
8960
9053
|
</li>
|
|
8961
9054
|
|
|
8962
9055
|
<li class="md-nav__item">
|
|
8963
|
-
<a href="#
|
|
9056
|
+
<a href="#documentation-in-v2312" class="md-nav__link">
|
|
8964
9057
|
<span class="md-ellipsis">
|
|
8965
|
-
|
|
9058
|
+
Documentation in v2.3.12
|
|
8966
9059
|
</span>
|
|
8967
9060
|
</a>
|
|
8968
9061
|
|
|
8969
9062
|
</li>
|
|
8970
9063
|
|
|
8971
9064
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
9065
|
+
<a href="#housekeeping-in-v2312" class="md-nav__link">
|
|
8973
9066
|
<span class="md-ellipsis">
|
|
8974
|
-
Housekeeping
|
|
9067
|
+
Housekeeping in v2.3.12
|
|
8975
9068
|
</span>
|
|
8976
9069
|
</a>
|
|
8977
9070
|
|
|
@@ -8983,46 +9076,55 @@
|
|
|
8983
9076
|
</li>
|
|
8984
9077
|
|
|
8985
9078
|
<li class="md-nav__item">
|
|
8986
|
-
<a href="#
|
|
9079
|
+
<a href="#v2311-2024-11-12" class="md-nav__link">
|
|
8987
9080
|
<span class="md-ellipsis">
|
|
8988
|
-
v2.3.
|
|
9081
|
+
v2.3.11 (2024-11-12)
|
|
8989
9082
|
</span>
|
|
8990
9083
|
</a>
|
|
8991
9084
|
|
|
8992
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
9085
|
+
<nav class="md-nav" aria-label="v2.3.11 (2024-11-12)">
|
|
8993
9086
|
<ul class="md-nav__list">
|
|
8994
9087
|
|
|
8995
9088
|
<li class="md-nav__item">
|
|
8996
|
-
<a href="#
|
|
9089
|
+
<a href="#added-in-v2311" class="md-nav__link">
|
|
8997
9090
|
<span class="md-ellipsis">
|
|
8998
|
-
Added
|
|
9091
|
+
Added in v2.3.11
|
|
9092
|
+
</span>
|
|
9093
|
+
</a>
|
|
9094
|
+
|
|
9095
|
+
</li>
|
|
9096
|
+
|
|
9097
|
+
<li class="md-nav__item">
|
|
9098
|
+
<a href="#changed-in-v2311" class="md-nav__link">
|
|
9099
|
+
<span class="md-ellipsis">
|
|
9100
|
+
Changed in v2.3.11
|
|
8999
9101
|
</span>
|
|
9000
9102
|
</a>
|
|
9001
9103
|
|
|
9002
9104
|
</li>
|
|
9003
9105
|
|
|
9004
9106
|
<li class="md-nav__item">
|
|
9005
|
-
<a href="#
|
|
9107
|
+
<a href="#fixed-in-v2311" class="md-nav__link">
|
|
9006
9108
|
<span class="md-ellipsis">
|
|
9007
|
-
Fixed
|
|
9109
|
+
Fixed in v2.3.11
|
|
9008
9110
|
</span>
|
|
9009
9111
|
</a>
|
|
9010
9112
|
|
|
9011
9113
|
</li>
|
|
9012
9114
|
|
|
9013
9115
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
9116
|
+
<a href="#documentation-in-v2311" class="md-nav__link">
|
|
9015
9117
|
<span class="md-ellipsis">
|
|
9016
|
-
Documentation
|
|
9118
|
+
Documentation in v2.3.11
|
|
9017
9119
|
</span>
|
|
9018
9120
|
</a>
|
|
9019
9121
|
|
|
9020
9122
|
</li>
|
|
9021
9123
|
|
|
9022
9124
|
<li class="md-nav__item">
|
|
9023
|
-
<a href="#
|
|
9125
|
+
<a href="#housekeeping-in-v2311" class="md-nav__link">
|
|
9024
9126
|
<span class="md-ellipsis">
|
|
9025
|
-
Housekeeping
|
|
9127
|
+
Housekeeping in v2.3.11
|
|
9026
9128
|
</span>
|
|
9027
9129
|
</a>
|
|
9028
9130
|
|
|
@@ -9034,64 +9136,55 @@
|
|
|
9034
9136
|
</li>
|
|
9035
9137
|
|
|
9036
9138
|
<li class="md-nav__item">
|
|
9037
|
-
<a href="#
|
|
9139
|
+
<a href="#v2310-2024-10-29" class="md-nav__link">
|
|
9038
9140
|
<span class="md-ellipsis">
|
|
9039
|
-
v2.3.
|
|
9141
|
+
v2.3.10 (2024-10-29)
|
|
9040
9142
|
</span>
|
|
9041
9143
|
</a>
|
|
9042
9144
|
|
|
9043
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
9145
|
+
<nav class="md-nav" aria-label="v2.3.10 (2024-10-29)">
|
|
9044
9146
|
<ul class="md-nav__list">
|
|
9045
9147
|
|
|
9046
9148
|
<li class="md-nav__item">
|
|
9047
|
-
<a href="#
|
|
9048
|
-
<span class="md-ellipsis">
|
|
9049
|
-
Added
|
|
9050
|
-
</span>
|
|
9051
|
-
</a>
|
|
9052
|
-
|
|
9053
|
-
</li>
|
|
9054
|
-
|
|
9055
|
-
<li class="md-nav__item">
|
|
9056
|
-
<a href="#changed_5" class="md-nav__link">
|
|
9149
|
+
<a href="#added-in-v2310" class="md-nav__link">
|
|
9057
9150
|
<span class="md-ellipsis">
|
|
9058
|
-
|
|
9151
|
+
Added in v2.3.10
|
|
9059
9152
|
</span>
|
|
9060
9153
|
</a>
|
|
9061
9154
|
|
|
9062
9155
|
</li>
|
|
9063
9156
|
|
|
9064
9157
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9158
|
+
<a href="#changed-in-v2310" class="md-nav__link">
|
|
9066
9159
|
<span class="md-ellipsis">
|
|
9067
|
-
|
|
9160
|
+
Changed in v2.3.10
|
|
9068
9161
|
</span>
|
|
9069
9162
|
</a>
|
|
9070
9163
|
|
|
9071
9164
|
</li>
|
|
9072
9165
|
|
|
9073
9166
|
<li class="md-nav__item">
|
|
9074
|
-
<a href="#
|
|
9167
|
+
<a href="#fixed-in-v2310" class="md-nav__link">
|
|
9075
9168
|
<span class="md-ellipsis">
|
|
9076
|
-
|
|
9169
|
+
Fixed in v2.3.10
|
|
9077
9170
|
</span>
|
|
9078
9171
|
</a>
|
|
9079
9172
|
|
|
9080
9173
|
</li>
|
|
9081
9174
|
|
|
9082
9175
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9176
|
+
<a href="#dependencies-in-v2310" class="md-nav__link">
|
|
9084
9177
|
<span class="md-ellipsis">
|
|
9085
|
-
|
|
9178
|
+
Dependencies in v2.3.10
|
|
9086
9179
|
</span>
|
|
9087
9180
|
</a>
|
|
9088
9181
|
|
|
9089
9182
|
</li>
|
|
9090
9183
|
|
|
9091
9184
|
<li class="md-nav__item">
|
|
9092
|
-
<a href="#
|
|
9185
|
+
<a href="#housekeeping-in-v2310" class="md-nav__link">
|
|
9093
9186
|
<span class="md-ellipsis">
|
|
9094
|
-
Housekeeping
|
|
9187
|
+
Housekeeping in v2.3.10
|
|
9095
9188
|
</span>
|
|
9096
9189
|
</a>
|
|
9097
9190
|
|
|
@@ -9103,55 +9196,55 @@
|
|
|
9103
9196
|
</li>
|
|
9104
9197
|
|
|
9105
9198
|
<li class="md-nav__item">
|
|
9106
|
-
<a href="#
|
|
9199
|
+
<a href="#v239-2024-10-28" class="md-nav__link">
|
|
9107
9200
|
<span class="md-ellipsis">
|
|
9108
|
-
v2.3.
|
|
9201
|
+
v2.3.9 (2024-10-28)
|
|
9109
9202
|
</span>
|
|
9110
9203
|
</a>
|
|
9111
9204
|
|
|
9112
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
9205
|
+
<nav class="md-nav" aria-label="v2.3.9 (2024-10-28)">
|
|
9113
9206
|
<ul class="md-nav__list">
|
|
9114
9207
|
|
|
9115
9208
|
<li class="md-nav__item">
|
|
9116
|
-
<a href="#
|
|
9209
|
+
<a href="#added-in-v239" class="md-nav__link">
|
|
9117
9210
|
<span class="md-ellipsis">
|
|
9118
|
-
Added
|
|
9211
|
+
Added in v2.3.9
|
|
9119
9212
|
</span>
|
|
9120
9213
|
</a>
|
|
9121
9214
|
|
|
9122
9215
|
</li>
|
|
9123
9216
|
|
|
9124
9217
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9218
|
+
<a href="#changed-in-v239" class="md-nav__link">
|
|
9126
9219
|
<span class="md-ellipsis">
|
|
9127
|
-
Changed
|
|
9220
|
+
Changed in v2.3.9
|
|
9128
9221
|
</span>
|
|
9129
9222
|
</a>
|
|
9130
9223
|
|
|
9131
9224
|
</li>
|
|
9132
9225
|
|
|
9133
9226
|
<li class="md-nav__item">
|
|
9134
|
-
<a href="#
|
|
9227
|
+
<a href="#fixed-in-v239" class="md-nav__link">
|
|
9135
9228
|
<span class="md-ellipsis">
|
|
9136
|
-
Fixed
|
|
9229
|
+
Fixed in v2.3.9
|
|
9137
9230
|
</span>
|
|
9138
9231
|
</a>
|
|
9139
9232
|
|
|
9140
9233
|
</li>
|
|
9141
9234
|
|
|
9142
9235
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
9236
|
+
<a href="#dependencies-in-v239" class="md-nav__link">
|
|
9144
9237
|
<span class="md-ellipsis">
|
|
9145
|
-
|
|
9238
|
+
Dependencies in v2.3.9
|
|
9146
9239
|
</span>
|
|
9147
9240
|
</a>
|
|
9148
9241
|
|
|
9149
9242
|
</li>
|
|
9150
9243
|
|
|
9151
9244
|
<li class="md-nav__item">
|
|
9152
|
-
<a href="#
|
|
9245
|
+
<a href="#housekeeping-in-v239" class="md-nav__link">
|
|
9153
9246
|
<span class="md-ellipsis">
|
|
9154
|
-
Housekeeping
|
|
9247
|
+
Housekeeping in v2.3.9
|
|
9155
9248
|
</span>
|
|
9156
9249
|
</a>
|
|
9157
9250
|
|
|
@@ -9163,97 +9256,79 @@
|
|
|
9163
9256
|
</li>
|
|
9164
9257
|
|
|
9165
9258
|
<li class="md-nav__item">
|
|
9166
|
-
<a href="#
|
|
9259
|
+
<a href="#v238-2024-10-18" class="md-nav__link">
|
|
9167
9260
|
<span class="md-ellipsis">
|
|
9168
|
-
v2.3.
|
|
9261
|
+
v2.3.8 (2024-10-18)
|
|
9169
9262
|
</span>
|
|
9170
9263
|
</a>
|
|
9171
9264
|
|
|
9172
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
9265
|
+
<nav class="md-nav" aria-label="v2.3.8 (2024-10-18)">
|
|
9173
9266
|
<ul class="md-nav__list">
|
|
9174
9267
|
|
|
9175
9268
|
<li class="md-nav__item">
|
|
9176
|
-
<a href="#
|
|
9269
|
+
<a href="#fixed-in-v238" class="md-nav__link">
|
|
9177
9270
|
<span class="md-ellipsis">
|
|
9178
|
-
|
|
9271
|
+
Fixed in v2.3.8
|
|
9179
9272
|
</span>
|
|
9180
9273
|
</a>
|
|
9181
9274
|
|
|
9182
9275
|
</li>
|
|
9183
9276
|
|
|
9184
|
-
|
|
9185
|
-
|
|
9186
|
-
<span class="md-ellipsis">
|
|
9187
|
-
Fixed
|
|
9188
|
-
</span>
|
|
9189
|
-
</a>
|
|
9277
|
+
</ul>
|
|
9278
|
+
</nav>
|
|
9190
9279
|
|
|
9191
9280
|
</li>
|
|
9192
|
-
|
|
9193
|
-
|
|
9194
|
-
<a href="#
|
|
9281
|
+
|
|
9282
|
+
<li class="md-nav__item">
|
|
9283
|
+
<a href="#v237-2024-10-15" class="md-nav__link">
|
|
9195
9284
|
<span class="md-ellipsis">
|
|
9196
|
-
|
|
9285
|
+
v2.3.7 (2024-10-15)
|
|
9197
9286
|
</span>
|
|
9198
9287
|
</a>
|
|
9199
9288
|
|
|
9200
|
-
|
|
9289
|
+
<nav class="md-nav" aria-label="v2.3.7 (2024-10-15)">
|
|
9290
|
+
<ul class="md-nav__list">
|
|
9201
9291
|
|
|
9202
9292
|
<li class="md-nav__item">
|
|
9203
|
-
<a href="#
|
|
9293
|
+
<a href="#added-in-v237" class="md-nav__link">
|
|
9204
9294
|
<span class="md-ellipsis">
|
|
9205
|
-
|
|
9295
|
+
Added in v2.3.7
|
|
9206
9296
|
</span>
|
|
9207
9297
|
</a>
|
|
9208
9298
|
|
|
9209
9299
|
</li>
|
|
9210
9300
|
|
|
9211
|
-
</ul>
|
|
9212
|
-
</nav>
|
|
9213
|
-
|
|
9214
|
-
</li>
|
|
9215
|
-
|
|
9216
|
-
<li class="md-nav__item">
|
|
9217
|
-
<a href="#v232-2024-09-03" class="md-nav__link">
|
|
9218
|
-
<span class="md-ellipsis">
|
|
9219
|
-
v2.3.2 (2024-09-03)
|
|
9220
|
-
</span>
|
|
9221
|
-
</a>
|
|
9222
|
-
|
|
9223
|
-
<nav class="md-nav" aria-label="v2.3.2 (2024-09-03)">
|
|
9224
|
-
<ul class="md-nav__list">
|
|
9225
|
-
|
|
9226
9301
|
<li class="md-nav__item">
|
|
9227
|
-
<a href="#
|
|
9302
|
+
<a href="#changed-in-v237" class="md-nav__link">
|
|
9228
9303
|
<span class="md-ellipsis">
|
|
9229
|
-
|
|
9304
|
+
Changed in v2.3.7
|
|
9230
9305
|
</span>
|
|
9231
9306
|
</a>
|
|
9232
9307
|
|
|
9233
9308
|
</li>
|
|
9234
9309
|
|
|
9235
9310
|
<li class="md-nav__item">
|
|
9236
|
-
<a href="#
|
|
9311
|
+
<a href="#fixed-in-v237" class="md-nav__link">
|
|
9237
9312
|
<span class="md-ellipsis">
|
|
9238
|
-
|
|
9313
|
+
Fixed in v2.3.7
|
|
9239
9314
|
</span>
|
|
9240
9315
|
</a>
|
|
9241
9316
|
|
|
9242
9317
|
</li>
|
|
9243
9318
|
|
|
9244
9319
|
<li class="md-nav__item">
|
|
9245
|
-
<a href="#
|
|
9320
|
+
<a href="#dependencies-in-v237" class="md-nav__link">
|
|
9246
9321
|
<span class="md-ellipsis">
|
|
9247
|
-
|
|
9322
|
+
Dependencies in v2.3.7
|
|
9248
9323
|
</span>
|
|
9249
9324
|
</a>
|
|
9250
9325
|
|
|
9251
9326
|
</li>
|
|
9252
9327
|
|
|
9253
9328
|
<li class="md-nav__item">
|
|
9254
|
-
<a href="#
|
|
9329
|
+
<a href="#housekeeping-in-v237" class="md-nav__link">
|
|
9255
9330
|
<span class="md-ellipsis">
|
|
9256
|
-
Housekeeping
|
|
9331
|
+
Housekeeping in v2.3.7
|
|
9257
9332
|
</span>
|
|
9258
9333
|
</a>
|
|
9259
9334
|
|
|
@@ -9265,46 +9340,46 @@
|
|
|
9265
9340
|
</li>
|
|
9266
9341
|
|
|
9267
9342
|
<li class="md-nav__item">
|
|
9268
|
-
<a href="#
|
|
9343
|
+
<a href="#v236-2024-10-02" class="md-nav__link">
|
|
9269
9344
|
<span class="md-ellipsis">
|
|
9270
|
-
v2.3.
|
|
9345
|
+
v2.3.6 (2024-10-02)
|
|
9271
9346
|
</span>
|
|
9272
9347
|
</a>
|
|
9273
9348
|
|
|
9274
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
9349
|
+
<nav class="md-nav" aria-label="v2.3.6 (2024-10-02)">
|
|
9275
9350
|
<ul class="md-nav__list">
|
|
9276
9351
|
|
|
9277
9352
|
<li class="md-nav__item">
|
|
9278
|
-
<a href="#
|
|
9353
|
+
<a href="#added-in-v236" class="md-nav__link">
|
|
9279
9354
|
<span class="md-ellipsis">
|
|
9280
|
-
Added
|
|
9355
|
+
Added in v2.3.6
|
|
9281
9356
|
</span>
|
|
9282
9357
|
</a>
|
|
9283
9358
|
|
|
9284
9359
|
</li>
|
|
9285
9360
|
|
|
9286
9361
|
<li class="md-nav__item">
|
|
9287
|
-
<a href="#
|
|
9362
|
+
<a href="#fixed-in-v236" class="md-nav__link">
|
|
9288
9363
|
<span class="md-ellipsis">
|
|
9289
|
-
|
|
9364
|
+
Fixed in v2.3.6
|
|
9290
9365
|
</span>
|
|
9291
9366
|
</a>
|
|
9292
9367
|
|
|
9293
9368
|
</li>
|
|
9294
9369
|
|
|
9295
9370
|
<li class="md-nav__item">
|
|
9296
|
-
<a href="#
|
|
9371
|
+
<a href="#documentation-in-v236" class="md-nav__link">
|
|
9297
9372
|
<span class="md-ellipsis">
|
|
9298
|
-
|
|
9373
|
+
Documentation in v2.3.6
|
|
9299
9374
|
</span>
|
|
9300
9375
|
</a>
|
|
9301
9376
|
|
|
9302
9377
|
</li>
|
|
9303
9378
|
|
|
9304
9379
|
<li class="md-nav__item">
|
|
9305
|
-
<a href="#
|
|
9380
|
+
<a href="#housekeeping-in-v236" class="md-nav__link">
|
|
9306
9381
|
<span class="md-ellipsis">
|
|
9307
|
-
Housekeeping
|
|
9382
|
+
Housekeeping in v2.3.6
|
|
9308
9383
|
</span>
|
|
9309
9384
|
</a>
|
|
9310
9385
|
|
|
@@ -9316,7 +9391,289 @@
|
|
|
9316
9391
|
</li>
|
|
9317
9392
|
|
|
9318
9393
|
<li class="md-nav__item">
|
|
9319
|
-
<a href="#
|
|
9394
|
+
<a href="#v235-2024-09-30" class="md-nav__link">
|
|
9395
|
+
<span class="md-ellipsis">
|
|
9396
|
+
v2.3.5 (2024-09-30)
|
|
9397
|
+
</span>
|
|
9398
|
+
</a>
|
|
9399
|
+
|
|
9400
|
+
<nav class="md-nav" aria-label="v2.3.5 (2024-09-30)">
|
|
9401
|
+
<ul class="md-nav__list">
|
|
9402
|
+
|
|
9403
|
+
<li class="md-nav__item">
|
|
9404
|
+
<a href="#added-in-v235" class="md-nav__link">
|
|
9405
|
+
<span class="md-ellipsis">
|
|
9406
|
+
Added in v2.3.5
|
|
9407
|
+
</span>
|
|
9408
|
+
</a>
|
|
9409
|
+
|
|
9410
|
+
</li>
|
|
9411
|
+
|
|
9412
|
+
<li class="md-nav__item">
|
|
9413
|
+
<a href="#changed-in-v235" class="md-nav__link">
|
|
9414
|
+
<span class="md-ellipsis">
|
|
9415
|
+
Changed in v2.3.5
|
|
9416
|
+
</span>
|
|
9417
|
+
</a>
|
|
9418
|
+
|
|
9419
|
+
</li>
|
|
9420
|
+
|
|
9421
|
+
<li class="md-nav__item">
|
|
9422
|
+
<a href="#fixed-in-v235" class="md-nav__link">
|
|
9423
|
+
<span class="md-ellipsis">
|
|
9424
|
+
Fixed in v2.3.5
|
|
9425
|
+
</span>
|
|
9426
|
+
</a>
|
|
9427
|
+
|
|
9428
|
+
</li>
|
|
9429
|
+
|
|
9430
|
+
<li class="md-nav__item">
|
|
9431
|
+
<a href="#dependencies-in-v235" class="md-nav__link">
|
|
9432
|
+
<span class="md-ellipsis">
|
|
9433
|
+
Dependencies in v2.3.5
|
|
9434
|
+
</span>
|
|
9435
|
+
</a>
|
|
9436
|
+
|
|
9437
|
+
</li>
|
|
9438
|
+
|
|
9439
|
+
<li class="md-nav__item">
|
|
9440
|
+
<a href="#documentation-in-v235" class="md-nav__link">
|
|
9441
|
+
<span class="md-ellipsis">
|
|
9442
|
+
Documentation in v2.3.5
|
|
9443
|
+
</span>
|
|
9444
|
+
</a>
|
|
9445
|
+
|
|
9446
|
+
</li>
|
|
9447
|
+
|
|
9448
|
+
<li class="md-nav__item">
|
|
9449
|
+
<a href="#housekeeping-in-v235" class="md-nav__link">
|
|
9450
|
+
<span class="md-ellipsis">
|
|
9451
|
+
Housekeeping in v2.3.5
|
|
9452
|
+
</span>
|
|
9453
|
+
</a>
|
|
9454
|
+
|
|
9455
|
+
</li>
|
|
9456
|
+
|
|
9457
|
+
</ul>
|
|
9458
|
+
</nav>
|
|
9459
|
+
|
|
9460
|
+
</li>
|
|
9461
|
+
|
|
9462
|
+
<li class="md-nav__item">
|
|
9463
|
+
<a href="#v234-2024-09-18" class="md-nav__link">
|
|
9464
|
+
<span class="md-ellipsis">
|
|
9465
|
+
v2.3.4 (2024-09-18)
|
|
9466
|
+
</span>
|
|
9467
|
+
</a>
|
|
9468
|
+
|
|
9469
|
+
<nav class="md-nav" aria-label="v2.3.4 (2024-09-18)">
|
|
9470
|
+
<ul class="md-nav__list">
|
|
9471
|
+
|
|
9472
|
+
<li class="md-nav__item">
|
|
9473
|
+
<a href="#added-in-v234" class="md-nav__link">
|
|
9474
|
+
<span class="md-ellipsis">
|
|
9475
|
+
Added in v2.3.4
|
|
9476
|
+
</span>
|
|
9477
|
+
</a>
|
|
9478
|
+
|
|
9479
|
+
</li>
|
|
9480
|
+
|
|
9481
|
+
<li class="md-nav__item">
|
|
9482
|
+
<a href="#changed-in-v234" class="md-nav__link">
|
|
9483
|
+
<span class="md-ellipsis">
|
|
9484
|
+
Changed in v2.3.4
|
|
9485
|
+
</span>
|
|
9486
|
+
</a>
|
|
9487
|
+
|
|
9488
|
+
</li>
|
|
9489
|
+
|
|
9490
|
+
<li class="md-nav__item">
|
|
9491
|
+
<a href="#fixed-in-v234" class="md-nav__link">
|
|
9492
|
+
<span class="md-ellipsis">
|
|
9493
|
+
Fixed in v2.3.4
|
|
9494
|
+
</span>
|
|
9495
|
+
</a>
|
|
9496
|
+
|
|
9497
|
+
</li>
|
|
9498
|
+
|
|
9499
|
+
<li class="md-nav__item">
|
|
9500
|
+
<a href="#documentation-in-v234" class="md-nav__link">
|
|
9501
|
+
<span class="md-ellipsis">
|
|
9502
|
+
Documentation in v2.3.4
|
|
9503
|
+
</span>
|
|
9504
|
+
</a>
|
|
9505
|
+
|
|
9506
|
+
</li>
|
|
9507
|
+
|
|
9508
|
+
<li class="md-nav__item">
|
|
9509
|
+
<a href="#housekeeping-in-v234" class="md-nav__link">
|
|
9510
|
+
<span class="md-ellipsis">
|
|
9511
|
+
Housekeeping in v2.3.4
|
|
9512
|
+
</span>
|
|
9513
|
+
</a>
|
|
9514
|
+
|
|
9515
|
+
</li>
|
|
9516
|
+
|
|
9517
|
+
</ul>
|
|
9518
|
+
</nav>
|
|
9519
|
+
|
|
9520
|
+
</li>
|
|
9521
|
+
|
|
9522
|
+
<li class="md-nav__item">
|
|
9523
|
+
<a href="#v233-2024-09-16" class="md-nav__link">
|
|
9524
|
+
<span class="md-ellipsis">
|
|
9525
|
+
v2.3.3 (2024-09-16)
|
|
9526
|
+
</span>
|
|
9527
|
+
</a>
|
|
9528
|
+
|
|
9529
|
+
<nav class="md-nav" aria-label="v2.3.3 (2024-09-16)">
|
|
9530
|
+
<ul class="md-nav__list">
|
|
9531
|
+
|
|
9532
|
+
<li class="md-nav__item">
|
|
9533
|
+
<a href="#security-in-v233" class="md-nav__link">
|
|
9534
|
+
<span class="md-ellipsis">
|
|
9535
|
+
Security in v2.3.3
|
|
9536
|
+
</span>
|
|
9537
|
+
</a>
|
|
9538
|
+
|
|
9539
|
+
</li>
|
|
9540
|
+
|
|
9541
|
+
<li class="md-nav__item">
|
|
9542
|
+
<a href="#fixed-in-v233" class="md-nav__link">
|
|
9543
|
+
<span class="md-ellipsis">
|
|
9544
|
+
Fixed in v2.3.3
|
|
9545
|
+
</span>
|
|
9546
|
+
</a>
|
|
9547
|
+
|
|
9548
|
+
</li>
|
|
9549
|
+
|
|
9550
|
+
<li class="md-nav__item">
|
|
9551
|
+
<a href="#dependencies-in-v233" class="md-nav__link">
|
|
9552
|
+
<span class="md-ellipsis">
|
|
9553
|
+
Dependencies in v2.3.3
|
|
9554
|
+
</span>
|
|
9555
|
+
</a>
|
|
9556
|
+
|
|
9557
|
+
</li>
|
|
9558
|
+
|
|
9559
|
+
<li class="md-nav__item">
|
|
9560
|
+
<a href="#housekeeping-in-v233" class="md-nav__link">
|
|
9561
|
+
<span class="md-ellipsis">
|
|
9562
|
+
Housekeeping in v2.3.3
|
|
9563
|
+
</span>
|
|
9564
|
+
</a>
|
|
9565
|
+
|
|
9566
|
+
</li>
|
|
9567
|
+
|
|
9568
|
+
</ul>
|
|
9569
|
+
</nav>
|
|
9570
|
+
|
|
9571
|
+
</li>
|
|
9572
|
+
|
|
9573
|
+
<li class="md-nav__item">
|
|
9574
|
+
<a href="#v232-2024-09-03" class="md-nav__link">
|
|
9575
|
+
<span class="md-ellipsis">
|
|
9576
|
+
v2.3.2 (2024-09-03)
|
|
9577
|
+
</span>
|
|
9578
|
+
</a>
|
|
9579
|
+
|
|
9580
|
+
<nav class="md-nav" aria-label="v2.3.2 (2024-09-03)">
|
|
9581
|
+
<ul class="md-nav__list">
|
|
9582
|
+
|
|
9583
|
+
<li class="md-nav__item">
|
|
9584
|
+
<a href="#security-in-v232" class="md-nav__link">
|
|
9585
|
+
<span class="md-ellipsis">
|
|
9586
|
+
Security in v2.3.2
|
|
9587
|
+
</span>
|
|
9588
|
+
</a>
|
|
9589
|
+
|
|
9590
|
+
</li>
|
|
9591
|
+
|
|
9592
|
+
<li class="md-nav__item">
|
|
9593
|
+
<a href="#added-in-v232" class="md-nav__link">
|
|
9594
|
+
<span class="md-ellipsis">
|
|
9595
|
+
Added in v2.3.2
|
|
9596
|
+
</span>
|
|
9597
|
+
</a>
|
|
9598
|
+
|
|
9599
|
+
</li>
|
|
9600
|
+
|
|
9601
|
+
<li class="md-nav__item">
|
|
9602
|
+
<a href="#fixed-in-v232" class="md-nav__link">
|
|
9603
|
+
<span class="md-ellipsis">
|
|
9604
|
+
Fixed in v2.3.2
|
|
9605
|
+
</span>
|
|
9606
|
+
</a>
|
|
9607
|
+
|
|
9608
|
+
</li>
|
|
9609
|
+
|
|
9610
|
+
<li class="md-nav__item">
|
|
9611
|
+
<a href="#housekeeping-in-v232" class="md-nav__link">
|
|
9612
|
+
<span class="md-ellipsis">
|
|
9613
|
+
Housekeeping in v2.3.2
|
|
9614
|
+
</span>
|
|
9615
|
+
</a>
|
|
9616
|
+
|
|
9617
|
+
</li>
|
|
9618
|
+
|
|
9619
|
+
</ul>
|
|
9620
|
+
</nav>
|
|
9621
|
+
|
|
9622
|
+
</li>
|
|
9623
|
+
|
|
9624
|
+
<li class="md-nav__item">
|
|
9625
|
+
<a href="#v231-2024-08-19" class="md-nav__link">
|
|
9626
|
+
<span class="md-ellipsis">
|
|
9627
|
+
v2.3.1 (2024-08-19)
|
|
9628
|
+
</span>
|
|
9629
|
+
</a>
|
|
9630
|
+
|
|
9631
|
+
<nav class="md-nav" aria-label="v2.3.1 (2024-08-19)">
|
|
9632
|
+
<ul class="md-nav__list">
|
|
9633
|
+
|
|
9634
|
+
<li class="md-nav__item">
|
|
9635
|
+
<a href="#added-in-v231" class="md-nav__link">
|
|
9636
|
+
<span class="md-ellipsis">
|
|
9637
|
+
Added in v2.3.1
|
|
9638
|
+
</span>
|
|
9639
|
+
</a>
|
|
9640
|
+
|
|
9641
|
+
</li>
|
|
9642
|
+
|
|
9643
|
+
<li class="md-nav__item">
|
|
9644
|
+
<a href="#changed-in-v231" class="md-nav__link">
|
|
9645
|
+
<span class="md-ellipsis">
|
|
9646
|
+
Changed in v2.3.1
|
|
9647
|
+
</span>
|
|
9648
|
+
</a>
|
|
9649
|
+
|
|
9650
|
+
</li>
|
|
9651
|
+
|
|
9652
|
+
<li class="md-nav__item">
|
|
9653
|
+
<a href="#fixed-in-v231" class="md-nav__link">
|
|
9654
|
+
<span class="md-ellipsis">
|
|
9655
|
+
Fixed in v2.3.1
|
|
9656
|
+
</span>
|
|
9657
|
+
</a>
|
|
9658
|
+
|
|
9659
|
+
</li>
|
|
9660
|
+
|
|
9661
|
+
<li class="md-nav__item">
|
|
9662
|
+
<a href="#housekeeping-in-v231" class="md-nav__link">
|
|
9663
|
+
<span class="md-ellipsis">
|
|
9664
|
+
Housekeeping in v2.3.1
|
|
9665
|
+
</span>
|
|
9666
|
+
</a>
|
|
9667
|
+
|
|
9668
|
+
</li>
|
|
9669
|
+
|
|
9670
|
+
</ul>
|
|
9671
|
+
</nav>
|
|
9672
|
+
|
|
9673
|
+
</li>
|
|
9674
|
+
|
|
9675
|
+
<li class="md-nav__item">
|
|
9676
|
+
<a href="#v230-2024-08-08" class="md-nav__link">
|
|
9320
9677
|
<span class="md-ellipsis">
|
|
9321
9678
|
v2.3.0 (2024-08-08)
|
|
9322
9679
|
</span>
|
|
@@ -9326,63 +9683,63 @@
|
|
|
9326
9683
|
<ul class="md-nav__list">
|
|
9327
9684
|
|
|
9328
9685
|
<li class="md-nav__item">
|
|
9329
|
-
<a href="#
|
|
9686
|
+
<a href="#security-in-v230" class="md-nav__link">
|
|
9330
9687
|
<span class="md-ellipsis">
|
|
9331
|
-
Security
|
|
9688
|
+
Security in v2.3.0
|
|
9332
9689
|
</span>
|
|
9333
9690
|
</a>
|
|
9334
9691
|
|
|
9335
9692
|
</li>
|
|
9336
9693
|
|
|
9337
9694
|
<li class="md-nav__item">
|
|
9338
|
-
<a href="#
|
|
9695
|
+
<a href="#added-in-v230" class="md-nav__link">
|
|
9339
9696
|
<span class="md-ellipsis">
|
|
9340
|
-
Added
|
|
9697
|
+
Added in v2.3.0
|
|
9341
9698
|
</span>
|
|
9342
9699
|
</a>
|
|
9343
9700
|
|
|
9344
9701
|
</li>
|
|
9345
9702
|
|
|
9346
9703
|
<li class="md-nav__item">
|
|
9347
|
-
<a href="#
|
|
9704
|
+
<a href="#changed-in-v230" class="md-nav__link">
|
|
9348
9705
|
<span class="md-ellipsis">
|
|
9349
|
-
Changed
|
|
9706
|
+
Changed in v2.3.0
|
|
9350
9707
|
</span>
|
|
9351
9708
|
</a>
|
|
9352
9709
|
|
|
9353
9710
|
</li>
|
|
9354
9711
|
|
|
9355
9712
|
<li class="md-nav__item">
|
|
9356
|
-
<a href="#removed" class="md-nav__link">
|
|
9713
|
+
<a href="#removed-in-v230" class="md-nav__link">
|
|
9357
9714
|
<span class="md-ellipsis">
|
|
9358
|
-
Removed
|
|
9715
|
+
Removed in v2.3.0
|
|
9359
9716
|
</span>
|
|
9360
9717
|
</a>
|
|
9361
9718
|
|
|
9362
9719
|
</li>
|
|
9363
9720
|
|
|
9364
9721
|
<li class="md-nav__item">
|
|
9365
|
-
<a href="#
|
|
9722
|
+
<a href="#fixed-in-v230" class="md-nav__link">
|
|
9366
9723
|
<span class="md-ellipsis">
|
|
9367
|
-
Fixed
|
|
9724
|
+
Fixed in v2.3.0
|
|
9368
9725
|
</span>
|
|
9369
9726
|
</a>
|
|
9370
9727
|
|
|
9371
9728
|
</li>
|
|
9372
9729
|
|
|
9373
9730
|
<li class="md-nav__item">
|
|
9374
|
-
<a href="#
|
|
9731
|
+
<a href="#documentation-in-v230" class="md-nav__link">
|
|
9375
9732
|
<span class="md-ellipsis">
|
|
9376
|
-
Documentation
|
|
9733
|
+
Documentation in v2.3.0
|
|
9377
9734
|
</span>
|
|
9378
9735
|
</a>
|
|
9379
9736
|
|
|
9380
9737
|
</li>
|
|
9381
9738
|
|
|
9382
9739
|
<li class="md-nav__item">
|
|
9383
|
-
<a href="#
|
|
9740
|
+
<a href="#housekeeping-in-v230" class="md-nav__link">
|
|
9384
9741
|
<span class="md-ellipsis">
|
|
9385
|
-
Housekeeping
|
|
9742
|
+
Housekeeping in v2.3.0
|
|
9386
9743
|
</span>
|
|
9387
9744
|
</a>
|
|
9388
9745
|
|
|
@@ -9404,81 +9761,81 @@
|
|
|
9404
9761
|
<ul class="md-nav__list">
|
|
9405
9762
|
|
|
9406
9763
|
<li class="md-nav__item">
|
|
9407
|
-
<a href="#
|
|
9764
|
+
<a href="#security-in-v230-beta1" class="md-nav__link">
|
|
9408
9765
|
<span class="md-ellipsis">
|
|
9409
|
-
Security
|
|
9766
|
+
Security in v2.3.0-beta.1
|
|
9410
9767
|
</span>
|
|
9411
9768
|
</a>
|
|
9412
9769
|
|
|
9413
9770
|
</li>
|
|
9414
9771
|
|
|
9415
9772
|
<li class="md-nav__item">
|
|
9416
|
-
<a href="#
|
|
9773
|
+
<a href="#added-in-v230-beta1" class="md-nav__link">
|
|
9417
9774
|
<span class="md-ellipsis">
|
|
9418
|
-
Added
|
|
9775
|
+
Added in v2.3.0-beta.1
|
|
9419
9776
|
</span>
|
|
9420
9777
|
</a>
|
|
9421
9778
|
|
|
9422
9779
|
</li>
|
|
9423
9780
|
|
|
9424
9781
|
<li class="md-nav__item">
|
|
9425
|
-
<a href="#
|
|
9782
|
+
<a href="#changed-in-v230-beta1" class="md-nav__link">
|
|
9426
9783
|
<span class="md-ellipsis">
|
|
9427
|
-
Changed
|
|
9784
|
+
Changed in v2.3.0-beta.1
|
|
9428
9785
|
</span>
|
|
9429
9786
|
</a>
|
|
9430
9787
|
|
|
9431
9788
|
</li>
|
|
9432
9789
|
|
|
9433
9790
|
<li class="md-nav__item">
|
|
9434
|
-
<a href="#deprecated" class="md-nav__link">
|
|
9791
|
+
<a href="#deprecated-in-v230-beta1" class="md-nav__link">
|
|
9435
9792
|
<span class="md-ellipsis">
|
|
9436
|
-
Deprecated
|
|
9793
|
+
Deprecated in v2.3.0-beta.1
|
|
9437
9794
|
</span>
|
|
9438
9795
|
</a>
|
|
9439
9796
|
|
|
9440
9797
|
</li>
|
|
9441
9798
|
|
|
9442
9799
|
<li class="md-nav__item">
|
|
9443
|
-
<a href="#
|
|
9800
|
+
<a href="#removed-in-v230-beta1" class="md-nav__link">
|
|
9444
9801
|
<span class="md-ellipsis">
|
|
9445
|
-
Removed
|
|
9802
|
+
Removed in v2.3.0-beta.1
|
|
9446
9803
|
</span>
|
|
9447
9804
|
</a>
|
|
9448
9805
|
|
|
9449
9806
|
</li>
|
|
9450
9807
|
|
|
9451
9808
|
<li class="md-nav__item">
|
|
9452
|
-
<a href="#
|
|
9809
|
+
<a href="#fixed-in-v230-beta1" class="md-nav__link">
|
|
9453
9810
|
<span class="md-ellipsis">
|
|
9454
|
-
Fixed
|
|
9811
|
+
Fixed in v2.3.0-beta.1
|
|
9455
9812
|
</span>
|
|
9456
9813
|
</a>
|
|
9457
9814
|
|
|
9458
9815
|
</li>
|
|
9459
9816
|
|
|
9460
9817
|
<li class="md-nav__item">
|
|
9461
|
-
<a href="#
|
|
9818
|
+
<a href="#dependencies-in-v230-beta1" class="md-nav__link">
|
|
9462
9819
|
<span class="md-ellipsis">
|
|
9463
|
-
Dependencies
|
|
9820
|
+
Dependencies in v2.3.0-beta.1
|
|
9464
9821
|
</span>
|
|
9465
9822
|
</a>
|
|
9466
9823
|
|
|
9467
9824
|
</li>
|
|
9468
9825
|
|
|
9469
9826
|
<li class="md-nav__item">
|
|
9470
|
-
<a href="#
|
|
9827
|
+
<a href="#documentation-in-v230-beta1" class="md-nav__link">
|
|
9471
9828
|
<span class="md-ellipsis">
|
|
9472
|
-
Documentation
|
|
9829
|
+
Documentation in v2.3.0-beta.1
|
|
9473
9830
|
</span>
|
|
9474
9831
|
</a>
|
|
9475
9832
|
|
|
9476
9833
|
</li>
|
|
9477
9834
|
|
|
9478
9835
|
<li class="md-nav__item">
|
|
9479
|
-
<a href="#
|
|
9836
|
+
<a href="#housekeeping-in-v230-beta1" class="md-nav__link">
|
|
9480
9837
|
<span class="md-ellipsis">
|
|
9481
|
-
Housekeeping
|
|
9838
|
+
Housekeeping in v2.3.0-beta.1
|
|
9482
9839
|
</span>
|
|
9483
9840
|
</a>
|
|
9484
9841
|
|
|
@@ -10287,6 +10644,246 @@
|
|
|
10287
10644
|
</ul>
|
|
10288
10645
|
</nav>
|
|
10289
10646
|
|
|
10647
|
+
</li>
|
|
10648
|
+
|
|
10649
|
+
<li class="md-nav__item">
|
|
10650
|
+
<a href="#v2316-2025-01-06" class="md-nav__link">
|
|
10651
|
+
<span class="md-ellipsis">
|
|
10652
|
+
v2.3.16 (2025-01-06)
|
|
10653
|
+
</span>
|
|
10654
|
+
</a>
|
|
10655
|
+
|
|
10656
|
+
<nav class="md-nav" aria-label="v2.3.16 (2025-01-06)">
|
|
10657
|
+
<ul class="md-nav__list">
|
|
10658
|
+
|
|
10659
|
+
<li class="md-nav__item">
|
|
10660
|
+
<a href="#fixed-in-v2316" class="md-nav__link">
|
|
10661
|
+
<span class="md-ellipsis">
|
|
10662
|
+
Fixed in v2.3.16
|
|
10663
|
+
</span>
|
|
10664
|
+
</a>
|
|
10665
|
+
|
|
10666
|
+
</li>
|
|
10667
|
+
|
|
10668
|
+
<li class="md-nav__item">
|
|
10669
|
+
<a href="#housekeeping-in-v2316" class="md-nav__link">
|
|
10670
|
+
<span class="md-ellipsis">
|
|
10671
|
+
Housekeeping in v2.3.16
|
|
10672
|
+
</span>
|
|
10673
|
+
</a>
|
|
10674
|
+
|
|
10675
|
+
</li>
|
|
10676
|
+
|
|
10677
|
+
</ul>
|
|
10678
|
+
</nav>
|
|
10679
|
+
|
|
10680
|
+
</li>
|
|
10681
|
+
|
|
10682
|
+
<li class="md-nav__item">
|
|
10683
|
+
<a href="#v2315-2025-01-02" class="md-nav__link">
|
|
10684
|
+
<span class="md-ellipsis">
|
|
10685
|
+
v2.3.15 (2025-01-02)
|
|
10686
|
+
</span>
|
|
10687
|
+
</a>
|
|
10688
|
+
|
|
10689
|
+
<nav class="md-nav" aria-label="v2.3.15 (2025-01-02)">
|
|
10690
|
+
<ul class="md-nav__list">
|
|
10691
|
+
|
|
10692
|
+
<li class="md-nav__item">
|
|
10693
|
+
<a href="#security-in-v2315" class="md-nav__link">
|
|
10694
|
+
<span class="md-ellipsis">
|
|
10695
|
+
Security in v2.3.15
|
|
10696
|
+
</span>
|
|
10697
|
+
</a>
|
|
10698
|
+
|
|
10699
|
+
</li>
|
|
10700
|
+
|
|
10701
|
+
<li class="md-nav__item">
|
|
10702
|
+
<a href="#added-in-v2315" class="md-nav__link">
|
|
10703
|
+
<span class="md-ellipsis">
|
|
10704
|
+
Added in v2.3.15
|
|
10705
|
+
</span>
|
|
10706
|
+
</a>
|
|
10707
|
+
|
|
10708
|
+
</li>
|
|
10709
|
+
|
|
10710
|
+
<li class="md-nav__item">
|
|
10711
|
+
<a href="#changed-in-v2315" class="md-nav__link">
|
|
10712
|
+
<span class="md-ellipsis">
|
|
10713
|
+
Changed in v2.3.15
|
|
10714
|
+
</span>
|
|
10715
|
+
</a>
|
|
10716
|
+
|
|
10717
|
+
</li>
|
|
10718
|
+
|
|
10719
|
+
<li class="md-nav__item">
|
|
10720
|
+
<a href="#fixed-in-v2315" class="md-nav__link">
|
|
10721
|
+
<span class="md-ellipsis">
|
|
10722
|
+
Fixed in v2.3.15
|
|
10723
|
+
</span>
|
|
10724
|
+
</a>
|
|
10725
|
+
|
|
10726
|
+
</li>
|
|
10727
|
+
|
|
10728
|
+
<li class="md-nav__item">
|
|
10729
|
+
<a href="#dependencies-in-v2315" class="md-nav__link">
|
|
10730
|
+
<span class="md-ellipsis">
|
|
10731
|
+
Dependencies in v2.3.15
|
|
10732
|
+
</span>
|
|
10733
|
+
</a>
|
|
10734
|
+
|
|
10735
|
+
</li>
|
|
10736
|
+
|
|
10737
|
+
<li class="md-nav__item">
|
|
10738
|
+
<a href="#housekeeping-in-v2315" class="md-nav__link">
|
|
10739
|
+
<span class="md-ellipsis">
|
|
10740
|
+
Housekeeping in v2.3.15
|
|
10741
|
+
</span>
|
|
10742
|
+
</a>
|
|
10743
|
+
|
|
10744
|
+
</li>
|
|
10745
|
+
|
|
10746
|
+
</ul>
|
|
10747
|
+
</nav>
|
|
10748
|
+
|
|
10749
|
+
</li>
|
|
10750
|
+
|
|
10751
|
+
<li class="md-nav__item">
|
|
10752
|
+
<a href="#v2314-2024-12-19" class="md-nav__link">
|
|
10753
|
+
<span class="md-ellipsis">
|
|
10754
|
+
v2.3.14 (2024-12-19)
|
|
10755
|
+
</span>
|
|
10756
|
+
</a>
|
|
10757
|
+
|
|
10758
|
+
<nav class="md-nav" aria-label="v2.3.14 (2024-12-19)">
|
|
10759
|
+
<ul class="md-nav__list">
|
|
10760
|
+
|
|
10761
|
+
<li class="md-nav__item">
|
|
10762
|
+
<a href="#added-in-v2314" class="md-nav__link">
|
|
10763
|
+
<span class="md-ellipsis">
|
|
10764
|
+
Added in v2.3.14
|
|
10765
|
+
</span>
|
|
10766
|
+
</a>
|
|
10767
|
+
|
|
10768
|
+
</li>
|
|
10769
|
+
|
|
10770
|
+
<li class="md-nav__item">
|
|
10771
|
+
<a href="#changed-in-v2314" class="md-nav__link">
|
|
10772
|
+
<span class="md-ellipsis">
|
|
10773
|
+
Changed in v2.3.14
|
|
10774
|
+
</span>
|
|
10775
|
+
</a>
|
|
10776
|
+
|
|
10777
|
+
</li>
|
|
10778
|
+
|
|
10779
|
+
<li class="md-nav__item">
|
|
10780
|
+
<a href="#fixed-in-v2314" class="md-nav__link">
|
|
10781
|
+
<span class="md-ellipsis">
|
|
10782
|
+
Fixed in v2.3.14
|
|
10783
|
+
</span>
|
|
10784
|
+
</a>
|
|
10785
|
+
|
|
10786
|
+
</li>
|
|
10787
|
+
|
|
10788
|
+
<li class="md-nav__item">
|
|
10789
|
+
<a href="#documentation-in-v2314" class="md-nav__link">
|
|
10790
|
+
<span class="md-ellipsis">
|
|
10791
|
+
Documentation in v2.3.14
|
|
10792
|
+
</span>
|
|
10793
|
+
</a>
|
|
10794
|
+
|
|
10795
|
+
</li>
|
|
10796
|
+
|
|
10797
|
+
<li class="md-nav__item">
|
|
10798
|
+
<a href="#housekeeping-in-v2314" class="md-nav__link">
|
|
10799
|
+
<span class="md-ellipsis">
|
|
10800
|
+
Housekeeping in v2.3.14
|
|
10801
|
+
</span>
|
|
10802
|
+
</a>
|
|
10803
|
+
|
|
10804
|
+
</li>
|
|
10805
|
+
|
|
10806
|
+
</ul>
|
|
10807
|
+
</nav>
|
|
10808
|
+
|
|
10809
|
+
</li>
|
|
10810
|
+
|
|
10811
|
+
<li class="md-nav__item">
|
|
10812
|
+
<a href="#v2313-2024-12-10" class="md-nav__link">
|
|
10813
|
+
<span class="md-ellipsis">
|
|
10814
|
+
v2.3.13 (2024-12-10)
|
|
10815
|
+
</span>
|
|
10816
|
+
</a>
|
|
10817
|
+
|
|
10818
|
+
<nav class="md-nav" aria-label="v2.3.13 (2024-12-10)">
|
|
10819
|
+
<ul class="md-nav__list">
|
|
10820
|
+
|
|
10821
|
+
<li class="md-nav__item">
|
|
10822
|
+
<a href="#security-in-v2313" class="md-nav__link">
|
|
10823
|
+
<span class="md-ellipsis">
|
|
10824
|
+
Security in v2.3.13
|
|
10825
|
+
</span>
|
|
10826
|
+
</a>
|
|
10827
|
+
|
|
10828
|
+
</li>
|
|
10829
|
+
|
|
10830
|
+
<li class="md-nav__item">
|
|
10831
|
+
<a href="#added-in-v2313" class="md-nav__link">
|
|
10832
|
+
<span class="md-ellipsis">
|
|
10833
|
+
Added in v2.3.13
|
|
10834
|
+
</span>
|
|
10835
|
+
</a>
|
|
10836
|
+
|
|
10837
|
+
</li>
|
|
10838
|
+
|
|
10839
|
+
<li class="md-nav__item">
|
|
10840
|
+
<a href="#changed-in-v2313" class="md-nav__link">
|
|
10841
|
+
<span class="md-ellipsis">
|
|
10842
|
+
Changed in v2.3.13
|
|
10843
|
+
</span>
|
|
10844
|
+
</a>
|
|
10845
|
+
|
|
10846
|
+
</li>
|
|
10847
|
+
|
|
10848
|
+
<li class="md-nav__item">
|
|
10849
|
+
<a href="#fixed-in-v2313" class="md-nav__link">
|
|
10850
|
+
<span class="md-ellipsis">
|
|
10851
|
+
Fixed in v2.3.13
|
|
10852
|
+
</span>
|
|
10853
|
+
</a>
|
|
10854
|
+
|
|
10855
|
+
</li>
|
|
10856
|
+
|
|
10857
|
+
<li class="md-nav__item">
|
|
10858
|
+
<a href="#dependencies-in-v2313" class="md-nav__link">
|
|
10859
|
+
<span class="md-ellipsis">
|
|
10860
|
+
Dependencies in v2.3.13
|
|
10861
|
+
</span>
|
|
10862
|
+
</a>
|
|
10863
|
+
|
|
10864
|
+
</li>
|
|
10865
|
+
|
|
10866
|
+
<li class="md-nav__item">
|
|
10867
|
+
<a href="#documentation-in-v2313" class="md-nav__link">
|
|
10868
|
+
<span class="md-ellipsis">
|
|
10869
|
+
Documentation in v2.3.13
|
|
10870
|
+
</span>
|
|
10871
|
+
</a>
|
|
10872
|
+
|
|
10873
|
+
</li>
|
|
10874
|
+
|
|
10875
|
+
<li class="md-nav__item">
|
|
10876
|
+
<a href="#housekeeping-in-v2313" class="md-nav__link">
|
|
10877
|
+
<span class="md-ellipsis">
|
|
10878
|
+
Housekeeping in v2.3.13
|
|
10879
|
+
</span>
|
|
10880
|
+
</a>
|
|
10881
|
+
|
|
10882
|
+
</li>
|
|
10883
|
+
|
|
10884
|
+
</ul>
|
|
10885
|
+
</nav>
|
|
10886
|
+
|
|
10290
10887
|
</li>
|
|
10291
10888
|
|
|
10292
10889
|
<li class="md-nav__item">
|
|
@@ -10300,45 +10897,45 @@
|
|
|
10300
10897
|
<ul class="md-nav__list">
|
|
10301
10898
|
|
|
10302
10899
|
<li class="md-nav__item">
|
|
10303
|
-
<a href="#
|
|
10900
|
+
<a href="#added-in-v2312" class="md-nav__link">
|
|
10304
10901
|
<span class="md-ellipsis">
|
|
10305
|
-
Added
|
|
10902
|
+
Added in v2.3.12
|
|
10306
10903
|
</span>
|
|
10307
10904
|
</a>
|
|
10308
10905
|
|
|
10309
10906
|
</li>
|
|
10310
10907
|
|
|
10311
10908
|
<li class="md-nav__item">
|
|
10312
|
-
<a href="#fixed" class="md-nav__link">
|
|
10909
|
+
<a href="#fixed-in-v2312" class="md-nav__link">
|
|
10313
10910
|
<span class="md-ellipsis">
|
|
10314
|
-
Fixed
|
|
10911
|
+
Fixed in v2.3.12
|
|
10315
10912
|
</span>
|
|
10316
10913
|
</a>
|
|
10317
10914
|
|
|
10318
10915
|
</li>
|
|
10319
10916
|
|
|
10320
10917
|
<li class="md-nav__item">
|
|
10321
|
-
<a href="#
|
|
10918
|
+
<a href="#dependencies-in-v2312" class="md-nav__link">
|
|
10322
10919
|
<span class="md-ellipsis">
|
|
10323
|
-
Dependencies
|
|
10920
|
+
Dependencies in v2.3.12
|
|
10324
10921
|
</span>
|
|
10325
10922
|
</a>
|
|
10326
10923
|
|
|
10327
10924
|
</li>
|
|
10328
10925
|
|
|
10329
10926
|
<li class="md-nav__item">
|
|
10330
|
-
<a href="#documentation" class="md-nav__link">
|
|
10927
|
+
<a href="#documentation-in-v2312" class="md-nav__link">
|
|
10331
10928
|
<span class="md-ellipsis">
|
|
10332
|
-
Documentation
|
|
10929
|
+
Documentation in v2.3.12
|
|
10333
10930
|
</span>
|
|
10334
10931
|
</a>
|
|
10335
10932
|
|
|
10336
10933
|
</li>
|
|
10337
10934
|
|
|
10338
10935
|
<li class="md-nav__item">
|
|
10339
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10936
|
+
<a href="#housekeeping-in-v2312" class="md-nav__link">
|
|
10340
10937
|
<span class="md-ellipsis">
|
|
10341
|
-
Housekeeping
|
|
10938
|
+
Housekeeping in v2.3.12
|
|
10342
10939
|
</span>
|
|
10343
10940
|
</a>
|
|
10344
10941
|
|
|
@@ -10360,45 +10957,45 @@
|
|
|
10360
10957
|
<ul class="md-nav__list">
|
|
10361
10958
|
|
|
10362
10959
|
<li class="md-nav__item">
|
|
10363
|
-
<a href="#
|
|
10960
|
+
<a href="#added-in-v2311" class="md-nav__link">
|
|
10364
10961
|
<span class="md-ellipsis">
|
|
10365
|
-
Added
|
|
10962
|
+
Added in v2.3.11
|
|
10366
10963
|
</span>
|
|
10367
10964
|
</a>
|
|
10368
10965
|
|
|
10369
10966
|
</li>
|
|
10370
10967
|
|
|
10371
10968
|
<li class="md-nav__item">
|
|
10372
|
-
<a href="#
|
|
10969
|
+
<a href="#changed-in-v2311" class="md-nav__link">
|
|
10373
10970
|
<span class="md-ellipsis">
|
|
10374
|
-
Changed
|
|
10971
|
+
Changed in v2.3.11
|
|
10375
10972
|
</span>
|
|
10376
10973
|
</a>
|
|
10377
10974
|
|
|
10378
10975
|
</li>
|
|
10379
10976
|
|
|
10380
10977
|
<li class="md-nav__item">
|
|
10381
|
-
<a href="#
|
|
10978
|
+
<a href="#fixed-in-v2311" class="md-nav__link">
|
|
10382
10979
|
<span class="md-ellipsis">
|
|
10383
|
-
Fixed
|
|
10980
|
+
Fixed in v2.3.11
|
|
10384
10981
|
</span>
|
|
10385
10982
|
</a>
|
|
10386
10983
|
|
|
10387
10984
|
</li>
|
|
10388
10985
|
|
|
10389
10986
|
<li class="md-nav__item">
|
|
10390
|
-
<a href="#
|
|
10987
|
+
<a href="#documentation-in-v2311" class="md-nav__link">
|
|
10391
10988
|
<span class="md-ellipsis">
|
|
10392
|
-
Documentation
|
|
10989
|
+
Documentation in v2.3.11
|
|
10393
10990
|
</span>
|
|
10394
10991
|
</a>
|
|
10395
10992
|
|
|
10396
10993
|
</li>
|
|
10397
10994
|
|
|
10398
10995
|
<li class="md-nav__item">
|
|
10399
|
-
<a href="#
|
|
10996
|
+
<a href="#housekeeping-in-v2311" class="md-nav__link">
|
|
10400
10997
|
<span class="md-ellipsis">
|
|
10401
|
-
Housekeeping
|
|
10998
|
+
Housekeeping in v2.3.11
|
|
10402
10999
|
</span>
|
|
10403
11000
|
</a>
|
|
10404
11001
|
|
|
@@ -10420,45 +11017,45 @@
|
|
|
10420
11017
|
<ul class="md-nav__list">
|
|
10421
11018
|
|
|
10422
11019
|
<li class="md-nav__item">
|
|
10423
|
-
<a href="#
|
|
11020
|
+
<a href="#added-in-v2310" class="md-nav__link">
|
|
10424
11021
|
<span class="md-ellipsis">
|
|
10425
|
-
Added
|
|
11022
|
+
Added in v2.3.10
|
|
10426
11023
|
</span>
|
|
10427
11024
|
</a>
|
|
10428
11025
|
|
|
10429
11026
|
</li>
|
|
10430
11027
|
|
|
10431
11028
|
<li class="md-nav__item">
|
|
10432
|
-
<a href="#
|
|
11029
|
+
<a href="#changed-in-v2310" class="md-nav__link">
|
|
10433
11030
|
<span class="md-ellipsis">
|
|
10434
|
-
Changed
|
|
11031
|
+
Changed in v2.3.10
|
|
10435
11032
|
</span>
|
|
10436
11033
|
</a>
|
|
10437
11034
|
|
|
10438
11035
|
</li>
|
|
10439
11036
|
|
|
10440
11037
|
<li class="md-nav__item">
|
|
10441
|
-
<a href="#
|
|
11038
|
+
<a href="#fixed-in-v2310" class="md-nav__link">
|
|
10442
11039
|
<span class="md-ellipsis">
|
|
10443
|
-
Fixed
|
|
11040
|
+
Fixed in v2.3.10
|
|
10444
11041
|
</span>
|
|
10445
11042
|
</a>
|
|
10446
11043
|
|
|
10447
11044
|
</li>
|
|
10448
11045
|
|
|
10449
11046
|
<li class="md-nav__item">
|
|
10450
|
-
<a href="#
|
|
11047
|
+
<a href="#dependencies-in-v2310" class="md-nav__link">
|
|
10451
11048
|
<span class="md-ellipsis">
|
|
10452
|
-
Dependencies
|
|
11049
|
+
Dependencies in v2.3.10
|
|
10453
11050
|
</span>
|
|
10454
11051
|
</a>
|
|
10455
11052
|
|
|
10456
11053
|
</li>
|
|
10457
11054
|
|
|
10458
11055
|
<li class="md-nav__item">
|
|
10459
|
-
<a href="#
|
|
11056
|
+
<a href="#housekeeping-in-v2310" class="md-nav__link">
|
|
10460
11057
|
<span class="md-ellipsis">
|
|
10461
|
-
Housekeeping
|
|
11058
|
+
Housekeeping in v2.3.10
|
|
10462
11059
|
</span>
|
|
10463
11060
|
</a>
|
|
10464
11061
|
|
|
@@ -10480,45 +11077,45 @@
|
|
|
10480
11077
|
<ul class="md-nav__list">
|
|
10481
11078
|
|
|
10482
11079
|
<li class="md-nav__item">
|
|
10483
|
-
<a href="#
|
|
11080
|
+
<a href="#added-in-v239" class="md-nav__link">
|
|
10484
11081
|
<span class="md-ellipsis">
|
|
10485
|
-
Added
|
|
11082
|
+
Added in v2.3.9
|
|
10486
11083
|
</span>
|
|
10487
11084
|
</a>
|
|
10488
11085
|
|
|
10489
11086
|
</li>
|
|
10490
11087
|
|
|
10491
11088
|
<li class="md-nav__item">
|
|
10492
|
-
<a href="#
|
|
11089
|
+
<a href="#changed-in-v239" class="md-nav__link">
|
|
10493
11090
|
<span class="md-ellipsis">
|
|
10494
|
-
Changed
|
|
11091
|
+
Changed in v2.3.9
|
|
10495
11092
|
</span>
|
|
10496
11093
|
</a>
|
|
10497
11094
|
|
|
10498
11095
|
</li>
|
|
10499
11096
|
|
|
10500
11097
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
11098
|
+
<a href="#fixed-in-v239" class="md-nav__link">
|
|
10502
11099
|
<span class="md-ellipsis">
|
|
10503
|
-
Fixed
|
|
11100
|
+
Fixed in v2.3.9
|
|
10504
11101
|
</span>
|
|
10505
11102
|
</a>
|
|
10506
11103
|
|
|
10507
11104
|
</li>
|
|
10508
11105
|
|
|
10509
11106
|
<li class="md-nav__item">
|
|
10510
|
-
<a href="#
|
|
11107
|
+
<a href="#dependencies-in-v239" class="md-nav__link">
|
|
10511
11108
|
<span class="md-ellipsis">
|
|
10512
|
-
Dependencies
|
|
11109
|
+
Dependencies in v2.3.9
|
|
10513
11110
|
</span>
|
|
10514
11111
|
</a>
|
|
10515
11112
|
|
|
10516
11113
|
</li>
|
|
10517
11114
|
|
|
10518
11115
|
<li class="md-nav__item">
|
|
10519
|
-
<a href="#
|
|
11116
|
+
<a href="#housekeeping-in-v239" class="md-nav__link">
|
|
10520
11117
|
<span class="md-ellipsis">
|
|
10521
|
-
Housekeeping
|
|
11118
|
+
Housekeeping in v2.3.9
|
|
10522
11119
|
</span>
|
|
10523
11120
|
</a>
|
|
10524
11121
|
|
|
@@ -10540,9 +11137,9 @@
|
|
|
10540
11137
|
<ul class="md-nav__list">
|
|
10541
11138
|
|
|
10542
11139
|
<li class="md-nav__item">
|
|
10543
|
-
<a href="#
|
|
11140
|
+
<a href="#fixed-in-v238" class="md-nav__link">
|
|
10544
11141
|
<span class="md-ellipsis">
|
|
10545
|
-
Fixed
|
|
11142
|
+
Fixed in v2.3.8
|
|
10546
11143
|
</span>
|
|
10547
11144
|
</a>
|
|
10548
11145
|
|
|
@@ -10564,45 +11161,45 @@
|
|
|
10564
11161
|
<ul class="md-nav__list">
|
|
10565
11162
|
|
|
10566
11163
|
<li class="md-nav__item">
|
|
10567
|
-
<a href="#
|
|
11164
|
+
<a href="#added-in-v237" class="md-nav__link">
|
|
10568
11165
|
<span class="md-ellipsis">
|
|
10569
|
-
Added
|
|
11166
|
+
Added in v2.3.7
|
|
10570
11167
|
</span>
|
|
10571
11168
|
</a>
|
|
10572
11169
|
|
|
10573
11170
|
</li>
|
|
10574
11171
|
|
|
10575
11172
|
<li class="md-nav__item">
|
|
10576
|
-
<a href="#
|
|
11173
|
+
<a href="#changed-in-v237" class="md-nav__link">
|
|
10577
11174
|
<span class="md-ellipsis">
|
|
10578
|
-
Changed
|
|
11175
|
+
Changed in v2.3.7
|
|
10579
11176
|
</span>
|
|
10580
11177
|
</a>
|
|
10581
11178
|
|
|
10582
11179
|
</li>
|
|
10583
11180
|
|
|
10584
11181
|
<li class="md-nav__item">
|
|
10585
|
-
<a href="#
|
|
11182
|
+
<a href="#fixed-in-v237" class="md-nav__link">
|
|
10586
11183
|
<span class="md-ellipsis">
|
|
10587
|
-
Fixed
|
|
11184
|
+
Fixed in v2.3.7
|
|
10588
11185
|
</span>
|
|
10589
11186
|
</a>
|
|
10590
11187
|
|
|
10591
11188
|
</li>
|
|
10592
11189
|
|
|
10593
11190
|
<li class="md-nav__item">
|
|
10594
|
-
<a href="#
|
|
11191
|
+
<a href="#dependencies-in-v237" class="md-nav__link">
|
|
10595
11192
|
<span class="md-ellipsis">
|
|
10596
|
-
Dependencies
|
|
11193
|
+
Dependencies in v2.3.7
|
|
10597
11194
|
</span>
|
|
10598
11195
|
</a>
|
|
10599
11196
|
|
|
10600
11197
|
</li>
|
|
10601
11198
|
|
|
10602
11199
|
<li class="md-nav__item">
|
|
10603
|
-
<a href="#
|
|
11200
|
+
<a href="#housekeeping-in-v237" class="md-nav__link">
|
|
10604
11201
|
<span class="md-ellipsis">
|
|
10605
|
-
Housekeeping
|
|
11202
|
+
Housekeeping in v2.3.7
|
|
10606
11203
|
</span>
|
|
10607
11204
|
</a>
|
|
10608
11205
|
|
|
@@ -10624,36 +11221,36 @@
|
|
|
10624
11221
|
<ul class="md-nav__list">
|
|
10625
11222
|
|
|
10626
11223
|
<li class="md-nav__item">
|
|
10627
|
-
<a href="#
|
|
11224
|
+
<a href="#added-in-v236" class="md-nav__link">
|
|
10628
11225
|
<span class="md-ellipsis">
|
|
10629
|
-
Added
|
|
11226
|
+
Added in v2.3.6
|
|
10630
11227
|
</span>
|
|
10631
11228
|
</a>
|
|
10632
11229
|
|
|
10633
11230
|
</li>
|
|
10634
11231
|
|
|
10635
11232
|
<li class="md-nav__item">
|
|
10636
|
-
<a href="#
|
|
11233
|
+
<a href="#fixed-in-v236" class="md-nav__link">
|
|
10637
11234
|
<span class="md-ellipsis">
|
|
10638
|
-
Fixed
|
|
11235
|
+
Fixed in v2.3.6
|
|
10639
11236
|
</span>
|
|
10640
11237
|
</a>
|
|
10641
11238
|
|
|
10642
11239
|
</li>
|
|
10643
11240
|
|
|
10644
11241
|
<li class="md-nav__item">
|
|
10645
|
-
<a href="#
|
|
11242
|
+
<a href="#documentation-in-v236" class="md-nav__link">
|
|
10646
11243
|
<span class="md-ellipsis">
|
|
10647
|
-
Documentation
|
|
11244
|
+
Documentation in v2.3.6
|
|
10648
11245
|
</span>
|
|
10649
11246
|
</a>
|
|
10650
11247
|
|
|
10651
11248
|
</li>
|
|
10652
11249
|
|
|
10653
11250
|
<li class="md-nav__item">
|
|
10654
|
-
<a href="#
|
|
11251
|
+
<a href="#housekeeping-in-v236" class="md-nav__link">
|
|
10655
11252
|
<span class="md-ellipsis">
|
|
10656
|
-
Housekeeping
|
|
11253
|
+
Housekeeping in v2.3.6
|
|
10657
11254
|
</span>
|
|
10658
11255
|
</a>
|
|
10659
11256
|
|
|
@@ -10675,54 +11272,54 @@
|
|
|
10675
11272
|
<ul class="md-nav__list">
|
|
10676
11273
|
|
|
10677
11274
|
<li class="md-nav__item">
|
|
10678
|
-
<a href="#
|
|
11275
|
+
<a href="#added-in-v235" class="md-nav__link">
|
|
10679
11276
|
<span class="md-ellipsis">
|
|
10680
|
-
Added
|
|
11277
|
+
Added in v2.3.5
|
|
10681
11278
|
</span>
|
|
10682
11279
|
</a>
|
|
10683
11280
|
|
|
10684
11281
|
</li>
|
|
10685
11282
|
|
|
10686
11283
|
<li class="md-nav__item">
|
|
10687
|
-
<a href="#
|
|
11284
|
+
<a href="#changed-in-v235" class="md-nav__link">
|
|
10688
11285
|
<span class="md-ellipsis">
|
|
10689
|
-
Changed
|
|
11286
|
+
Changed in v2.3.5
|
|
10690
11287
|
</span>
|
|
10691
11288
|
</a>
|
|
10692
11289
|
|
|
10693
11290
|
</li>
|
|
10694
11291
|
|
|
10695
11292
|
<li class="md-nav__item">
|
|
10696
|
-
<a href="#
|
|
11293
|
+
<a href="#fixed-in-v235" class="md-nav__link">
|
|
10697
11294
|
<span class="md-ellipsis">
|
|
10698
|
-
Fixed
|
|
11295
|
+
Fixed in v2.3.5
|
|
10699
11296
|
</span>
|
|
10700
11297
|
</a>
|
|
10701
11298
|
|
|
10702
11299
|
</li>
|
|
10703
11300
|
|
|
10704
11301
|
<li class="md-nav__item">
|
|
10705
|
-
<a href="#
|
|
11302
|
+
<a href="#dependencies-in-v235" class="md-nav__link">
|
|
10706
11303
|
<span class="md-ellipsis">
|
|
10707
|
-
Dependencies
|
|
11304
|
+
Dependencies in v2.3.5
|
|
10708
11305
|
</span>
|
|
10709
11306
|
</a>
|
|
10710
11307
|
|
|
10711
11308
|
</li>
|
|
10712
11309
|
|
|
10713
11310
|
<li class="md-nav__item">
|
|
10714
|
-
<a href="#
|
|
11311
|
+
<a href="#documentation-in-v235" class="md-nav__link">
|
|
10715
11312
|
<span class="md-ellipsis">
|
|
10716
|
-
Documentation
|
|
11313
|
+
Documentation in v2.3.5
|
|
10717
11314
|
</span>
|
|
10718
11315
|
</a>
|
|
10719
11316
|
|
|
10720
11317
|
</li>
|
|
10721
11318
|
|
|
10722
11319
|
<li class="md-nav__item">
|
|
10723
|
-
<a href="#
|
|
11320
|
+
<a href="#housekeeping-in-v235" class="md-nav__link">
|
|
10724
11321
|
<span class="md-ellipsis">
|
|
10725
|
-
Housekeeping
|
|
11322
|
+
Housekeeping in v2.3.5
|
|
10726
11323
|
</span>
|
|
10727
11324
|
</a>
|
|
10728
11325
|
|
|
@@ -10744,45 +11341,45 @@
|
|
|
10744
11341
|
<ul class="md-nav__list">
|
|
10745
11342
|
|
|
10746
11343
|
<li class="md-nav__item">
|
|
10747
|
-
<a href="#
|
|
11344
|
+
<a href="#added-in-v234" class="md-nav__link">
|
|
10748
11345
|
<span class="md-ellipsis">
|
|
10749
|
-
Added
|
|
11346
|
+
Added in v2.3.4
|
|
10750
11347
|
</span>
|
|
10751
11348
|
</a>
|
|
10752
11349
|
|
|
10753
11350
|
</li>
|
|
10754
11351
|
|
|
10755
11352
|
<li class="md-nav__item">
|
|
10756
|
-
<a href="#
|
|
11353
|
+
<a href="#changed-in-v234" class="md-nav__link">
|
|
10757
11354
|
<span class="md-ellipsis">
|
|
10758
|
-
Changed
|
|
11355
|
+
Changed in v2.3.4
|
|
10759
11356
|
</span>
|
|
10760
11357
|
</a>
|
|
10761
11358
|
|
|
10762
11359
|
</li>
|
|
10763
11360
|
|
|
10764
11361
|
<li class="md-nav__item">
|
|
10765
|
-
<a href="#
|
|
11362
|
+
<a href="#fixed-in-v234" class="md-nav__link">
|
|
10766
11363
|
<span class="md-ellipsis">
|
|
10767
|
-
Fixed
|
|
11364
|
+
Fixed in v2.3.4
|
|
10768
11365
|
</span>
|
|
10769
11366
|
</a>
|
|
10770
11367
|
|
|
10771
11368
|
</li>
|
|
10772
11369
|
|
|
10773
11370
|
<li class="md-nav__item">
|
|
10774
|
-
<a href="#
|
|
11371
|
+
<a href="#documentation-in-v234" class="md-nav__link">
|
|
10775
11372
|
<span class="md-ellipsis">
|
|
10776
|
-
Documentation
|
|
11373
|
+
Documentation in v2.3.4
|
|
10777
11374
|
</span>
|
|
10778
11375
|
</a>
|
|
10779
11376
|
|
|
10780
11377
|
</li>
|
|
10781
11378
|
|
|
10782
11379
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#
|
|
11380
|
+
<a href="#housekeeping-in-v234" class="md-nav__link">
|
|
10784
11381
|
<span class="md-ellipsis">
|
|
10785
|
-
Housekeeping
|
|
11382
|
+
Housekeeping in v2.3.4
|
|
10786
11383
|
</span>
|
|
10787
11384
|
</a>
|
|
10788
11385
|
|
|
@@ -10804,36 +11401,36 @@
|
|
|
10804
11401
|
<ul class="md-nav__list">
|
|
10805
11402
|
|
|
10806
11403
|
<li class="md-nav__item">
|
|
10807
|
-
<a href="#security" class="md-nav__link">
|
|
11404
|
+
<a href="#security-in-v233" class="md-nav__link">
|
|
10808
11405
|
<span class="md-ellipsis">
|
|
10809
|
-
Security
|
|
11406
|
+
Security in v2.3.3
|
|
10810
11407
|
</span>
|
|
10811
11408
|
</a>
|
|
10812
11409
|
|
|
10813
11410
|
</li>
|
|
10814
11411
|
|
|
10815
11412
|
<li class="md-nav__item">
|
|
10816
|
-
<a href="#
|
|
11413
|
+
<a href="#fixed-in-v233" class="md-nav__link">
|
|
10817
11414
|
<span class="md-ellipsis">
|
|
10818
|
-
Fixed
|
|
11415
|
+
Fixed in v2.3.3
|
|
10819
11416
|
</span>
|
|
10820
11417
|
</a>
|
|
10821
11418
|
|
|
10822
11419
|
</li>
|
|
10823
11420
|
|
|
10824
11421
|
<li class="md-nav__item">
|
|
10825
|
-
<a href="#
|
|
11422
|
+
<a href="#dependencies-in-v233" class="md-nav__link">
|
|
10826
11423
|
<span class="md-ellipsis">
|
|
10827
|
-
Dependencies
|
|
11424
|
+
Dependencies in v2.3.3
|
|
10828
11425
|
</span>
|
|
10829
11426
|
</a>
|
|
10830
11427
|
|
|
10831
11428
|
</li>
|
|
10832
11429
|
|
|
10833
11430
|
<li class="md-nav__item">
|
|
10834
|
-
<a href="#
|
|
11431
|
+
<a href="#housekeeping-in-v233" class="md-nav__link">
|
|
10835
11432
|
<span class="md-ellipsis">
|
|
10836
|
-
Housekeeping
|
|
11433
|
+
Housekeeping in v2.3.3
|
|
10837
11434
|
</span>
|
|
10838
11435
|
</a>
|
|
10839
11436
|
|
|
@@ -10855,36 +11452,36 @@
|
|
|
10855
11452
|
<ul class="md-nav__list">
|
|
10856
11453
|
|
|
10857
11454
|
<li class="md-nav__item">
|
|
10858
|
-
<a href="#
|
|
11455
|
+
<a href="#security-in-v232" class="md-nav__link">
|
|
10859
11456
|
<span class="md-ellipsis">
|
|
10860
|
-
Security
|
|
11457
|
+
Security in v2.3.2
|
|
10861
11458
|
</span>
|
|
10862
11459
|
</a>
|
|
10863
11460
|
|
|
10864
11461
|
</li>
|
|
10865
11462
|
|
|
10866
11463
|
<li class="md-nav__item">
|
|
10867
|
-
<a href="#
|
|
11464
|
+
<a href="#added-in-v232" class="md-nav__link">
|
|
10868
11465
|
<span class="md-ellipsis">
|
|
10869
|
-
Added
|
|
11466
|
+
Added in v2.3.2
|
|
10870
11467
|
</span>
|
|
10871
11468
|
</a>
|
|
10872
11469
|
|
|
10873
11470
|
</li>
|
|
10874
11471
|
|
|
10875
11472
|
<li class="md-nav__item">
|
|
10876
|
-
<a href="#
|
|
11473
|
+
<a href="#fixed-in-v232" class="md-nav__link">
|
|
10877
11474
|
<span class="md-ellipsis">
|
|
10878
|
-
Fixed
|
|
11475
|
+
Fixed in v2.3.2
|
|
10879
11476
|
</span>
|
|
10880
11477
|
</a>
|
|
10881
11478
|
|
|
10882
11479
|
</li>
|
|
10883
11480
|
|
|
10884
11481
|
<li class="md-nav__item">
|
|
10885
|
-
<a href="#
|
|
11482
|
+
<a href="#housekeeping-in-v232" class="md-nav__link">
|
|
10886
11483
|
<span class="md-ellipsis">
|
|
10887
|
-
Housekeeping
|
|
11484
|
+
Housekeeping in v2.3.2
|
|
10888
11485
|
</span>
|
|
10889
11486
|
</a>
|
|
10890
11487
|
|
|
@@ -10906,36 +11503,36 @@
|
|
|
10906
11503
|
<ul class="md-nav__list">
|
|
10907
11504
|
|
|
10908
11505
|
<li class="md-nav__item">
|
|
10909
|
-
<a href="#
|
|
11506
|
+
<a href="#added-in-v231" class="md-nav__link">
|
|
10910
11507
|
<span class="md-ellipsis">
|
|
10911
|
-
Added
|
|
11508
|
+
Added in v2.3.1
|
|
10912
11509
|
</span>
|
|
10913
11510
|
</a>
|
|
10914
11511
|
|
|
10915
11512
|
</li>
|
|
10916
11513
|
|
|
10917
11514
|
<li class="md-nav__item">
|
|
10918
|
-
<a href="#
|
|
11515
|
+
<a href="#changed-in-v231" class="md-nav__link">
|
|
10919
11516
|
<span class="md-ellipsis">
|
|
10920
|
-
Changed
|
|
11517
|
+
Changed in v2.3.1
|
|
10921
11518
|
</span>
|
|
10922
11519
|
</a>
|
|
10923
11520
|
|
|
10924
11521
|
</li>
|
|
10925
11522
|
|
|
10926
11523
|
<li class="md-nav__item">
|
|
10927
|
-
<a href="#
|
|
11524
|
+
<a href="#fixed-in-v231" class="md-nav__link">
|
|
10928
11525
|
<span class="md-ellipsis">
|
|
10929
|
-
Fixed
|
|
11526
|
+
Fixed in v2.3.1
|
|
10930
11527
|
</span>
|
|
10931
11528
|
</a>
|
|
10932
11529
|
|
|
10933
11530
|
</li>
|
|
10934
11531
|
|
|
10935
11532
|
<li class="md-nav__item">
|
|
10936
|
-
<a href="#
|
|
11533
|
+
<a href="#housekeeping-in-v231" class="md-nav__link">
|
|
10937
11534
|
<span class="md-ellipsis">
|
|
10938
|
-
Housekeeping
|
|
11535
|
+
Housekeeping in v2.3.1
|
|
10939
11536
|
</span>
|
|
10940
11537
|
</a>
|
|
10941
11538
|
|
|
@@ -10957,63 +11554,63 @@
|
|
|
10957
11554
|
<ul class="md-nav__list">
|
|
10958
11555
|
|
|
10959
11556
|
<li class="md-nav__item">
|
|
10960
|
-
<a href="#
|
|
11557
|
+
<a href="#security-in-v230" class="md-nav__link">
|
|
10961
11558
|
<span class="md-ellipsis">
|
|
10962
|
-
Security
|
|
11559
|
+
Security in v2.3.0
|
|
10963
11560
|
</span>
|
|
10964
11561
|
</a>
|
|
10965
11562
|
|
|
10966
11563
|
</li>
|
|
10967
11564
|
|
|
10968
11565
|
<li class="md-nav__item">
|
|
10969
|
-
<a href="#
|
|
11566
|
+
<a href="#added-in-v230" class="md-nav__link">
|
|
10970
11567
|
<span class="md-ellipsis">
|
|
10971
|
-
Added
|
|
11568
|
+
Added in v2.3.0
|
|
10972
11569
|
</span>
|
|
10973
11570
|
</a>
|
|
10974
11571
|
|
|
10975
11572
|
</li>
|
|
10976
11573
|
|
|
10977
11574
|
<li class="md-nav__item">
|
|
10978
|
-
<a href="#
|
|
11575
|
+
<a href="#changed-in-v230" class="md-nav__link">
|
|
10979
11576
|
<span class="md-ellipsis">
|
|
10980
|
-
Changed
|
|
11577
|
+
Changed in v2.3.0
|
|
10981
11578
|
</span>
|
|
10982
11579
|
</a>
|
|
10983
11580
|
|
|
10984
11581
|
</li>
|
|
10985
11582
|
|
|
10986
11583
|
<li class="md-nav__item">
|
|
10987
|
-
<a href="#removed" class="md-nav__link">
|
|
11584
|
+
<a href="#removed-in-v230" class="md-nav__link">
|
|
10988
11585
|
<span class="md-ellipsis">
|
|
10989
|
-
Removed
|
|
11586
|
+
Removed in v2.3.0
|
|
10990
11587
|
</span>
|
|
10991
11588
|
</a>
|
|
10992
11589
|
|
|
10993
11590
|
</li>
|
|
10994
11591
|
|
|
10995
11592
|
<li class="md-nav__item">
|
|
10996
|
-
<a href="#
|
|
11593
|
+
<a href="#fixed-in-v230" class="md-nav__link">
|
|
10997
11594
|
<span class="md-ellipsis">
|
|
10998
|
-
Fixed
|
|
11595
|
+
Fixed in v2.3.0
|
|
10999
11596
|
</span>
|
|
11000
11597
|
</a>
|
|
11001
11598
|
|
|
11002
11599
|
</li>
|
|
11003
11600
|
|
|
11004
11601
|
<li class="md-nav__item">
|
|
11005
|
-
<a href="#
|
|
11602
|
+
<a href="#documentation-in-v230" class="md-nav__link">
|
|
11006
11603
|
<span class="md-ellipsis">
|
|
11007
|
-
Documentation
|
|
11604
|
+
Documentation in v2.3.0
|
|
11008
11605
|
</span>
|
|
11009
11606
|
</a>
|
|
11010
11607
|
|
|
11011
11608
|
</li>
|
|
11012
11609
|
|
|
11013
11610
|
<li class="md-nav__item">
|
|
11014
|
-
<a href="#
|
|
11611
|
+
<a href="#housekeeping-in-v230" class="md-nav__link">
|
|
11015
11612
|
<span class="md-ellipsis">
|
|
11016
|
-
Housekeeping
|
|
11613
|
+
Housekeeping in v2.3.0
|
|
11017
11614
|
</span>
|
|
11018
11615
|
</a>
|
|
11019
11616
|
|
|
@@ -11035,81 +11632,81 @@
|
|
|
11035
11632
|
<ul class="md-nav__list">
|
|
11036
11633
|
|
|
11037
11634
|
<li class="md-nav__item">
|
|
11038
|
-
<a href="#
|
|
11635
|
+
<a href="#security-in-v230-beta1" class="md-nav__link">
|
|
11039
11636
|
<span class="md-ellipsis">
|
|
11040
|
-
Security
|
|
11637
|
+
Security in v2.3.0-beta.1
|
|
11041
11638
|
</span>
|
|
11042
11639
|
</a>
|
|
11043
11640
|
|
|
11044
11641
|
</li>
|
|
11045
11642
|
|
|
11046
11643
|
<li class="md-nav__item">
|
|
11047
|
-
<a href="#
|
|
11644
|
+
<a href="#added-in-v230-beta1" class="md-nav__link">
|
|
11048
11645
|
<span class="md-ellipsis">
|
|
11049
|
-
Added
|
|
11646
|
+
Added in v2.3.0-beta.1
|
|
11050
11647
|
</span>
|
|
11051
11648
|
</a>
|
|
11052
11649
|
|
|
11053
11650
|
</li>
|
|
11054
11651
|
|
|
11055
11652
|
<li class="md-nav__item">
|
|
11056
|
-
<a href="#
|
|
11653
|
+
<a href="#changed-in-v230-beta1" class="md-nav__link">
|
|
11057
11654
|
<span class="md-ellipsis">
|
|
11058
|
-
Changed
|
|
11655
|
+
Changed in v2.3.0-beta.1
|
|
11059
11656
|
</span>
|
|
11060
11657
|
</a>
|
|
11061
11658
|
|
|
11062
11659
|
</li>
|
|
11063
11660
|
|
|
11064
11661
|
<li class="md-nav__item">
|
|
11065
|
-
<a href="#deprecated" class="md-nav__link">
|
|
11662
|
+
<a href="#deprecated-in-v230-beta1" class="md-nav__link">
|
|
11066
11663
|
<span class="md-ellipsis">
|
|
11067
|
-
Deprecated
|
|
11664
|
+
Deprecated in v2.3.0-beta.1
|
|
11068
11665
|
</span>
|
|
11069
11666
|
</a>
|
|
11070
11667
|
|
|
11071
11668
|
</li>
|
|
11072
11669
|
|
|
11073
11670
|
<li class="md-nav__item">
|
|
11074
|
-
<a href="#
|
|
11671
|
+
<a href="#removed-in-v230-beta1" class="md-nav__link">
|
|
11075
11672
|
<span class="md-ellipsis">
|
|
11076
|
-
Removed
|
|
11673
|
+
Removed in v2.3.0-beta.1
|
|
11077
11674
|
</span>
|
|
11078
11675
|
</a>
|
|
11079
11676
|
|
|
11080
11677
|
</li>
|
|
11081
11678
|
|
|
11082
11679
|
<li class="md-nav__item">
|
|
11083
|
-
<a href="#
|
|
11680
|
+
<a href="#fixed-in-v230-beta1" class="md-nav__link">
|
|
11084
11681
|
<span class="md-ellipsis">
|
|
11085
|
-
Fixed
|
|
11682
|
+
Fixed in v2.3.0-beta.1
|
|
11086
11683
|
</span>
|
|
11087
11684
|
</a>
|
|
11088
11685
|
|
|
11089
11686
|
</li>
|
|
11090
11687
|
|
|
11091
11688
|
<li class="md-nav__item">
|
|
11092
|
-
<a href="#
|
|
11689
|
+
<a href="#dependencies-in-v230-beta1" class="md-nav__link">
|
|
11093
11690
|
<span class="md-ellipsis">
|
|
11094
|
-
Dependencies
|
|
11691
|
+
Dependencies in v2.3.0-beta.1
|
|
11095
11692
|
</span>
|
|
11096
11693
|
</a>
|
|
11097
11694
|
|
|
11098
11695
|
</li>
|
|
11099
11696
|
|
|
11100
11697
|
<li class="md-nav__item">
|
|
11101
|
-
<a href="#
|
|
11698
|
+
<a href="#documentation-in-v230-beta1" class="md-nav__link">
|
|
11102
11699
|
<span class="md-ellipsis">
|
|
11103
|
-
Documentation
|
|
11700
|
+
Documentation in v2.3.0-beta.1
|
|
11104
11701
|
</span>
|
|
11105
11702
|
</a>
|
|
11106
11703
|
|
|
11107
11704
|
</li>
|
|
11108
11705
|
|
|
11109
11706
|
<li class="md-nav__item">
|
|
11110
|
-
<a href="#
|
|
11707
|
+
<a href="#housekeeping-in-v230-beta1" class="md-nav__link">
|
|
11111
11708
|
<span class="md-ellipsis">
|
|
11112
|
-
Housekeeping
|
|
11709
|
+
Housekeeping in v2.3.0-beta.1
|
|
11113
11710
|
</span>
|
|
11114
11711
|
</a>
|
|
11115
11712
|
|
|
@@ -11138,8 +11735,6 @@
|
|
|
11138
11735
|
|
|
11139
11736
|
|
|
11140
11737
|
|
|
11141
|
-
<!-- markdownlint-disable MD024 -->
|
|
11142
|
-
|
|
11143
11738
|
<h1 id="nautobot-v23">Nautobot v2.3<a class="headerlink" href="#nautobot-v23" title="Permanent link">¶</a></h1>
|
|
11144
11739
|
<p>This document describes all new features and changes in Nautobot 2.3.</p>
|
|
11145
11740
|
<h2 id="upgrade-actions">Upgrade Actions<a class="headerlink" href="#upgrade-actions" title="Permanent link">¶</a></h2>
|
|
@@ -11229,15 +11824,140 @@
|
|
|
11229
11824
|
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11230
11825
|
<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
11826
|
<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>
|
|
11827
|
+
<!-- pyml disable-num-lines 2 blanks-around-headers -->
|
|
11232
11828
|
<!-- towncrier release notes start -->
|
|
11829
|
+
<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>
|
|
11830
|
+
<h3 id="fixed-in-v2316">Fixed in v2.3.16<a class="headerlink" href="#fixed-in-v2316" title="Permanent link">¶</a></h3>
|
|
11831
|
+
<ul>
|
|
11832
|
+
<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>
|
|
11833
|
+
<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>
|
|
11834
|
+
<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>
|
|
11835
|
+
<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>
|
|
11836
|
+
<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>
|
|
11837
|
+
<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>
|
|
11838
|
+
<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>
|
|
11839
|
+
</ul>
|
|
11840
|
+
<h3 id="housekeeping-in-v2316">Housekeeping in v2.3.16<a class="headerlink" href="#housekeeping-in-v2316" title="Permanent link">¶</a></h3>
|
|
11841
|
+
<ul>
|
|
11842
|
+
<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>
|
|
11843
|
+
<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>
|
|
11844
|
+
</ul>
|
|
11845
|
+
<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>
|
|
11846
|
+
<h3 id="security-in-v2315">Security in v2.3.15<a class="headerlink" href="#security-in-v2315" title="Permanent link">¶</a></h3>
|
|
11847
|
+
<ul>
|
|
11848
|
+
<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>
|
|
11849
|
+
</ul>
|
|
11850
|
+
<h3 id="added-in-v2315">Added in v2.3.15<a class="headerlink" href="#added-in-v2315" title="Permanent link">¶</a></h3>
|
|
11851
|
+
<ul>
|
|
11852
|
+
<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>
|
|
11853
|
+
</ul>
|
|
11854
|
+
<h3 id="changed-in-v2315">Changed in v2.3.15<a class="headerlink" href="#changed-in-v2315" title="Permanent link">¶</a></h3>
|
|
11855
|
+
<ul>
|
|
11856
|
+
<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>
|
|
11857
|
+
</ul>
|
|
11858
|
+
<h3 id="fixed-in-v2315">Fixed in v2.3.15<a class="headerlink" href="#fixed-in-v2315" title="Permanent link">¶</a></h3>
|
|
11859
|
+
<ul>
|
|
11860
|
+
<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>
|
|
11861
|
+
<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>
|
|
11862
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6702">#6702</a> - Resolved issue with TagsBulkEditFormMixin missing self.model.</li>
|
|
11863
|
+
</ul>
|
|
11864
|
+
<h3 id="dependencies-in-v2315">Dependencies in v2.3.15<a class="headerlink" href="#dependencies-in-v2315" title="Permanent link">¶</a></h3>
|
|
11865
|
+
<ul>
|
|
11866
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated <code>nh3</code> dependency to <code>~0.2.20</code>.</li>
|
|
11867
|
+
<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>
|
|
11868
|
+
</ul>
|
|
11869
|
+
<h3 id="housekeeping-in-v2315">Housekeeping in v2.3.15<a class="headerlink" href="#housekeeping-in-v2315" title="Permanent link">¶</a></h3>
|
|
11870
|
+
<ul>
|
|
11871
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6688">#6688</a> - Cleaned-up documentation, misc fixes for VSCode DevContainer workflow.</li>
|
|
11872
|
+
<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>
|
|
11873
|
+
<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>
|
|
11874
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6706">#6706</a> - Removed unnecessary <code>user-data.json</code> integration-test fixture file.</li>
|
|
11875
|
+
</ul>
|
|
11876
|
+
<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>
|
|
11877
|
+
<h3 id="added-in-v2314">Added in v2.3.14<a class="headerlink" href="#added-in-v2314" title="Permanent link">¶</a></h3>
|
|
11878
|
+
<ul>
|
|
11879
|
+
<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>
|
|
11880
|
+
</ul>
|
|
11881
|
+
<h3 id="changed-in-v2314">Changed in v2.3.14<a class="headerlink" href="#changed-in-v2314" title="Permanent link">¶</a></h3>
|
|
11882
|
+
<ul>
|
|
11883
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6518">#6518</a> - Added VRFs column to Prefixes and Child Prefixes tables.</li>
|
|
11884
|
+
<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>
|
|
11885
|
+
<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>
|
|
11886
|
+
</ul>
|
|
11887
|
+
<h3 id="fixed-in-v2314">Fixed in v2.3.14<a class="headerlink" href="#fixed-in-v2314" title="Permanent link">¶</a></h3>
|
|
11888
|
+
<ul>
|
|
11889
|
+
<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>
|
|
11890
|
+
<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>
|
|
11891
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6470">#6470</a> - Fixed untagged VLAN dropdown options mismatch in InterfaceEditForm and in InterfaceBulkEditForm.</li>
|
|
11892
|
+
<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>
|
|
11893
|
+
<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>
|
|
11894
|
+
<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>
|
|
11895
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6678">#6678</a> - Fixed incorrect copy button behavior on global search page.</li>
|
|
11896
|
+
</ul>
|
|
11897
|
+
<h3 id="documentation-in-v2314">Documentation in v2.3.14<a class="headerlink" href="#documentation-in-v2314" title="Permanent link">¶</a></h3>
|
|
11898
|
+
<ul>
|
|
11899
|
+
<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>
|
|
11900
|
+
</ul>
|
|
11901
|
+
<h3 id="housekeeping-in-v2314">Housekeeping in v2.3.14<a class="headerlink" href="#housekeeping-in-v2314" title="Permanent link">¶</a></h3>
|
|
11902
|
+
<ul>
|
|
11903
|
+
<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>
|
|
11904
|
+
<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>
|
|
11905
|
+
<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>
|
|
11906
|
+
</ul>
|
|
11907
|
+
<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>
|
|
11908
|
+
<h3 id="security-in-v2313">Security in v2.3.13<a class="headerlink" href="#security-in-v2313" title="Permanent link">¶</a></h3>
|
|
11909
|
+
<ul>
|
|
11910
|
+
<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>
|
|
11911
|
+
</ul>
|
|
11912
|
+
<h3 id="added-in-v2313">Added in v2.3.13<a class="headerlink" href="#added-in-v2313" title="Permanent link">¶</a></h3>
|
|
11913
|
+
<ul>
|
|
11914
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4817">#4817</a> - Added <code>Cluster</code> field on DeviceBulkEditForm.</li>
|
|
11915
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5333">#5333</a> - Added <code>Comments</code> field on DeviceBulkEditForm.</li>
|
|
11916
|
+
<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>
|
|
11917
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6586">#6586</a> - Added description and weight on RoleBulkEditForm.</li>
|
|
11918
|
+
<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>
|
|
11919
|
+
<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>
|
|
11920
|
+
<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>
|
|
11921
|
+
<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>
|
|
11922
|
+
<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>
|
|
11923
|
+
</ul>
|
|
11924
|
+
<h3 id="changed-in-v2313">Changed in v2.3.13<a class="headerlink" href="#changed-in-v2313" title="Permanent link">¶</a></h3>
|
|
11925
|
+
<ul>
|
|
11926
|
+
<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>
|
|
11927
|
+
</ul>
|
|
11928
|
+
<h3 id="fixed-in-v2313">Fixed in v2.3.13<a class="headerlink" href="#fixed-in-v2313" title="Permanent link">¶</a></h3>
|
|
11929
|
+
<ul>
|
|
11930
|
+
<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>
|
|
11931
|
+
<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>
|
|
11932
|
+
<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>
|
|
11933
|
+
<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>
|
|
11934
|
+
<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>
|
|
11935
|
+
<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>
|
|
11936
|
+
<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>
|
|
11937
|
+
<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>
|
|
11938
|
+
<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>
|
|
11939
|
+
</ul>
|
|
11940
|
+
<h3 id="dependencies-in-v2313">Dependencies in v2.3.13<a class="headerlink" href="#dependencies-in-v2313" title="Permanent link">¶</a></h3>
|
|
11941
|
+
<ul>
|
|
11942
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>nh3</code> to <code>~0.2.19</code>.</li>
|
|
11943
|
+
</ul>
|
|
11944
|
+
<h3 id="documentation-in-v2313">Documentation in v2.3.13<a class="headerlink" href="#documentation-in-v2313" title="Permanent link">¶</a></h3>
|
|
11945
|
+
<ul>
|
|
11946
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6622">#6622</a> - Fixed AzureAD documentation for custom_module logging example.</li>
|
|
11947
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6636">#6636</a> - Fixed <code>group_sync</code> path in the SSO documentation.</li>
|
|
11948
|
+
</ul>
|
|
11949
|
+
<h3 id="housekeeping-in-v2313">Housekeeping in v2.3.13<a class="headerlink" href="#housekeeping-in-v2313" title="Permanent link">¶</a></h3>
|
|
11950
|
+
<ul>
|
|
11951
|
+
<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>
|
|
11952
|
+
</ul>
|
|
11233
11953
|
<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="
|
|
11954
|
+
<h3 id="added-in-v2312">Added in v2.3.12<a class="headerlink" href="#added-in-v2312" title="Permanent link">¶</a></h3>
|
|
11235
11955
|
<ul>
|
|
11236
11956
|
<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
11957
|
<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
11958
|
<li><a href="https://github.com/nautobot/nautobot/issues/6550">#6550</a> - Added OSFP-XD (800GE and 1600GE) and OSFP1600 interface types.</li>
|
|
11239
11959
|
</ul>
|
|
11240
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11960
|
+
<h3 id="fixed-in-v2312">Fixed in v2.3.12<a class="headerlink" href="#fixed-in-v2312" title="Permanent link">¶</a></h3>
|
|
11241
11961
|
<ul>
|
|
11242
11962
|
<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
11963
|
<li><a href="https://github.com/nautobot/nautobot/issues/6478">#6478</a> - Fixed inconsistent rendering of the Role field.</li>
|
|
@@ -11249,34 +11969,34 @@
|
|
|
11249
11969
|
<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
11970
|
<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
11971
|
</ul>
|
|
11252
|
-
<h3 id="
|
|
11972
|
+
<h3 id="dependencies-in-v2312">Dependencies in v2.3.12<a class="headerlink" href="#dependencies-in-v2312" title="Permanent link">¶</a></h3>
|
|
11253
11973
|
<ul>
|
|
11254
11974
|
<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
11975
|
</ul>
|
|
11256
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11976
|
+
<h3 id="documentation-in-v2312">Documentation in v2.3.12<a class="headerlink" href="#documentation-in-v2312" title="Permanent link">¶</a></h3>
|
|
11257
11977
|
<ul>
|
|
11258
11978
|
<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
11979
|
<li><a href="https://github.com/nautobot/nautobot/issues/6524">#6524</a> - Updated AzureAD authentication documentation.</li>
|
|
11260
11980
|
<li><a href="https://github.com/nautobot/nautobot/issues/6567">#6567</a> - Fixed incorrect example in documentation on using test factories.</li>
|
|
11261
11981
|
</ul>
|
|
11262
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11982
|
+
<h3 id="housekeeping-in-v2312">Housekeeping in v2.3.12<a class="headerlink" href="#housekeeping-in-v2312" title="Permanent link">¶</a></h3>
|
|
11263
11983
|
<ul>
|
|
11264
11984
|
<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
11985
|
<li><a href="https://github.com/nautobot/nautobot/issues/6500">#6500</a> - Added support for <code>invoke showmigrations</code> command.</li>
|
|
11266
11986
|
</ul>
|
|
11267
11987
|
<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="
|
|
11988
|
+
<h3 id="added-in-v2311">Added in v2.3.11<a class="headerlink" href="#added-in-v2311" title="Permanent link">¶</a></h3>
|
|
11269
11989
|
<ul>
|
|
11270
11990
|
<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
11991
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added optional <code>lookup</code> parameter to <code>LinkedCountColumn</code>.</li>
|
|
11272
11992
|
</ul>
|
|
11273
|
-
<h3 id="
|
|
11993
|
+
<h3 id="changed-in-v2311">Changed in v2.3.11<a class="headerlink" href="#changed-in-v2311" title="Permanent link">¶</a></h3>
|
|
11274
11994
|
<ul>
|
|
11275
11995
|
<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
11996
|
<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
11997
|
<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
11998
|
</ul>
|
|
11279
|
-
<h3 id="
|
|
11999
|
+
<h3 id="fixed-in-v2311">Fixed in v2.3.11<a class="headerlink" href="#fixed-in-v2311" title="Permanent link">¶</a></h3>
|
|
11280
12000
|
<ul>
|
|
11281
12001
|
<li><a href="https://github.com/nautobot/nautobot/issues/6414">#6414</a> - Fixed layout bug in browsable REST API.</li>
|
|
11282
12002
|
<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 +12007,11 @@
|
|
|
11287
12007
|
<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
12008
|
<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
12009
|
</ul>
|
|
11290
|
-
<h3 id="
|
|
12010
|
+
<h3 id="documentation-in-v2311">Documentation in v2.3.11<a class="headerlink" href="#documentation-in-v2311" title="Permanent link">¶</a></h3>
|
|
11291
12011
|
<ul>
|
|
11292
12012
|
<li><a href="https://github.com/nautobot/nautobot/issues/6485">#6485</a> - Added additional clarification for enabling request profiling via user profile.</li>
|
|
11293
12013
|
</ul>
|
|
11294
|
-
<h3 id="
|
|
12014
|
+
<h3 id="housekeeping-in-v2311">Housekeeping in v2.3.11<a class="headerlink" href="#housekeeping-in-v2311" title="Permanent link">¶</a></h3>
|
|
11295
12015
|
<ul>
|
|
11296
12016
|
<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
12017
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Fixed incorrect assertion in core navbar integration tests.</li>
|
|
@@ -11300,62 +12020,62 @@
|
|
|
11300
12020
|
<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
12021
|
</ul>
|
|
11302
12022
|
<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="
|
|
12023
|
+
<h3 id="added-in-v2310">Added in v2.3.10<a class="headerlink" href="#added-in-v2310" title="Permanent link">¶</a></h3>
|
|
11304
12024
|
<ul>
|
|
11305
12025
|
<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
12026
|
<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
12027
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added logging to JobResults for CustomField provisioning background tasks.</li>
|
|
11308
12028
|
<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
12029
|
</ul>
|
|
11310
|
-
<h3 id="
|
|
12030
|
+
<h3 id="changed-in-v2310">Changed in v2.3.10<a class="headerlink" href="#changed-in-v2310" title="Permanent link">¶</a></h3>
|
|
11311
12031
|
<ul>
|
|
11312
12032
|
<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
12033
|
</ul>
|
|
11314
|
-
<h3 id="
|
|
12034
|
+
<h3 id="fixed-in-v2310">Fixed in v2.3.10<a class="headerlink" href="#fixed-in-v2310" title="Permanent link">¶</a></h3>
|
|
11315
12035
|
<ul>
|
|
11316
12036
|
<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
12037
|
<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
12038
|
</ul>
|
|
11319
|
-
<h3 id="
|
|
12039
|
+
<h3 id="dependencies-in-v2310">Dependencies in v2.3.10<a class="headerlink" href="#dependencies-in-v2310" title="Permanent link">¶</a></h3>
|
|
11320
12040
|
<ul>
|
|
11321
12041
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
|
|
11322
12042
|
</ul>
|
|
11323
|
-
<h3 id="
|
|
12043
|
+
<h3 id="housekeeping-in-v2310">Housekeeping in v2.3.10<a class="headerlink" href="#housekeeping-in-v2310" title="Permanent link">¶</a></h3>
|
|
11324
12044
|
<ul>
|
|
11325
12045
|
<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
12046
|
</ul>
|
|
11327
12047
|
<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="
|
|
12048
|
+
<h3 id="added-in-v239">Added in v2.3.9<a class="headerlink" href="#added-in-v239" title="Permanent link">¶</a></h3>
|
|
11329
12049
|
<ul>
|
|
11330
12050
|
<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
12051
|
<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
12052
|
<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
12053
|
</ul>
|
|
11334
|
-
<h3 id="
|
|
12054
|
+
<h3 id="changed-in-v239">Changed in v2.3.9<a class="headerlink" href="#changed-in-v239" title="Permanent link">¶</a></h3>
|
|
11335
12055
|
<ul>
|
|
11336
12056
|
<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
12057
|
<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
12058
|
<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
12059
|
</ul>
|
|
11340
|
-
<h3 id="
|
|
12060
|
+
<h3 id="fixed-in-v239">Fixed in v2.3.9<a class="headerlink" href="#fixed-in-v239" title="Permanent link">¶</a></h3>
|
|
11341
12061
|
<ul>
|
|
11342
12062
|
<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
12063
|
<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
12064
|
<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
12065
|
<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
12066
|
<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
|
|
12067
|
+
<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
12068
|
</ul>
|
|
11349
|
-
<h3 id="
|
|
12069
|
+
<h3 id="dependencies-in-v239">Dependencies in v2.3.9<a class="headerlink" href="#dependencies-in-v239" title="Permanent link">¶</a></h3>
|
|
11350
12070
|
<ul>
|
|
11351
12071
|
<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
12072
|
</ul>
|
|
11353
|
-
<h3 id="
|
|
12073
|
+
<h3 id="housekeeping-in-v239">Housekeeping in v2.3.9<a class="headerlink" href="#housekeeping-in-v239" title="Permanent link">¶</a></h3>
|
|
11354
12074
|
<ul>
|
|
11355
12075
|
<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
12076
|
</ul>
|
|
11357
12077
|
<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="
|
|
12078
|
+
<h3 id="fixed-in-v238">Fixed in v2.3.8<a class="headerlink" href="#fixed-in-v238" title="Permanent link">¶</a></h3>
|
|
11359
12079
|
<ul>
|
|
11360
12080
|
<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
12081
|
<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 +12084,27 @@
|
|
|
11364
12084
|
<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
12085
|
</ul>
|
|
11366
12086
|
<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="
|
|
12087
|
+
<h3 id="added-in-v237">Added in v2.3.7<a class="headerlink" href="#added-in-v237" title="Permanent link">¶</a></h3>
|
|
11368
12088
|
<ul>
|
|
11369
12089
|
<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
12090
|
</ul>
|
|
11371
|
-
<h3 id="
|
|
12091
|
+
<h3 id="changed-in-v237">Changed in v2.3.7<a class="headerlink" href="#changed-in-v237" title="Permanent link">¶</a></h3>
|
|
11372
12092
|
<ul>
|
|
11373
12093
|
<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
12094
|
<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
12095
|
</ul>
|
|
11376
|
-
<h3 id="
|
|
12096
|
+
<h3 id="fixed-in-v237">Fixed in v2.3.7<a class="headerlink" href="#fixed-in-v237" title="Permanent link">¶</a></h3>
|
|
11377
12097
|
<ul>
|
|
11378
12098
|
<li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
|
|
11379
12099
|
<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
12100
|
<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
12101
|
<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
12102
|
</ul>
|
|
11383
|
-
<h3 id="
|
|
12103
|
+
<h3 id="dependencies-in-v237">Dependencies in v2.3.7<a class="headerlink" href="#dependencies-in-v237" title="Permanent link">¶</a></h3>
|
|
11384
12104
|
<ul>
|
|
11385
12105
|
<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
12106
|
</ul>
|
|
11387
|
-
<h3 id="
|
|
12107
|
+
<h3 id="housekeeping-in-v237">Housekeeping in v2.3.7<a class="headerlink" href="#housekeeping-in-v237" title="Permanent link">¶</a></h3>
|
|
11388
12108
|
<ul>
|
|
11389
12109
|
<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
12110
|
<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 +12115,36 @@
|
|
|
11395
12115
|
<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
12116
|
</ul>
|
|
11397
12117
|
<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="
|
|
12118
|
+
<h3 id="added-in-v236">Added in v2.3.6<a class="headerlink" href="#added-in-v236" title="Permanent link">¶</a></h3>
|
|
11399
12119
|
<ul>
|
|
11400
12120
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
11401
12121
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
11402
12122
|
</ul>
|
|
11403
|
-
<h3 id="
|
|
12123
|
+
<h3 id="fixed-in-v236">Fixed in v2.3.6<a class="headerlink" href="#fixed-in-v236" title="Permanent link">¶</a></h3>
|
|
11404
12124
|
<ul>
|
|
11405
12125
|
<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
12126
|
<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
12127
|
</ul>
|
|
11408
|
-
<h3 id="
|
|
12128
|
+
<h3 id="documentation-in-v236">Documentation in v2.3.6<a class="headerlink" href="#documentation-in-v236" title="Permanent link">¶</a></h3>
|
|
11409
12129
|
<ul>
|
|
11410
12130
|
<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
12131
|
<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
12132
|
</ul>
|
|
11413
|
-
<h3 id="
|
|
12133
|
+
<h3 id="housekeeping-in-v236">Housekeeping in v2.3.6<a class="headerlink" href="#housekeeping-in-v236" title="Permanent link">¶</a></h3>
|
|
11414
12134
|
<ul>
|
|
11415
12135
|
<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
12136
|
</ul>
|
|
11417
12137
|
<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="
|
|
12138
|
+
<h3 id="added-in-v235">Added in v2.3.5<a class="headerlink" href="#added-in-v235" title="Permanent link">¶</a></h3>
|
|
11419
12139
|
<ul>
|
|
11420
12140
|
<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
12141
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
|
|
11422
12142
|
</ul>
|
|
11423
|
-
<h3 id="
|
|
12143
|
+
<h3 id="changed-in-v235">Changed in v2.3.5<a class="headerlink" href="#changed-in-v235" title="Permanent link">¶</a></h3>
|
|
11424
12144
|
<ul>
|
|
11425
12145
|
<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
12146
|
</ul>
|
|
11427
|
-
<h3 id="
|
|
12147
|
+
<h3 id="fixed-in-v235">Fixed in v2.3.5<a class="headerlink" href="#fixed-in-v235" title="Permanent link">¶</a></h3>
|
|
11428
12148
|
<ul>
|
|
11429
12149
|
<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
12150
|
<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 +12155,16 @@
|
|
|
11435
12155
|
<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
12156
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
|
|
11437
12157
|
</ul>
|
|
11438
|
-
<h3 id="
|
|
12158
|
+
<h3 id="dependencies-in-v235">Dependencies in v2.3.5<a class="headerlink" href="#dependencies-in-v235" title="Permanent link">¶</a></h3>
|
|
11439
12159
|
<ul>
|
|
11440
12160
|
<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
12161
|
<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
12162
|
</ul>
|
|
11443
|
-
<h3 id="
|
|
12163
|
+
<h3 id="documentation-in-v235">Documentation in v2.3.5<a class="headerlink" href="#documentation-in-v235" title="Permanent link">¶</a></h3>
|
|
11444
12164
|
<ul>
|
|
11445
12165
|
<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
12166
|
</ul>
|
|
11447
|
-
<h3 id="
|
|
12167
|
+
<h3 id="housekeeping-in-v235">Housekeeping in v2.3.5<a class="headerlink" href="#housekeeping-in-v235" title="Permanent link">¶</a></h3>
|
|
11448
12168
|
<ul>
|
|
11449
12169
|
<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
12170
|
<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 +12173,22 @@
|
|
|
11453
12173
|
<li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
|
|
11454
12174
|
</ul>
|
|
11455
12175
|
<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="
|
|
12176
|
+
<h3 id="added-in-v234">Added in v2.3.4<a class="headerlink" href="#added-in-v234" title="Permanent link">¶</a></h3>
|
|
11457
12177
|
<ul>
|
|
11458
12178
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
|
|
11459
12179
|
<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
12180
|
</ul>
|
|
11461
|
-
<h3 id="
|
|
12181
|
+
<h3 id="changed-in-v234">Changed in v2.3.4<a class="headerlink" href="#changed-in-v234" title="Permanent link">¶</a></h3>
|
|
11462
12182
|
<ul>
|
|
11463
12183
|
<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
12184
|
</ul>
|
|
11465
|
-
<h3 id="
|
|
12185
|
+
<h3 id="fixed-in-v234">Fixed in v2.3.4<a class="headerlink" href="#fixed-in-v234" title="Permanent link">¶</a></h3>
|
|
11466
12186
|
<ul>
|
|
11467
12187
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
11468
12188
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
11469
12189
|
<li><a href="https://github.com/nautobot/nautobot/issues/6230">#6230</a> - Fixed an issue with Celery Scheduler around datetime imports.</li>
|
|
11470
12190
|
</ul>
|
|
11471
|
-
<h3 id="
|
|
12191
|
+
<h3 id="documentation-in-v234">Documentation in v2.3.4<a class="headerlink" href="#documentation-in-v234" title="Permanent link">¶</a></h3>
|
|
11472
12192
|
<ul>
|
|
11473
12193
|
<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
12194
|
<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 +12196,7 @@
|
|
|
11476
12196
|
<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
12197
|
<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
12198
|
</ul>
|
|
11479
|
-
<h3 id="
|
|
12199
|
+
<h3 id="housekeeping-in-v234">Housekeeping in v2.3.4<a class="headerlink" href="#housekeeping-in-v234" title="Permanent link">¶</a></h3>
|
|
11480
12200
|
<ul>
|
|
11481
12201
|
<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
12202
|
<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 +12204,22 @@
|
|
|
11484
12204
|
<li><a href="https://github.com/nautobot/nautobot/issues/6227">#6227</a> - Fixed typo in app upstream testing workflow.</li>
|
|
11485
12205
|
</ul>
|
|
11486
12206
|
<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>
|
|
12207
|
+
<h3 id="security-in-v233">Security in v2.3.3<a class="headerlink" href="#security-in-v233" title="Permanent link">¶</a></h3>
|
|
11488
12208
|
<ul>
|
|
11489
12209
|
<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
12210
|
</ul>
|
|
11491
|
-
<h3 id="
|
|
12211
|
+
<h3 id="fixed-in-v233">Fixed in v2.3.3<a class="headerlink" href="#fixed-in-v233" title="Permanent link">¶</a></h3>
|
|
11492
12212
|
<ul>
|
|
11493
12213
|
<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
12214
|
<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
12215
|
<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
12216
|
<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
12217
|
</ul>
|
|
11498
|
-
<h3 id="
|
|
12218
|
+
<h3 id="dependencies-in-v233">Dependencies in v2.3.3<a class="headerlink" href="#dependencies-in-v233" title="Permanent link">¶</a></h3>
|
|
11499
12219
|
<ul>
|
|
11500
12220
|
<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
12221
|
</ul>
|
|
11502
|
-
<h3 id="
|
|
12222
|
+
<h3 id="housekeeping-in-v233">Housekeeping in v2.3.3<a class="headerlink" href="#housekeeping-in-v233" title="Permanent link">¶</a></h3>
|
|
11503
12223
|
<ul>
|
|
11504
12224
|
<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
12225
|
<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 +12229,18 @@
|
|
|
11509
12229
|
<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
12230
|
</ul>
|
|
11511
12231
|
<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="
|
|
12232
|
+
<h3 id="security-in-v232">Security in v2.3.2<a class="headerlink" href="#security-in-v232" title="Permanent link">¶</a></h3>
|
|
11513
12233
|
<ul>
|
|
11514
12234
|
<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
12235
|
</ul>
|
|
11516
|
-
<h3 id="
|
|
12236
|
+
<h3 id="added-in-v232">Added in v2.3.2<a class="headerlink" href="#added-in-v232" title="Permanent link">¶</a></h3>
|
|
11517
12237
|
<ul>
|
|
11518
12238
|
<li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
|
|
11519
12239
|
<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
12240
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
11521
12241
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
11522
12242
|
</ul>
|
|
11523
|
-
<h3 id="
|
|
12243
|
+
<h3 id="fixed-in-v232">Fixed in v2.3.2<a class="headerlink" href="#fixed-in-v232" title="Permanent link">¶</a></h3>
|
|
11524
12244
|
<ul>
|
|
11525
12245
|
<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
12246
|
<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 +12249,7 @@
|
|
|
11529
12249
|
<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
12250
|
<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
12251
|
</ul>
|
|
11532
|
-
<h3 id="
|
|
12252
|
+
<h3 id="housekeeping-in-v232">Housekeeping in v2.3.2<a class="headerlink" href="#housekeeping-in-v232" title="Permanent link">¶</a></h3>
|
|
11533
12253
|
<ul>
|
|
11534
12254
|
<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
12255
|
<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 +12257,33 @@
|
|
|
11537
12257
|
<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
12258
|
</ul>
|
|
11539
12259
|
<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="
|
|
12260
|
+
<h3 id="added-in-v231">Added in v2.3.1<a class="headerlink" href="#added-in-v231" title="Permanent link">¶</a></h3>
|
|
11541
12261
|
<ul>
|
|
11542
12262
|
<li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
|
|
11543
12263
|
<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
12264
|
<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
12265
|
</ul>
|
|
11546
|
-
<h3 id="
|
|
12266
|
+
<h3 id="changed-in-v231">Changed in v2.3.1<a class="headerlink" href="#changed-in-v231" title="Permanent link">¶</a></h3>
|
|
11547
12267
|
<ul>
|
|
11548
12268
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
11549
12269
|
</ul>
|
|
11550
|
-
<h3 id="
|
|
12270
|
+
<h3 id="fixed-in-v231">Fixed in v2.3.1<a class="headerlink" href="#fixed-in-v231" title="Permanent link">¶</a></h3>
|
|
11551
12271
|
<ul>
|
|
11552
12272
|
<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
12273
|
<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
12274
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
11555
12275
|
<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
12276
|
</ul>
|
|
11557
|
-
<h3 id="
|
|
12277
|
+
<h3 id="housekeeping-in-v231">Housekeeping in v2.3.1<a class="headerlink" href="#housekeeping-in-v231" title="Permanent link">¶</a></h3>
|
|
11558
12278
|
<ul>
|
|
11559
12279
|
<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
12280
|
</ul>
|
|
11561
12281
|
<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="
|
|
12282
|
+
<h3 id="security-in-v230">Security in v2.3.0<a class="headerlink" href="#security-in-v230" title="Permanent link">¶</a></h3>
|
|
11563
12283
|
<ul>
|
|
11564
12284
|
<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
12285
|
</ul>
|
|
11566
|
-
<h3 id="
|
|
12286
|
+
<h3 id="added-in-v230">Added in v2.3.0<a class="headerlink" href="#added-in-v230" title="Permanent link">¶</a></h3>
|
|
11567
12287
|
<ul>
|
|
11568
12288
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
|
|
11569
12289
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
|
|
@@ -11573,7 +12293,7 @@
|
|
|
11573
12293
|
<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
12294
|
<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
12295
|
</ul>
|
|
11576
|
-
<h3 id="
|
|
12296
|
+
<h3 id="changed-in-v230">Changed in v2.3.0<a class="headerlink" href="#changed-in-v230" title="Permanent link">¶</a></h3>
|
|
11577
12297
|
<ul>
|
|
11578
12298
|
<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
12299
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
|
|
@@ -11582,12 +12302,12 @@
|
|
|
11582
12302
|
<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
12303
|
<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
12304
|
</ul>
|
|
11585
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
12305
|
+
<h3 id="removed-in-v230">Removed in v2.3.0<a class="headerlink" href="#removed-in-v230" title="Permanent link">¶</a></h3>
|
|
11586
12306
|
<ul>
|
|
11587
12307
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
11588
12308
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
11589
12309
|
</ul>
|
|
11590
|
-
<h3 id="
|
|
12310
|
+
<h3 id="fixed-in-v230">Fixed in v2.3.0<a class="headerlink" href="#fixed-in-v230" title="Permanent link">¶</a></h3>
|
|
11591
12311
|
<ul>
|
|
11592
12312
|
<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
12313
|
<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 +12323,7 @@
|
|
|
11603
12323
|
<li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>IPAddressFilterSet.device</code> filter.</li>
|
|
11604
12324
|
<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
12325
|
</ul>
|
|
11606
|
-
<h3 id="
|
|
12326
|
+
<h3 id="documentation-in-v230">Documentation in v2.3.0<a class="headerlink" href="#documentation-in-v230" title="Permanent link">¶</a></h3>
|
|
11607
12327
|
<ul>
|
|
11608
12328
|
<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
12329
|
<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 +12331,7 @@
|
|
|
11611
12331
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
11612
12332
|
<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
12333
|
</ul>
|
|
11614
|
-
<h3 id="
|
|
12334
|
+
<h3 id="housekeeping-in-v230">Housekeeping in v2.3.0<a class="headerlink" href="#housekeeping-in-v230" title="Permanent link">¶</a></h3>
|
|
11615
12335
|
<ul>
|
|
11616
12336
|
<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
12337
|
<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 +12342,11 @@
|
|
|
11622
12342
|
<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
12343
|
</ul>
|
|
11624
12344
|
<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="
|
|
12345
|
+
<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
12346
|
<ul>
|
|
11627
12347
|
<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
12348
|
</ul>
|
|
11629
|
-
<h3 id="
|
|
12349
|
+
<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
12350
|
<ul>
|
|
11631
12351
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
|
|
11632
12352
|
<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 +12393,7 @@
|
|
|
11673
12393
|
<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
12394
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
|
|
11675
12395
|
</ul>
|
|
11676
|
-
<h3 id="
|
|
12396
|
+
<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
12397
|
<ul>
|
|
11678
12398
|
<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
12399
|
<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 +12425,19 @@
|
|
|
11705
12425
|
<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
12426
|
<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
12427
|
</ul>
|
|
11708
|
-
<h3 id="deprecated">Deprecated<a class="headerlink" href="#deprecated" title="Permanent link">¶</a></h3>
|
|
12428
|
+
<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
12429
|
<ul>
|
|
11710
12430
|
<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
12431
|
<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
12432
|
<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
12433
|
</ul>
|
|
11714
|
-
<h3 id="
|
|
12434
|
+
<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
12435
|
<ul>
|
|
11716
12436
|
<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
12437
|
<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
12438
|
<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
12439
|
</ul>
|
|
11720
|
-
<h3 id="
|
|
12440
|
+
<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
12441
|
<ul>
|
|
11722
12442
|
<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
12443
|
<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 +12461,7 @@
|
|
|
11741
12461
|
<li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
|
|
11742
12462
|
<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
12463
|
</ul>
|
|
11744
|
-
<h3 id="
|
|
12464
|
+
<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
12465
|
<ul>
|
|
11746
12466
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
|
|
11747
12467
|
<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 +12487,13 @@
|
|
|
11767
12487
|
<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
12488
|
<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
12489
|
</ul>
|
|
11770
|
-
<h3 id="
|
|
12490
|
+
<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
12491
|
<ul>
|
|
11772
12492
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
11773
12493
|
<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
12494
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
11775
12495
|
</ul>
|
|
11776
|
-
<h3 id="
|
|
12496
|
+
<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
12497
|
<ul>
|
|
11778
12498
|
<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
12499
|
<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>
|
|
@@ -11894,7 +12614,7 @@
|
|
|
11894
12614
|
|
|
11895
12615
|
|
|
11896
12616
|
<a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
|
|
11897
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
12617
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>
|
|
11898
12618
|
</a>
|
|
11899
12619
|
|
|
11900
12620
|
|
|
@@ -11902,7 +12622,7 @@
|
|
|
11902
12622
|
|
|
11903
12623
|
|
|
11904
12624
|
<a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
|
|
11905
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.
|
|
12625
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305m-317.51 213.508V175.185l142.739 81.205z"/></svg>
|
|
11906
12626
|
</a>
|
|
11907
12627
|
|
|
11908
12628
|
|
|
@@ -11910,7 +12630,7 @@
|
|
|
11910
12630
|
|
|
11911
12631
|
|
|
11912
12632
|
<a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
|
|
11913
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
12633
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1s21.16-47.06 47.06-47.06h47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06S448 171 448 196.9s-21.16 47.06-47.06 47.06h-47.06zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06S309 480 283.1 480s-47.06-21.16-47.06-47.06v-47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06s21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06z"/></svg>
|
|
11914
12634
|
</a>
|
|
11915
12635
|
|
|
11916
12636
|
|
|
@@ -11918,7 +12638,7 @@
|
|
|
11918
12638
|
|
|
11919
12639
|
|
|
11920
12640
|
<a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
|
|
11921
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.
|
|
12641
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8M97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
|
|
11922
12642
|
</a>
|
|
11923
12643
|
|
|
11924
12644
|
|
|
@@ -11926,7 +12646,7 @@
|
|
|
11926
12646
|
|
|
11927
12647
|
|
|
11928
12648
|
<a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
|
|
11929
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.
|
|
12649
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253"/></svg>
|
|
11930
12650
|
</a>
|
|
11931
12651
|
|
|
11932
12652
|
</div>
|
|
@@ -11941,10 +12661,10 @@
|
|
|
11941
12661
|
</div>
|
|
11942
12662
|
|
|
11943
12663
|
|
|
11944
|
-
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.
|
|
12664
|
+
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.f8cc74c7.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
11945
12665
|
|
|
11946
12666
|
|
|
11947
|
-
<script src="../assets/javascripts/bundle.
|
|
12667
|
+
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
11948
12668
|
|
|
11949
12669
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11950
12670
|
|