nautobot 2.4.0b1__py3-none-any.whl → 2.4.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/__init__.py +1 -1
- nautobot/apps/api.py +8 -8
- nautobot/apps/change_logging.py +2 -2
- nautobot/apps/choices.py +4 -4
- nautobot/apps/events.py +3 -3
- nautobot/apps/factory.py +2 -2
- nautobot/apps/filters.py +1 -1
- nautobot/apps/forms.py +20 -20
- nautobot/apps/graphql.py +2 -2
- nautobot/apps/jobs.py +8 -8
- nautobot/apps/models.py +19 -19
- nautobot/apps/tables.py +1 -1
- nautobot/apps/testing.py +10 -10
- nautobot/apps/ui.py +2 -2
- nautobot/apps/utils.py +7 -7
- nautobot/apps/views.py +7 -7
- nautobot/circuits/api/serializers.py +1 -0
- nautobot/circuits/api/views.py +4 -8
- nautobot/circuits/tables.py +2 -1
- nautobot/circuits/templates/circuits/circuit_create.html +1 -7
- nautobot/circuits/views.py +3 -3
- nautobot/cloud/api/views.py +6 -10
- nautobot/cloud/models.py +1 -1
- nautobot/cloud/views.py +0 -16
- nautobot/core/api/constants.py +11 -0
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/filter_backends.py +3 -9
- nautobot/core/api/schema.py +13 -2
- nautobot/core/api/serializers.py +40 -34
- nautobot/core/api/views.py +56 -4
- nautobot/core/celery/log.py +4 -4
- nautobot/core/celery/schedulers.py +2 -2
- nautobot/core/choices.py +2 -2
- nautobot/core/events/__init__.py +3 -3
- nautobot/core/filters.py +67 -35
- nautobot/core/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +14 -11
- nautobot/core/forms/forms.py +33 -2
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +28 -7
- nautobot/core/jobs/bulk_actions.py +285 -0
- nautobot/core/jobs/cleanup.py +48 -12
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/models/__init__.py +3 -1
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +6 -3
- nautobot/core/settings.py +29 -2
- nautobot/core/settings.yaml +21 -0
- nautobot/core/tables.py +79 -61
- nautobot/core/templates/about.html +67 -0
- nautobot/core/templates/inc/media.html +3 -0
- nautobot/core/templates/inc/nav_menu.html +1 -0
- nautobot/core/templates/inc/tenancy_form_panel.html +9 -0
- nautobot/core/templates/inc/tenant_table_row.html +11 -0
- nautobot/core/templates/nautobot_config.py.j2 +13 -0
- nautobot/core/templates/search.html +7 -0
- nautobot/core/templates/utilities/render_jinja2.html +1 -1
- nautobot/core/templates/utilities/templatetags/tag.html +1 -1
- nautobot/core/templates/utilities/theme_preview.html +7 -0
- nautobot/core/templatetags/helpers.py +11 -2
- nautobot/core/testing/__init__.py +8 -8
- nautobot/core/testing/api.py +170 -15
- nautobot/core/testing/filters.py +45 -10
- nautobot/core/testing/forms.py +2 -0
- nautobot/core/testing/integration.py +86 -4
- nautobot/core/testing/mixins.py +7 -2
- nautobot/core/testing/views.py +44 -29
- nautobot/core/tests/integration/test_app_home.py +0 -1
- nautobot/core/tests/integration/test_app_navbar.py +0 -1
- nautobot/core/tests/integration/test_filters.py +0 -2
- nautobot/core/tests/integration/test_home.py +0 -1
- nautobot/core/tests/integration/test_navbar.py +0 -1
- nautobot/core/tests/integration/test_view_authentication.py +1 -0
- nautobot/core/tests/runner.py +1 -1
- nautobot/core/tests/test_api.py +98 -1
- nautobot/core/tests/test_csv.py +25 -3
- nautobot/core/tests/test_filters.py +209 -246
- nautobot/core/tests/test_forms.py +1 -0
- nautobot/core/tests/test_jobs.py +460 -1
- nautobot/core/tests/test_models.py +9 -0
- nautobot/core/tests/test_settings_schema.py +7 -0
- nautobot/core/tests/test_tables.py +100 -0
- nautobot/core/tests/test_utils.py +63 -1
- nautobot/core/tests/test_views.py +30 -3
- nautobot/core/ui/nav.py +1 -0
- nautobot/core/ui/object_detail.py +15 -1
- nautobot/core/urls.py +11 -0
- nautobot/core/utils/lookup.py +11 -8
- nautobot/core/utils/querysets.py +64 -0
- nautobot/core/utils/requests.py +24 -9
- nautobot/core/views/__init__.py +42 -0
- nautobot/core/views/generic.py +131 -197
- nautobot/core/views/mixins.py +126 -38
- nautobot/core/views/renderers.py +6 -6
- nautobot/dcim/api/serializers.py +56 -64
- nautobot/dcim/api/views.py +47 -113
- nautobot/dcim/constants.py +6 -13
- nautobot/dcim/factory.py +6 -1
- nautobot/dcim/filters/__init__.py +31 -2
- nautobot/dcim/forms.py +36 -17
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +25 -0
- nautobot/dcim/models/__init__.py +1 -1
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +22 -20
- nautobot/dcim/models/devices.py +10 -1
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +6 -5
- nautobot/dcim/models/racks.py +4 -4
- nautobot/dcim/tables/__init__.py +3 -3
- nautobot/dcim/tables/devices.py +7 -5
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/controller_create.html +1 -7
- nautobot/dcim/templates/dcim/controller_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +2 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +5 -0
- nautobot/dcim/templates/dcim/device.html +1 -9
- nautobot/dcim/templates/dcim/device_edit.html +36 -37
- nautobot/dcim/templates/dcim/location.html +1 -9
- nautobot/dcim/templates/dcim/location_edit.html +1 -7
- nautobot/dcim/templates/dcim/rack.html +1 -9
- nautobot/dcim/templates/dcim/rack_edit.html +1 -7
- nautobot/dcim/templates/dcim/rackreservation.html +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +1 -7
- nautobot/dcim/tests/integration/test_controller.py +62 -0
- nautobot/dcim/tests/integration/test_controller_managed_device_group.py +71 -0
- nautobot/dcim/tests/integration/test_device_bulk_delete.py +189 -0
- nautobot/dcim/tests/integration/test_device_bulk_edit.py +181 -0
- nautobot/dcim/tests/test_api.py +16 -5
- nautobot/dcim/tests/test_filters.py +33 -0
- nautobot/dcim/tests/test_forms.py +51 -2
- nautobot/dcim/tests/test_graphql.py +52 -0
- nautobot/dcim/tests/test_jobs.py +118 -0
- nautobot/dcim/tests/test_models.py +52 -9
- nautobot/dcim/tests/test_views.py +21 -83
- nautobot/dcim/views.py +1 -13
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +90 -85
- nautobot/extras/api/views.py +22 -27
- nautobot/extras/constants.py +2 -0
- nautobot/extras/filters/__init__.py +8 -6
- nautobot/extras/forms/base.py +2 -2
- nautobot/extras/forms/forms.py +139 -31
- nautobot/extras/forms/mixins.py +14 -6
- nautobot/extras/group_sync.py +3 -3
- nautobot/extras/health_checks.py +1 -2
- nautobot/extras/jobs.py +85 -18
- nautobot/extras/managers.py +3 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
- nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +22 -0
- nautobot/extras/migrations/0121_alter_team_contacts.py +17 -0
- nautobot/extras/models/__init__.py +1 -1
- nautobot/extras/models/contacts.py +1 -1
- nautobot/extras/models/customfields.py +12 -11
- nautobot/extras/models/groups.py +11 -9
- nautobot/extras/models/jobs.py +23 -4
- nautobot/extras/models/models.py +2 -2
- nautobot/extras/plugins/__init__.py +13 -2
- nautobot/extras/plugins/marketplace_manifest.yml +84 -79
- nautobot/extras/plugins/tables.py +16 -14
- nautobot/extras/plugins/views.py +65 -69
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/tables.py +7 -5
- nautobot/extras/templates/extras/dynamicgroup.html +1 -9
- nautobot/extras/templates/extras/job_detail.html +16 -0
- nautobot/extras/templates/extras/job_edit.html +1 -0
- nautobot/extras/templates/extras/jobqueue_retrieve.html +1 -9
- nautobot/extras/templates/extras/marketplace.html +29 -11
- nautobot/extras/templates/extras/plugin_detail.html +32 -15
- nautobot/extras/templates/extras/plugins_tiles.html +21 -10
- nautobot/extras/templatetags/job_buttons.py +4 -4
- nautobot/extras/test_jobs/api_test_job.py +1 -1
- nautobot/extras/test_jobs/atomic_transaction.py +2 -2
- nautobot/extras/test_jobs/dry_run.py +1 -1
- nautobot/extras/test_jobs/fail.py +5 -5
- nautobot/extras/test_jobs/file_output.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -1
- nautobot/extras/test_jobs/file_upload_pass.py +1 -1
- nautobot/extras/test_jobs/ipaddress_vars.py +3 -1
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
- nautobot/extras/test_jobs/log_redaction.py +1 -1
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
- nautobot/extras/test_jobs/modify_db.py +1 -1
- nautobot/extras/test_jobs/object_var_optional.py +1 -1
- nautobot/extras/test_jobs/object_var_required.py +1 -1
- nautobot/extras/test_jobs/object_vars.py +1 -1
- nautobot/extras/test_jobs/pass.py +3 -3
- nautobot/extras/test_jobs/profiling.py +1 -1
- nautobot/extras/test_jobs/relative_import.py +3 -3
- nautobot/extras/test_jobs/singleton.py +16 -0
- nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
- nautobot/extras/test_jobs/task_queues.py +1 -1
- nautobot/extras/tests/integration/test_plugin_banner.py +0 -2
- nautobot/extras/tests/test_api.py +13 -13
- nautobot/extras/tests/test_customfields.py +1 -1
- nautobot/extras/tests/test_datasources.py +2 -1
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +6 -6
- nautobot/extras/tests/test_forms.py +33 -1
- nautobot/extras/tests/test_jobs.py +178 -32
- nautobot/extras/tests/test_models.py +16 -10
- nautobot/extras/tests/test_plugins.py +62 -9
- nautobot/extras/tests/test_relationships.py +120 -9
- nautobot/extras/tests/test_views.py +56 -194
- nautobot/extras/utils.py +3 -2
- nautobot/extras/views.py +30 -98
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +41 -33
- nautobot/ipam/api/views.py +68 -117
- nautobot/ipam/factory.py +1 -1
- nautobot/ipam/filters.py +3 -2
- nautobot/ipam/lookups.py +101 -62
- nautobot/ipam/models.py +66 -16
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +23 -7
- nautobot/ipam/templates/ipam/ipaddress.html +1 -9
- nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +1 -7
- nautobot/ipam/templates/ipam/ipaddress_edit.html +1 -7
- nautobot/ipam/templates/ipam/prefix.html +1 -9
- nautobot/ipam/templates/ipam/prefix_edit.html +1 -7
- nautobot/ipam/templates/ipam/vlan.html +1 -9
- nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
- nautobot/ipam/templates/ipam/vrf_edit.html +1 -7
- nautobot/ipam/tests/test_api.py +436 -3
- nautobot/ipam/tests/test_forms.py +49 -47
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +95 -34
- nautobot/ipam/tests/test_querysets.py +63 -1
- nautobot/ipam/tests/test_views.py +3 -0
- nautobot/ipam/utils/__init__.py +36 -6
- nautobot/ipam/views.py +61 -87
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +40 -2
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/docs/404.html +46 -4
- nautobot/project-static/docs/apps/index.html +46 -4
- nautobot/project-static/docs/apps/nautobot-apps.html +47 -6
- nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.88dd0f4e.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.88dd0f4e.min.js.map} +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +62 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +59 -7
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +374 -122
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +90 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +95 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +53 -6
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +52 -5
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +79 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +102 -28
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +108 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +131 -38
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +239 -65
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +581 -165
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +109 -36
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +453 -167
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +493 -211
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +60 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +71 -15
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +407 -55
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +620 -205
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +858 -412
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +59 -7
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +448 -186
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +365 -147
- nautobot/project-static/docs/development/apps/api/configuration-view.html +46 -4
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/global-search.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/graphql.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +68 -7
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +46 -4
- nautobot/project-static/docs/development/apps/api/prometheus.html +46 -4
- nautobot/project-static/docs/development/apps/api/setup.html +46 -4
- nautobot/project-static/docs/development/apps/api/testing.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/base-template.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/notes.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +52 -6
- nautobot/project-static/docs/development/apps/api/views/urls.html +46 -4
- nautobot/project-static/docs/development/apps/index.html +46 -4
- nautobot/project-static/docs/development/apps/migration/code-updates.html +46 -4
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +46 -4
- nautobot/project-static/docs/development/apps/migration/from-v1.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +46 -4
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +50 -8
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +46 -4
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +211 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +46 -4
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +46 -4
- nautobot/project-static/docs/development/core/application-registry.html +46 -4
- nautobot/project-static/docs/development/core/best-practices.html +46 -4
- nautobot/project-static/docs/development/core/bootstrap-ui.html +46 -4
- nautobot/project-static/docs/development/core/caching.html +46 -4
- nautobot/project-static/docs/development/core/controllers.html +46 -4
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +73 -74
- nautobot/project-static/docs/development/core/generic-views.html +46 -4
- nautobot/project-static/docs/development/core/getting-started.html +249 -224
- nautobot/project-static/docs/development/core/homepage.html +49 -7
- nautobot/project-static/docs/development/core/index.html +46 -4
- nautobot/project-static/docs/development/core/{local-k8s.html → minikube-dev-environment-for-k8s-jobs.html} +469 -168
- nautobot/project-static/docs/development/core/model-checklist.html +56 -12
- nautobot/project-static/docs/development/core/model-features.html +46 -4
- nautobot/project-static/docs/development/core/natural-keys.html +46 -4
- nautobot/project-static/docs/development/core/navigation-menu.html +46 -4
- nautobot/project-static/docs/development/core/release-checklist.html +49 -7
- nautobot/project-static/docs/development/core/role-internals.html +46 -4
- nautobot/project-static/docs/development/core/settings.html +46 -4
- nautobot/project-static/docs/development/core/style-guide.html +49 -7
- nautobot/project-static/docs/development/core/templates.html +46 -4
- nautobot/project-static/docs/development/core/testing.html +46 -4
- nautobot/project-static/docs/development/core/ui-component-framework.html +369 -273
- nautobot/project-static/docs/development/core/user-preferences.html +46 -4
- nautobot/project-static/docs/development/index.html +46 -4
- nautobot/project-static/docs/development/jobs/index.html +216 -122
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +46 -4
- nautobot/project-static/docs/index.html +54 -23
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit_button.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_view.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_add.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_config.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_completed.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_pending.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_run_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_nautobot_login.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_job.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_scheduled_job_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_scheduled_job_result.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/buttons-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/cluster-type-before-after-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example_2.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example-code.png +0 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +47 -7
- nautobot/project-static/docs/overview/design_philosophy.html +46 -4
- nautobot/project-static/docs/release-notes/index.html +52 -12
- nautobot/project-static/docs/release-notes/version-1.0.html +234 -193
- nautobot/project-static/docs/release-notes/version-1.1.html +231 -190
- nautobot/project-static/docs/release-notes/version-1.2.html +306 -265
- nautobot/project-static/docs/release-notes/version-1.3.html +332 -291
- nautobot/project-static/docs/release-notes/version-1.4.html +417 -377
- nautobot/project-static/docs/release-notes/version-1.5.html +605 -566
- nautobot/project-static/docs/release-notes/version-1.6.html +904 -447
- nautobot/project-static/docs/release-notes/version-2.0.html +528 -489
- nautobot/project-static/docs/release-notes/version-2.1.html +363 -324
- nautobot/project-static/docs/release-notes/version-2.2.html +356 -317
- nautobot/project-static/docs/release-notes/version-2.3.html +997 -352
- nautobot/project-static/docs/release-notes/version-2.4.html +525 -101
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +295 -287
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +48 -6
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +110 -8
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +48 -6
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +66 -8
- nautobot/project-static/docs/user-guide/administration/installation/index.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +47 -5
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/services.html +46 -4
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +46 -4
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +46 -4
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +46 -4
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +49 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +50 -12
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +49 -7
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +51 -7
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/central-mode.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +49 -7
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +9444 -0
- nautobot/project-static/docs/user-guide/index.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +50 -8
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +50 -7
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +49 -7
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +9722 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +47 -5
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +94 -25
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +74 -5
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +46 -4
- nautobot/project-static/js/forms.js +1 -1
- nautobot/tenancy/api/views.py +9 -13
- nautobot/tenancy/views.py +4 -2
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +5 -4
- nautobot/users/api/views.py +3 -3
- nautobot/virtualization/api/serializers.py +4 -4
- nautobot/virtualization/api/views.py +5 -24
- nautobot/virtualization/filters.py +20 -3
- nautobot/virtualization/models.py +1 -1
- nautobot/virtualization/tables.py +2 -2
- nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
- nautobot/virtualization/templates/virtualization/virtualmachine.html +1 -9
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
- nautobot/virtualization/tests/test_filters.py +17 -0
- nautobot/wireless/filters.py +2 -2
- nautobot/wireless/forms.py +1 -1
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +1 -9
- nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot/wireless/tests/integration/test_radio_profile.py +42 -0
- nautobot/wireless/tests/test_filters.py +29 -1
- nautobot/wireless/tests/test_views.py +22 -1
- nautobot/wireless/views.py +0 -10
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/METADATA +6 -6
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/RECORD +600 -550
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/WHEEL +1 -1
- nautobot/core/fixtures/user-data.json +0 -59
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/NOTICE +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.49">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -2112,6 +2112,27 @@
|
|
|
2112
2112
|
|
|
2113
2113
|
|
|
2114
2114
|
|
|
2115
|
+
|
|
2116
|
+
|
|
2117
|
+
|
|
2118
|
+
|
|
2119
|
+
|
|
2120
|
+
|
|
2121
|
+
<li class="md-nav__item">
|
|
2122
|
+
<a href="../user-guide/feature-guides/wireless-networks-and-controllers.html" class="md-nav__link">
|
|
2123
|
+
|
|
2124
|
+
|
|
2125
|
+
<span class="md-ellipsis">
|
|
2126
|
+
Wireless Networks and Controllers
|
|
2127
|
+
</span>
|
|
2128
|
+
|
|
2129
|
+
|
|
2130
|
+
</a>
|
|
2131
|
+
</li>
|
|
2132
|
+
|
|
2133
|
+
|
|
2134
|
+
|
|
2135
|
+
|
|
2115
2136
|
</ul>
|
|
2116
2137
|
</nav>
|
|
2117
2138
|
|
|
@@ -5131,6 +5152,27 @@
|
|
|
5131
5152
|
|
|
5132
5153
|
|
|
5133
5154
|
|
|
5155
|
+
<li class="md-nav__item">
|
|
5156
|
+
<a href="../user-guide/platform-functionality/jobs/kubernetes-job-support.html" class="md-nav__link">
|
|
5157
|
+
|
|
5158
|
+
|
|
5159
|
+
<span class="md-ellipsis">
|
|
5160
|
+
Kubernetes Job Support
|
|
5161
|
+
</span>
|
|
5162
|
+
|
|
5163
|
+
|
|
5164
|
+
</a>
|
|
5165
|
+
</li>
|
|
5166
|
+
|
|
5167
|
+
|
|
5168
|
+
|
|
5169
|
+
|
|
5170
|
+
|
|
5171
|
+
|
|
5172
|
+
|
|
5173
|
+
|
|
5174
|
+
|
|
5175
|
+
|
|
5134
5176
|
<li class="md-nav__item">
|
|
5135
5177
|
<a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
5136
5178
|
|
|
@@ -8055,11 +8097,11 @@
|
|
|
8055
8097
|
|
|
8056
8098
|
|
|
8057
8099
|
<li class="md-nav__item">
|
|
8058
|
-
<a href="../development/core/
|
|
8100
|
+
<a href="../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
|
|
8059
8101
|
|
|
8060
8102
|
|
|
8061
8103
|
<span class="md-ellipsis">
|
|
8062
|
-
|
|
8104
|
+
Minikube Dev Environment for K8s Jobs
|
|
8063
8105
|
</span>
|
|
8064
8106
|
|
|
8065
8107
|
|
|
@@ -8471,6 +8513,24 @@
|
|
|
8471
8513
|
<nav class="md-nav" aria-label="Added">
|
|
8472
8514
|
<ul class="md-nav__list">
|
|
8473
8515
|
|
|
8516
|
+
<li class="md-nav__item">
|
|
8517
|
+
<a href="#virtual-device-context-data-models" class="md-nav__link">
|
|
8518
|
+
<span class="md-ellipsis">
|
|
8519
|
+
Virtual Device Context Data Models
|
|
8520
|
+
</span>
|
|
8521
|
+
</a>
|
|
8522
|
+
|
|
8523
|
+
</li>
|
|
8524
|
+
|
|
8525
|
+
<li class="md-nav__item">
|
|
8526
|
+
<a href="#wireless-data-models" class="md-nav__link">
|
|
8527
|
+
<span class="md-ellipsis">
|
|
8528
|
+
Wireless Data Models
|
|
8529
|
+
</span>
|
|
8530
|
+
</a>
|
|
8531
|
+
|
|
8532
|
+
</li>
|
|
8533
|
+
|
|
8474
8534
|
<li class="md-nav__item">
|
|
8475
8535
|
<a href="#apps-marketplace-page-and-installed-apps-page-tile-view" class="md-nav__link">
|
|
8476
8536
|
<span class="md-ellipsis">
|
|
@@ -8508,45 +8568,45 @@
|
|
|
8508
8568
|
</li>
|
|
8509
8569
|
|
|
8510
8570
|
<li class="md-nav__item">
|
|
8511
|
-
<a href="#kubernetes-job-execution-and-job-queue-data-model" class="md-nav__link">
|
|
8571
|
+
<a href="#kubernetes-job-execution-and-job-queue-data-model-experimental" class="md-nav__link">
|
|
8512
8572
|
<span class="md-ellipsis">
|
|
8513
|
-
Kubernetes Job Execution and Job Queue Data Model
|
|
8573
|
+
Kubernetes Job Execution and Job Queue Data Model (Experimental)
|
|
8514
8574
|
</span>
|
|
8515
8575
|
</a>
|
|
8516
8576
|
|
|
8517
8577
|
</li>
|
|
8518
8578
|
|
|
8519
8579
|
<li class="md-nav__item">
|
|
8520
|
-
<a href="#
|
|
8580
|
+
<a href="#singleton-jobs" class="md-nav__link">
|
|
8521
8581
|
<span class="md-ellipsis">
|
|
8522
|
-
|
|
8582
|
+
Singleton Jobs
|
|
8523
8583
|
</span>
|
|
8524
8584
|
</a>
|
|
8525
8585
|
|
|
8526
8586
|
</li>
|
|
8527
8587
|
|
|
8528
8588
|
<li class="md-nav__item">
|
|
8529
|
-
<a href="#
|
|
8589
|
+
<a href="#per-user-time-zone-support" class="md-nav__link">
|
|
8530
8590
|
<span class="md-ellipsis">
|
|
8531
|
-
|
|
8591
|
+
Per-user Time Zone Support
|
|
8532
8592
|
</span>
|
|
8533
8593
|
</a>
|
|
8534
8594
|
|
|
8535
8595
|
</li>
|
|
8536
8596
|
|
|
8537
8597
|
<li class="md-nav__item">
|
|
8538
|
-
<a href="#
|
|
8598
|
+
<a href="#rest-api-exclude_m2m-support" class="md-nav__link">
|
|
8539
8599
|
<span class="md-ellipsis">
|
|
8540
|
-
|
|
8600
|
+
REST API exclude_m2m Support
|
|
8541
8601
|
</span>
|
|
8542
8602
|
</a>
|
|
8543
8603
|
|
|
8544
8604
|
</li>
|
|
8545
8605
|
|
|
8546
8606
|
<li class="md-nav__item">
|
|
8547
|
-
<a href="#
|
|
8607
|
+
<a href="#ui-component-framework" class="md-nav__link">
|
|
8548
8608
|
<span class="md-ellipsis">
|
|
8549
|
-
|
|
8609
|
+
UI Component Framework
|
|
8550
8610
|
</span>
|
|
8551
8611
|
</a>
|
|
8552
8612
|
|
|
@@ -8626,6 +8686,117 @@
|
|
|
8626
8686
|
</ul>
|
|
8627
8687
|
</nav>
|
|
8628
8688
|
|
|
8689
|
+
</li>
|
|
8690
|
+
|
|
8691
|
+
<li class="md-nav__item">
|
|
8692
|
+
<a href="#v241-2025-01-21" class="md-nav__link">
|
|
8693
|
+
<span class="md-ellipsis">
|
|
8694
|
+
v2.4.1 (2025-01-21)
|
|
8695
|
+
</span>
|
|
8696
|
+
</a>
|
|
8697
|
+
|
|
8698
|
+
<nav class="md-nav" aria-label="v2.4.1 (2025-01-21)">
|
|
8699
|
+
<ul class="md-nav__list">
|
|
8700
|
+
|
|
8701
|
+
<li class="md-nav__item">
|
|
8702
|
+
<a href="#security-in-v241" class="md-nav__link">
|
|
8703
|
+
<span class="md-ellipsis">
|
|
8704
|
+
Security in v2.4.1
|
|
8705
|
+
</span>
|
|
8706
|
+
</a>
|
|
8707
|
+
|
|
8708
|
+
</li>
|
|
8709
|
+
|
|
8710
|
+
<li class="md-nav__item">
|
|
8711
|
+
<a href="#fixed-in-v241" class="md-nav__link">
|
|
8712
|
+
<span class="md-ellipsis">
|
|
8713
|
+
Fixed in v2.4.1
|
|
8714
|
+
</span>
|
|
8715
|
+
</a>
|
|
8716
|
+
|
|
8717
|
+
</li>
|
|
8718
|
+
|
|
8719
|
+
<li class="md-nav__item">
|
|
8720
|
+
<a href="#housekeeping-in-v241" class="md-nav__link">
|
|
8721
|
+
<span class="md-ellipsis">
|
|
8722
|
+
Housekeeping in v2.4.1
|
|
8723
|
+
</span>
|
|
8724
|
+
</a>
|
|
8725
|
+
|
|
8726
|
+
</li>
|
|
8727
|
+
|
|
8728
|
+
</ul>
|
|
8729
|
+
</nav>
|
|
8730
|
+
|
|
8731
|
+
</li>
|
|
8732
|
+
|
|
8733
|
+
<li class="md-nav__item">
|
|
8734
|
+
<a href="#v240-2025-01-10" class="md-nav__link">
|
|
8735
|
+
<span class="md-ellipsis">
|
|
8736
|
+
v2.4.0 (2025-01-10)
|
|
8737
|
+
</span>
|
|
8738
|
+
</a>
|
|
8739
|
+
|
|
8740
|
+
<nav class="md-nav" aria-label="v2.4.0 (2025-01-10)">
|
|
8741
|
+
<ul class="md-nav__list">
|
|
8742
|
+
|
|
8743
|
+
<li class="md-nav__item">
|
|
8744
|
+
<a href="#added-in-v240" class="md-nav__link">
|
|
8745
|
+
<span class="md-ellipsis">
|
|
8746
|
+
Added in v2.4.0
|
|
8747
|
+
</span>
|
|
8748
|
+
</a>
|
|
8749
|
+
|
|
8750
|
+
</li>
|
|
8751
|
+
|
|
8752
|
+
<li class="md-nav__item">
|
|
8753
|
+
<a href="#changed-in-v240" class="md-nav__link">
|
|
8754
|
+
<span class="md-ellipsis">
|
|
8755
|
+
Changed in v2.4.0
|
|
8756
|
+
</span>
|
|
8757
|
+
</a>
|
|
8758
|
+
|
|
8759
|
+
</li>
|
|
8760
|
+
|
|
8761
|
+
<li class="md-nav__item">
|
|
8762
|
+
<a href="#fixed-in-v240" class="md-nav__link">
|
|
8763
|
+
<span class="md-ellipsis">
|
|
8764
|
+
Fixed in v2.4.0
|
|
8765
|
+
</span>
|
|
8766
|
+
</a>
|
|
8767
|
+
|
|
8768
|
+
</li>
|
|
8769
|
+
|
|
8770
|
+
<li class="md-nav__item">
|
|
8771
|
+
<a href="#dependencies-in-v240" class="md-nav__link">
|
|
8772
|
+
<span class="md-ellipsis">
|
|
8773
|
+
Dependencies in v2.4.0
|
|
8774
|
+
</span>
|
|
8775
|
+
</a>
|
|
8776
|
+
|
|
8777
|
+
</li>
|
|
8778
|
+
|
|
8779
|
+
<li class="md-nav__item">
|
|
8780
|
+
<a href="#documentation-in-v240" class="md-nav__link">
|
|
8781
|
+
<span class="md-ellipsis">
|
|
8782
|
+
Documentation in v2.4.0
|
|
8783
|
+
</span>
|
|
8784
|
+
</a>
|
|
8785
|
+
|
|
8786
|
+
</li>
|
|
8787
|
+
|
|
8788
|
+
<li class="md-nav__item">
|
|
8789
|
+
<a href="#housekeeping-in-v240" class="md-nav__link">
|
|
8790
|
+
<span class="md-ellipsis">
|
|
8791
|
+
Housekeeping in v2.4.0
|
|
8792
|
+
</span>
|
|
8793
|
+
</a>
|
|
8794
|
+
|
|
8795
|
+
</li>
|
|
8796
|
+
|
|
8797
|
+
</ul>
|
|
8798
|
+
</nav>
|
|
8799
|
+
|
|
8629
8800
|
</li>
|
|
8630
8801
|
|
|
8631
8802
|
<li class="md-nav__item">
|
|
@@ -8639,63 +8810,72 @@
|
|
|
8639
8810
|
<ul class="md-nav__list">
|
|
8640
8811
|
|
|
8641
8812
|
<li class="md-nav__item">
|
|
8642
|
-
<a href="#
|
|
8813
|
+
<a href="#added-in-v240b1" class="md-nav__link">
|
|
8643
8814
|
<span class="md-ellipsis">
|
|
8644
|
-
|
|
8815
|
+
Added in v2.4.0b1
|
|
8645
8816
|
</span>
|
|
8646
8817
|
</a>
|
|
8647
8818
|
|
|
8648
8819
|
</li>
|
|
8649
8820
|
|
|
8650
8821
|
<li class="md-nav__item">
|
|
8651
|
-
<a href="#
|
|
8822
|
+
<a href="#changed-in-v240b1" class="md-nav__link">
|
|
8652
8823
|
<span class="md-ellipsis">
|
|
8653
|
-
|
|
8824
|
+
Changed in v2.4.0b1
|
|
8654
8825
|
</span>
|
|
8655
8826
|
</a>
|
|
8656
8827
|
|
|
8657
8828
|
</li>
|
|
8658
8829
|
|
|
8659
8830
|
<li class="md-nav__item">
|
|
8660
|
-
<a href="#
|
|
8831
|
+
<a href="#deprecated-in-v240b1" class="md-nav__link">
|
|
8661
8832
|
<span class="md-ellipsis">
|
|
8662
|
-
|
|
8833
|
+
Deprecated in v2.4.0b1
|
|
8663
8834
|
</span>
|
|
8664
8835
|
</a>
|
|
8665
8836
|
|
|
8666
8837
|
</li>
|
|
8667
8838
|
|
|
8668
8839
|
<li class="md-nav__item">
|
|
8669
|
-
<a href="#
|
|
8840
|
+
<a href="#removed-in-v240b1" class="md-nav__link">
|
|
8670
8841
|
<span class="md-ellipsis">
|
|
8671
|
-
|
|
8842
|
+
Removed in v2.4.0b1
|
|
8672
8843
|
</span>
|
|
8673
8844
|
</a>
|
|
8674
8845
|
|
|
8675
8846
|
</li>
|
|
8676
8847
|
|
|
8677
8848
|
<li class="md-nav__item">
|
|
8678
|
-
<a href="#
|
|
8849
|
+
<a href="#fixed-in-v240b1" class="md-nav__link">
|
|
8679
8850
|
<span class="md-ellipsis">
|
|
8680
|
-
|
|
8851
|
+
Fixed in v2.4.0b1
|
|
8681
8852
|
</span>
|
|
8682
8853
|
</a>
|
|
8683
8854
|
|
|
8684
8855
|
</li>
|
|
8685
8856
|
|
|
8686
8857
|
<li class="md-nav__item">
|
|
8687
|
-
<a href="#
|
|
8858
|
+
<a href="#dependencies-in-v240b1" class="md-nav__link">
|
|
8688
8859
|
<span class="md-ellipsis">
|
|
8689
|
-
|
|
8860
|
+
Dependencies in v2.4.0b1
|
|
8690
8861
|
</span>
|
|
8691
8862
|
</a>
|
|
8692
8863
|
|
|
8693
8864
|
</li>
|
|
8694
8865
|
|
|
8695
8866
|
<li class="md-nav__item">
|
|
8696
|
-
<a href="#
|
|
8867
|
+
<a href="#documentation-in-v240b1" class="md-nav__link">
|
|
8697
8868
|
<span class="md-ellipsis">
|
|
8698
|
-
|
|
8869
|
+
Documentation in v2.4.0b1
|
|
8870
|
+
</span>
|
|
8871
|
+
</a>
|
|
8872
|
+
|
|
8873
|
+
</li>
|
|
8874
|
+
|
|
8875
|
+
<li class="md-nav__item">
|
|
8876
|
+
<a href="#housekeeping-in-v240b1" class="md-nav__link">
|
|
8877
|
+
<span class="md-ellipsis">
|
|
8878
|
+
Housekeeping in v2.4.0b1
|
|
8699
8879
|
</span>
|
|
8700
8880
|
</a>
|
|
8701
8881
|
|
|
@@ -9361,6 +9541,24 @@
|
|
|
9361
9541
|
<nav class="md-nav" aria-label="Added">
|
|
9362
9542
|
<ul class="md-nav__list">
|
|
9363
9543
|
|
|
9544
|
+
<li class="md-nav__item">
|
|
9545
|
+
<a href="#virtual-device-context-data-models" class="md-nav__link">
|
|
9546
|
+
<span class="md-ellipsis">
|
|
9547
|
+
Virtual Device Context Data Models
|
|
9548
|
+
</span>
|
|
9549
|
+
</a>
|
|
9550
|
+
|
|
9551
|
+
</li>
|
|
9552
|
+
|
|
9553
|
+
<li class="md-nav__item">
|
|
9554
|
+
<a href="#wireless-data-models" class="md-nav__link">
|
|
9555
|
+
<span class="md-ellipsis">
|
|
9556
|
+
Wireless Data Models
|
|
9557
|
+
</span>
|
|
9558
|
+
</a>
|
|
9559
|
+
|
|
9560
|
+
</li>
|
|
9561
|
+
|
|
9364
9562
|
<li class="md-nav__item">
|
|
9365
9563
|
<a href="#apps-marketplace-page-and-installed-apps-page-tile-view" class="md-nav__link">
|
|
9366
9564
|
<span class="md-ellipsis">
|
|
@@ -9398,45 +9596,45 @@
|
|
|
9398
9596
|
</li>
|
|
9399
9597
|
|
|
9400
9598
|
<li class="md-nav__item">
|
|
9401
|
-
<a href="#kubernetes-job-execution-and-job-queue-data-model" class="md-nav__link">
|
|
9599
|
+
<a href="#kubernetes-job-execution-and-job-queue-data-model-experimental" class="md-nav__link">
|
|
9402
9600
|
<span class="md-ellipsis">
|
|
9403
|
-
Kubernetes Job Execution and Job Queue Data Model
|
|
9601
|
+
Kubernetes Job Execution and Job Queue Data Model (Experimental)
|
|
9404
9602
|
</span>
|
|
9405
9603
|
</a>
|
|
9406
9604
|
|
|
9407
9605
|
</li>
|
|
9408
9606
|
|
|
9409
9607
|
<li class="md-nav__item">
|
|
9410
|
-
<a href="#
|
|
9608
|
+
<a href="#singleton-jobs" class="md-nav__link">
|
|
9411
9609
|
<span class="md-ellipsis">
|
|
9412
|
-
|
|
9610
|
+
Singleton Jobs
|
|
9413
9611
|
</span>
|
|
9414
9612
|
</a>
|
|
9415
9613
|
|
|
9416
9614
|
</li>
|
|
9417
9615
|
|
|
9418
9616
|
<li class="md-nav__item">
|
|
9419
|
-
<a href="#
|
|
9617
|
+
<a href="#per-user-time-zone-support" class="md-nav__link">
|
|
9420
9618
|
<span class="md-ellipsis">
|
|
9421
|
-
|
|
9619
|
+
Per-user Time Zone Support
|
|
9422
9620
|
</span>
|
|
9423
9621
|
</a>
|
|
9424
9622
|
|
|
9425
9623
|
</li>
|
|
9426
9624
|
|
|
9427
9625
|
<li class="md-nav__item">
|
|
9428
|
-
<a href="#
|
|
9626
|
+
<a href="#rest-api-exclude_m2m-support" class="md-nav__link">
|
|
9429
9627
|
<span class="md-ellipsis">
|
|
9430
|
-
|
|
9628
|
+
REST API exclude_m2m Support
|
|
9431
9629
|
</span>
|
|
9432
9630
|
</a>
|
|
9433
9631
|
|
|
9434
9632
|
</li>
|
|
9435
9633
|
|
|
9436
9634
|
<li class="md-nav__item">
|
|
9437
|
-
<a href="#
|
|
9635
|
+
<a href="#ui-component-framework" class="md-nav__link">
|
|
9438
9636
|
<span class="md-ellipsis">
|
|
9439
|
-
|
|
9637
|
+
UI Component Framework
|
|
9440
9638
|
</span>
|
|
9441
9639
|
</a>
|
|
9442
9640
|
|
|
@@ -9516,6 +9714,117 @@
|
|
|
9516
9714
|
</ul>
|
|
9517
9715
|
</nav>
|
|
9518
9716
|
|
|
9717
|
+
</li>
|
|
9718
|
+
|
|
9719
|
+
<li class="md-nav__item">
|
|
9720
|
+
<a href="#v241-2025-01-21" class="md-nav__link">
|
|
9721
|
+
<span class="md-ellipsis">
|
|
9722
|
+
v2.4.1 (2025-01-21)
|
|
9723
|
+
</span>
|
|
9724
|
+
</a>
|
|
9725
|
+
|
|
9726
|
+
<nav class="md-nav" aria-label="v2.4.1 (2025-01-21)">
|
|
9727
|
+
<ul class="md-nav__list">
|
|
9728
|
+
|
|
9729
|
+
<li class="md-nav__item">
|
|
9730
|
+
<a href="#security-in-v241" class="md-nav__link">
|
|
9731
|
+
<span class="md-ellipsis">
|
|
9732
|
+
Security in v2.4.1
|
|
9733
|
+
</span>
|
|
9734
|
+
</a>
|
|
9735
|
+
|
|
9736
|
+
</li>
|
|
9737
|
+
|
|
9738
|
+
<li class="md-nav__item">
|
|
9739
|
+
<a href="#fixed-in-v241" class="md-nav__link">
|
|
9740
|
+
<span class="md-ellipsis">
|
|
9741
|
+
Fixed in v2.4.1
|
|
9742
|
+
</span>
|
|
9743
|
+
</a>
|
|
9744
|
+
|
|
9745
|
+
</li>
|
|
9746
|
+
|
|
9747
|
+
<li class="md-nav__item">
|
|
9748
|
+
<a href="#housekeeping-in-v241" class="md-nav__link">
|
|
9749
|
+
<span class="md-ellipsis">
|
|
9750
|
+
Housekeeping in v2.4.1
|
|
9751
|
+
</span>
|
|
9752
|
+
</a>
|
|
9753
|
+
|
|
9754
|
+
</li>
|
|
9755
|
+
|
|
9756
|
+
</ul>
|
|
9757
|
+
</nav>
|
|
9758
|
+
|
|
9759
|
+
</li>
|
|
9760
|
+
|
|
9761
|
+
<li class="md-nav__item">
|
|
9762
|
+
<a href="#v240-2025-01-10" class="md-nav__link">
|
|
9763
|
+
<span class="md-ellipsis">
|
|
9764
|
+
v2.4.0 (2025-01-10)
|
|
9765
|
+
</span>
|
|
9766
|
+
</a>
|
|
9767
|
+
|
|
9768
|
+
<nav class="md-nav" aria-label="v2.4.0 (2025-01-10)">
|
|
9769
|
+
<ul class="md-nav__list">
|
|
9770
|
+
|
|
9771
|
+
<li class="md-nav__item">
|
|
9772
|
+
<a href="#added-in-v240" class="md-nav__link">
|
|
9773
|
+
<span class="md-ellipsis">
|
|
9774
|
+
Added in v2.4.0
|
|
9775
|
+
</span>
|
|
9776
|
+
</a>
|
|
9777
|
+
|
|
9778
|
+
</li>
|
|
9779
|
+
|
|
9780
|
+
<li class="md-nav__item">
|
|
9781
|
+
<a href="#changed-in-v240" class="md-nav__link">
|
|
9782
|
+
<span class="md-ellipsis">
|
|
9783
|
+
Changed in v2.4.0
|
|
9784
|
+
</span>
|
|
9785
|
+
</a>
|
|
9786
|
+
|
|
9787
|
+
</li>
|
|
9788
|
+
|
|
9789
|
+
<li class="md-nav__item">
|
|
9790
|
+
<a href="#fixed-in-v240" class="md-nav__link">
|
|
9791
|
+
<span class="md-ellipsis">
|
|
9792
|
+
Fixed in v2.4.0
|
|
9793
|
+
</span>
|
|
9794
|
+
</a>
|
|
9795
|
+
|
|
9796
|
+
</li>
|
|
9797
|
+
|
|
9798
|
+
<li class="md-nav__item">
|
|
9799
|
+
<a href="#dependencies-in-v240" class="md-nav__link">
|
|
9800
|
+
<span class="md-ellipsis">
|
|
9801
|
+
Dependencies in v2.4.0
|
|
9802
|
+
</span>
|
|
9803
|
+
</a>
|
|
9804
|
+
|
|
9805
|
+
</li>
|
|
9806
|
+
|
|
9807
|
+
<li class="md-nav__item">
|
|
9808
|
+
<a href="#documentation-in-v240" class="md-nav__link">
|
|
9809
|
+
<span class="md-ellipsis">
|
|
9810
|
+
Documentation in v2.4.0
|
|
9811
|
+
</span>
|
|
9812
|
+
</a>
|
|
9813
|
+
|
|
9814
|
+
</li>
|
|
9815
|
+
|
|
9816
|
+
<li class="md-nav__item">
|
|
9817
|
+
<a href="#housekeeping-in-v240" class="md-nav__link">
|
|
9818
|
+
<span class="md-ellipsis">
|
|
9819
|
+
Housekeeping in v2.4.0
|
|
9820
|
+
</span>
|
|
9821
|
+
</a>
|
|
9822
|
+
|
|
9823
|
+
</li>
|
|
9824
|
+
|
|
9825
|
+
</ul>
|
|
9826
|
+
</nav>
|
|
9827
|
+
|
|
9519
9828
|
</li>
|
|
9520
9829
|
|
|
9521
9830
|
<li class="md-nav__item">
|
|
@@ -9529,63 +9838,72 @@
|
|
|
9529
9838
|
<ul class="md-nav__list">
|
|
9530
9839
|
|
|
9531
9840
|
<li class="md-nav__item">
|
|
9532
|
-
<a href="#
|
|
9841
|
+
<a href="#added-in-v240b1" class="md-nav__link">
|
|
9533
9842
|
<span class="md-ellipsis">
|
|
9534
|
-
|
|
9843
|
+
Added in v2.4.0b1
|
|
9535
9844
|
</span>
|
|
9536
9845
|
</a>
|
|
9537
9846
|
|
|
9538
9847
|
</li>
|
|
9539
9848
|
|
|
9540
9849
|
<li class="md-nav__item">
|
|
9541
|
-
<a href="#
|
|
9850
|
+
<a href="#changed-in-v240b1" class="md-nav__link">
|
|
9542
9851
|
<span class="md-ellipsis">
|
|
9543
|
-
|
|
9852
|
+
Changed in v2.4.0b1
|
|
9544
9853
|
</span>
|
|
9545
9854
|
</a>
|
|
9546
9855
|
|
|
9547
9856
|
</li>
|
|
9548
9857
|
|
|
9549
9858
|
<li class="md-nav__item">
|
|
9550
|
-
<a href="#
|
|
9859
|
+
<a href="#deprecated-in-v240b1" class="md-nav__link">
|
|
9551
9860
|
<span class="md-ellipsis">
|
|
9552
|
-
|
|
9861
|
+
Deprecated in v2.4.0b1
|
|
9553
9862
|
</span>
|
|
9554
9863
|
</a>
|
|
9555
9864
|
|
|
9556
9865
|
</li>
|
|
9557
9866
|
|
|
9558
9867
|
<li class="md-nav__item">
|
|
9559
|
-
<a href="#
|
|
9868
|
+
<a href="#removed-in-v240b1" class="md-nav__link">
|
|
9560
9869
|
<span class="md-ellipsis">
|
|
9561
|
-
|
|
9870
|
+
Removed in v2.4.0b1
|
|
9562
9871
|
</span>
|
|
9563
9872
|
</a>
|
|
9564
9873
|
|
|
9565
9874
|
</li>
|
|
9566
9875
|
|
|
9567
9876
|
<li class="md-nav__item">
|
|
9568
|
-
<a href="#
|
|
9877
|
+
<a href="#fixed-in-v240b1" class="md-nav__link">
|
|
9569
9878
|
<span class="md-ellipsis">
|
|
9570
|
-
|
|
9879
|
+
Fixed in v2.4.0b1
|
|
9571
9880
|
</span>
|
|
9572
9881
|
</a>
|
|
9573
9882
|
|
|
9574
9883
|
</li>
|
|
9575
9884
|
|
|
9576
9885
|
<li class="md-nav__item">
|
|
9577
|
-
<a href="#
|
|
9886
|
+
<a href="#dependencies-in-v240b1" class="md-nav__link">
|
|
9578
9887
|
<span class="md-ellipsis">
|
|
9579
|
-
|
|
9888
|
+
Dependencies in v2.4.0b1
|
|
9580
9889
|
</span>
|
|
9581
9890
|
</a>
|
|
9582
9891
|
|
|
9583
9892
|
</li>
|
|
9584
9893
|
|
|
9585
9894
|
<li class="md-nav__item">
|
|
9586
|
-
<a href="#
|
|
9895
|
+
<a href="#documentation-in-v240b1" class="md-nav__link">
|
|
9587
9896
|
<span class="md-ellipsis">
|
|
9588
|
-
|
|
9897
|
+
Documentation in v2.4.0b1
|
|
9898
|
+
</span>
|
|
9899
|
+
</a>
|
|
9900
|
+
|
|
9901
|
+
</li>
|
|
9902
|
+
|
|
9903
|
+
<li class="md-nav__item">
|
|
9904
|
+
<a href="#housekeeping-in-v240b1" class="md-nav__link">
|
|
9905
|
+
<span class="md-ellipsis">
|
|
9906
|
+
Housekeeping in v2.4.0b1
|
|
9589
9907
|
</span>
|
|
9590
9908
|
</a>
|
|
9591
9909
|
|
|
@@ -9614,62 +9932,77 @@
|
|
|
9614
9932
|
|
|
9615
9933
|
|
|
9616
9934
|
|
|
9617
|
-
<!-- markdownlint-disable MD024 -->
|
|
9618
|
-
|
|
9619
9935
|
<h1 id="nautobot-v24">Nautobot v2.4<a class="headerlink" href="#nautobot-v24" title="Permanent link">¶</a></h1>
|
|
9620
9936
|
<p>This document describes all new features and changes in Nautobot 2.4.</p>
|
|
9621
9937
|
<h2 id="upgrade-actions">Upgrade Actions<a class="headerlink" href="#upgrade-actions" title="Permanent link">¶</a></h2>
|
|
9622
9938
|
<h3 id="administrators">Administrators<a class="headerlink" href="#administrators" title="Permanent link">¶</a></h3>
|
|
9623
9939
|
<ul>
|
|
9624
|
-
<li>Nautobot 2.4 <a href="#removed-python-38-support">drops support for Python 3.8</a>, so any existing Nautobot deployment
|
|
9625
|
-
<li>Administrators should familiarize themselves with the new <a href="#event-publication-framework">Event Publication Framework</a> and the possibilities it enables for improved monitoring of Nautobot operations.</li>
|
|
9626
|
-
<li>Administrators of Kubernetes-based Nautobot deployments should familiarize themselves with the new <a href="#kubernetes-job-execution-and-job-queue-data-model">capabilities</a> that Nautobot
|
|
9940
|
+
<li>Nautobot 2.4 <a href="#removed-python-38-support">drops support for Python 3.8</a>, so any existing Nautobot deployment using Python 3.8 will need upgrade to a newer Python version <strong>before</strong> upgrading to Nautobot v2.4 or later.</li>
|
|
9941
|
+
<li>Administrators should familiarize themselves with the new <a href="#event-publication-framework">Event Publication Framework</a> and the possibilities it enables for improved monitoring of Nautobot operations and integration with distributed automation platforms.</li>
|
|
9942
|
+
<li>Administrators of Kubernetes-based Nautobot deployments should familiarize themselves with the new <a href="#kubernetes-job-execution-and-job-queue-data-model-experimental">capabilities</a> that Nautobot v2.4 provides for Job execution in such environments and may wish to update their Nautobot configuration to take advantage of these capabilities. Please note that this feature set is considered Experimental in v2.4.0 and is subject to change in future releases.</li>
|
|
9943
|
+
<li>Nautobot 2.4 includes an About page which is capable of displaying the status of Network to Code support contracts, dictated by the <a href="../user-guide/administration/configuration/settings.html#ntc_support_contract_expiration_date"><code>NTC_SUPPORT_CONTRACT_EXPIRATION_DATE</code></a> configuration setting.</li>
|
|
9627
9944
|
</ul>
|
|
9628
9945
|
<h3 id="job-authors-app-developers">Job Authors & App Developers<a class="headerlink" href="#job-authors-app-developers" title="Permanent link">¶</a></h3>
|
|
9629
9946
|
<ul>
|
|
9630
|
-
<li>App developers should begin to adopt the <a href="#ui-component-framework">UI Component Framework</a> introduced in Nautobot
|
|
9631
|
-
<li>Additionally, App developers should familiarize themselves with the new <a href="#event-publication-framework">Event Publication Framework</a> and the possibilities it enables for Apps to publish their own relevant events.</li>
|
|
9632
|
-
<li>
|
|
9633
|
-
<li>Job authors should be aware of the
|
|
9947
|
+
<li>App developers should begin to adopt the <a href="#ui-component-framework">UI Component Framework</a> introduced in Nautobot v2.4, as this will reduce the amount of boilerplate HTML/CSS content that they need to develop and maintain, and will help insulate Apps from future CSS and layout design changes planned for Nautobot v3.</li>
|
|
9948
|
+
<li>Additionally, App developers should familiarize themselves with the new <a href="#event-publication-framework">Event Publication Framework</a> and the possibilities it enables for Apps to publish their own relevant events to configured message brokers.</li>
|
|
9949
|
+
<li>As a side benefit of adding <a href="#rest-api-exclude_m2m-support">REST API <code>exclude_m2m</code> support</a>, the Nautobot REST API <code>ViewSet</code> classes now attempt to intelligently apply <code>select_related()</code> and/or <code>prefetch_related()</code> optimizations to the <code>queryset</code> associated to a given REST API viewset. Apps defining their own REST API viewsets (and requiring Nautobot v2.4.0 or later) can typically remove most explicit calls to <code>select_related()</code> and <code>prefetch_related()</code>; furthermore, in order to benefit most from the <code>exclude_m2m=true</code> query parameter, apps in Nautobot v2.4.0 and later <strong>should not</strong> explicitly <code>prefetch_related()</code> many-to-many related fields any longer. (Explicit calls to <code>select_related()</code> and <code>prefetch_related()</code> may still be necessary and appropriate if your API serializer needs to perform nested lookups, as the automatic optimization here currently only understands directly related object lookups.)</li>
|
|
9950
|
+
<li>Job authors should be aware of the ability to log <a href="#job-success-log-level"><code>success</code></a> messages in Nautobot v2.4.0 and later and should adopt this log level as appropriate.</li>
|
|
9951
|
+
<li>Job authors should be aware of the introduction of <a href="#kubernetes-job-execution-and-job-queue-data-model-experimental">Job Queues</a> as a general-purpose replacement for the Celery-specific <code>Job.task_queues</code> attribute, and if a Job specifies its preferred <code>task_queues</code>, should verify that the queue selected as its <code>default_job_queue</code> after the Nautobot upgrade is correct.</li>
|
|
9634
9952
|
</ul>
|
|
9635
9953
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
9636
9954
|
<h3 id="added">Added<a class="headerlink" href="#added" title="Permanent link">¶</a></h3>
|
|
9955
|
+
<h4 id="virtual-device-context-data-models">Virtual Device Context Data Models<a class="headerlink" href="#virtual-device-context-data-models" title="Permanent link">¶</a></h4>
|
|
9956
|
+
<p>Nautobot 2.4 adds a <a href="../user-guide/core-data-model/dcim/virtualdevicecontext.html"><code>VirtualDeviceContext</code></a> data model to support modeling of logical partitions of physical network devices, such as Cisco Nexus Virtual Device Contexts, Juniper Logical Systems, Arista Multi-instance EOS, and so forth. Device Interfaces can be associated to Virtual Device Contexts via the new <code>InterfaceVDCAssignment</code> model as well.</p>
|
|
9957
|
+
<h4 id="wireless-data-models">Wireless Data Models<a class="headerlink" href="#wireless-data-models" title="Permanent link">¶</a></h4>
|
|
9958
|
+
<p>Nautobot 2.4 adds the data models <a href="../user-guide/core-data-model/wireless/wirelessnetwork.html"><code>WirelessNetwork</code></a>, <a href="../user-guide/core-data-model/wireless/radioprofile.html"><code>RadioProfile</code></a>, and <a href="../user-guide/core-data-model/wireless/supporteddatarate.html"><code>SupportedDataRate</code></a>, enabling Nautobot to model campus wireless networks. In support of this functionality, the <a href="../user-guide/core-data-model/dcim/controller.html"><code>Controller</code></a> and <a href="../user-guide/core-data-model/dcim/controllermanageddevicegroup.html"><code>ControllerManagedDeviceGroup</code></a> models have been enhanced with additional capabilities as well.</p>
|
|
9959
|
+
<p>Refer to the <a href="../user-guide/core-data-model/wireless/index.html">Wireless</a> documentation for more details.</p>
|
|
9637
9960
|
<h4 id="apps-marketplace-page-and-installed-apps-page-tile-view">Apps Marketplace Page and Installed Apps Page Tile View<a class="headerlink" href="#apps-marketplace-page-and-installed-apps-page-tile-view" title="Permanent link">¶</a></h4>
|
|
9638
|
-
<p>Nautobot
|
|
9961
|
+
<p>Nautobot v2.4 introduces the Apps Marketplace, containing information about available Nautobot Apps. In addition to that, the Installed Apps page has added a tile-view option, similar to the Apps Marketplace.</p>
|
|
9639
9962
|
<h4 id="event-publication-framework">Event Publication Framework<a class="headerlink" href="#event-publication-framework" title="Permanent link">¶</a></h4>
|
|
9640
|
-
<p>Nautobot now includes a general-purpose, extensible <a href="../user-guide/platform-functionality/events.html">event publication framework</a> for publication of
|
|
9641
|
-
<p>As of
|
|
9642
|
-
<
|
|
9643
|
-
<
|
|
9644
|
-
<
|
|
9645
|
-
<
|
|
9646
|
-
<
|
|
9647
|
-
<
|
|
9648
|
-
<
|
|
9649
|
-
<
|
|
9650
|
-
<
|
|
9651
|
-
<
|
|
9652
|
-
<
|
|
9653
|
-
<
|
|
9654
|
-
</
|
|
9655
|
-
<
|
|
9963
|
+
<p>Nautobot now includes a general-purpose, extensible <a href="../user-guide/platform-functionality/events.html">event publication framework</a> for publication of event notifications to other systems such as Redis publish/subscribe, Kafka, syslog, and others. An abstract <code>EventBroker</code> API can be implemented and extended with system-specific functionality to enable publication of Nautobot events to any desired message broker.</p>
|
|
9964
|
+
<p>As of v2.4.0, Nautobot publishes events with the following topics:</p>
|
|
9965
|
+
<p>Data model manipulation:
|
|
9966
|
+
- <code>nautobot.create.<app>.<model></code>
|
|
9967
|
+
- <code>nautobot.update.<app>.<model></code>
|
|
9968
|
+
- <code>nautobot.delete.<app>.<model></code></p>
|
|
9969
|
+
<p>User interaction:
|
|
9970
|
+
- <code>nautobot.users.user.login</code>
|
|
9971
|
+
- <code>nautobot.users.user.logout</code>
|
|
9972
|
+
- <code>nautobot.users.user.change_password</code>
|
|
9973
|
+
- <code>nautobot.admin.user.change_password</code></p>
|
|
9974
|
+
<p>Jobs:
|
|
9975
|
+
- <code>nautobot.jobs.job.started</code>
|
|
9976
|
+
- <code>nautobot.jobs.job.completed</code>
|
|
9977
|
+
- <code>nautobot.jobs.approval.approved</code>
|
|
9978
|
+
- <code>nautobot.jobs.approval.denied</code></p>
|
|
9979
|
+
<p>The payload of each topic is a data representaton of the corresponding event, such as the object created, or the Job that started execution. Events are published to configured event brokers, and may be filtered.</p>
|
|
9980
|
+
<p>Nautobot Apps can also make use of this framework to publish additional event topics, specific to the App's functionality as desired.</p>
|
|
9656
9981
|
<h4 id="jinja2-template-rendering-tool">Jinja2 Template Rendering Tool<a class="headerlink" href="#jinja2-template-rendering-tool" title="Permanent link">¶</a></h4>
|
|
9657
|
-
<p>Nautobot
|
|
9982
|
+
<p>Nautobot v2.4 adds a new tool to render Jinja2 templates directly from the UI. Users may supply their own template body and context data to be rendered, with access to to Nautobot's built-in Jinja2 tags and filters. Additionally, a new REST API endpoint <code>/api/core/render-jinja-template/</code> has been added to achieve the same functionaly. This can be used by users and Apps such as <a href="https://docs.nautobot.com/projects/golden-config/en/latest/">Nautobot Golden Config</a> to assist with the development and validation of Jinja2 template content. This functionality will be extended in the future to more easily access context aware data in Nautobot such as Devices and Config Contexts.</p>
|
|
9658
9983
|
<h4 id="job-success-log-level">Job <code>success</code> Log Level<a class="headerlink" href="#job-success-log-level" title="Permanent link">¶</a></h4>
|
|
9659
|
-
<p>Jobs can now
|
|
9984
|
+
<p>Jobs can now log <code>success</code> messages as a new logging level which will be appropriately labeled and colorized in Job Result views.</p>
|
|
9660
9985
|
<div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a><span class="bp">self</span><span class="o">.</span><span class="n">logger</span><span class="o">.</span><span class="n">success</span><span class="p">(</span><span class="s2">"All data is valid."</span><span class="p">)</span>
|
|
9661
9986
|
</code></pre></div>
|
|
9662
|
-
<h4 id="kubernetes-job-execution-and-job-queue-data-model">Kubernetes Job Execution and Job Queue Data Model<a class="headerlink" href="#kubernetes-job-execution-and-job-queue-data-model" title="Permanent link">¶</a></h4>
|
|
9663
|
-
<p>
|
|
9664
|
-
<p>
|
|
9987
|
+
<h4 id="kubernetes-job-execution-and-job-queue-data-model-experimental">Kubernetes Job Execution and Job Queue Data Model (Experimental)<a class="headerlink" href="#kubernetes-job-execution-and-job-queue-data-model-experimental" title="Permanent link">¶</a></h4>
|
|
9988
|
+
<p><em>Please note that this functionality is considered Experimental in the v2.4.0 release and is subject to change in the future.</em></p>
|
|
9989
|
+
<p>When running in a Kubernetes (k8s) deployment, such as with Nautobot's <a href="https://docs.nautobot.com/projects/helm-charts/en/stable/">Helm chart</a>, Nautobot now supports an alternative method of running Nautobot Jobs - instead of (or in addition to) running one or more Celery Workers as long-lived persistent pods, Nautobot can dispatch Nautobot Jobs to be executed as short-lived <a href="https://kubernetes.io/docs/concepts/workloads/controllers/job/">Kubernetes Job</a> pods.</p>
|
|
9990
|
+
<p>In support of this functionality, Nautobot now supports the definition of <a href="../user-guide/platform-functionality/jobs/jobqueue.html"><code>JobQueue</code> records</a>, which represent either a Celery task queue <strong>or</strong> a Kubernetes Job queue. Nautobot Jobs can be associated to queues of either or both types, and the Job Queue selected when submitting a Job will dictate whether it is executed via Celery or via Kubernetes.</p>
|
|
9991
|
+
<p>Nautobot Jobs support the same feature sets, regardless if they are executed on Celery Job queues or Kubernetes Job queues.</p>
|
|
9665
9992
|
<p>Refer to the <a href="../user-guide/platform-functionality/jobs/index.html">Jobs documentation</a> for more details.</p>
|
|
9993
|
+
<h4 id="singleton-jobs">Singleton Jobs<a class="headerlink" href="#singleton-jobs" title="Permanent link">¶</a></h4>
|
|
9994
|
+
<p>Job authors can now set their jobs to only allow a single concurrent execution across all workers, preventing mistakes where, e.g., data synchronization jobs accidentally run twice and create multiple instances of the same data. This functionality and the corresponding setting are documented in <a href="../development/jobs/index.html">the section on developing Jobs</a>.</p>
|
|
9666
9995
|
<h4 id="per-user-time-zone-support">Per-user Time Zone Support<a class="headerlink" href="#per-user-time-zone-support" title="Permanent link">¶</a></h4>
|
|
9667
|
-
<p>Users can now configure their preferred display time zone via the User Preferences UI and Nautobot will display dates and times in the configured time zone for each user.</p>
|
|
9996
|
+
<p>Users can now configure their preferred display time zone via the User Preferences UI under their user profile and Nautobot will display dates and times in the configured time zone for each user.</p>
|
|
9997
|
+
<h4 id="rest-api-exclude_m2m-support">REST API <code>exclude_m2m</code> Support<a class="headerlink" href="#rest-api-exclude_m2m-support" title="Permanent link">¶</a></h4>
|
|
9998
|
+
<p>Added REST API support for an <code>?exclude_m2m=true</code> query parameter. Specifying this parameter prevents the API from retrieving and serializing many-to-many relations on the requested object(s) (for example, the list of all Prefixes associated with a given VRF), which can in some cases greatly improve the performance of the API and reduce memory and network overhead substantially.</p>
|
|
9999
|
+
<p>A future Nautobot major release may change the REST API behavior to make <code>exclude_m2m=true</code> the default behavior.</p>
|
|
10000
|
+
<p>Additionally, the <code>DynamicModelChoiceField</code> and related form fields have been enhanced to use <code>exclude_m2m=true</code> when querying the REST API to populate their options, which can in some cases significantly improve the responsiveness of these fields.</p>
|
|
9668
10001
|
<h4 id="ui-component-framework">UI Component Framework<a class="headerlink" href="#ui-component-framework" title="Permanent link">¶</a></h4>
|
|
9669
|
-
<p>Nautobot's new <a href="../development/core/ui-component-framework.html">UI Component Framework</a> provides a set of Python APIs for defining parts of the Nautobot UI without needing, in many cases, to write custom HTML templates. In
|
|
9670
|
-
<p><a href="../development/apps/migration/ui-component-framework/index.html">Adoption of this framework</a> significantly reduces the amount of boilerplate needed to define an object detail view, drives increased self-consistency across views, and encourages code reuse. It also insulates Apps from the details of Nautobot's CSS (Bootstrap 3 framework), smoothing the way for Nautobot to adopt
|
|
9671
|
-
<p>App <a href="../development/apps/api/ui-extensions/object-views.html">template extensions</a
|
|
9672
|
-
<p>As of Nautobot 2.4.0, the following detail views have been migrated to use the UI Component Framework:</p>
|
|
10002
|
+
<p>Nautobot's new <a href="../development/core/ui-component-framework.html">UI Component Framework</a> provides a set of Python APIs for defining parts of the Nautobot UI without needing, in many cases, to write custom HTML templates. In v2.4.0, the focus is primarily on the definition of object "detail" views as those were the most common cases where custom templates have been required in the past.</p>
|
|
10003
|
+
<p><a href="../development/apps/migration/ui-component-framework/index.html">Adoption of this framework</a> significantly reduces the amount of boilerplate needed to define an object detail view, drives increased self-consistency across views, and encourages code reuse. It also insulates Apps from the details of Nautobot's CSS and layout (Bootstrap 3 framework), smoothing the way for Nautobot to adopt UI changes in the future with minimal impact to compliant apps.</p>
|
|
10004
|
+
<p>App <a href="../development/apps/api/ui-extensions/object-views.html">template extensions</a>--which are used to inject App content into Nautobot Core views--offer new implementation patterns using the UI Component Framework and it is highly recomended that App developers take this opportunity to adopt, as old methods have been deprecated in some cases (see below).</p>
|
|
10005
|
+
<p>As of Nautobot 2.4.0, the following detail views have been migrated to use the UI Component Framework, and any app template extensions targeting these models should adopt:</p>
|
|
9673
10006
|
<ul>
|
|
9674
10007
|
<li>Circuit</li>
|
|
9675
10008
|
<li>Cluster Type</li>
|
|
@@ -9682,11 +10015,6 @@
|
|
|
9682
10015
|
<li>Tenant</li>
|
|
9683
10016
|
<li>VRF</li>
|
|
9684
10017
|
</ul>
|
|
9685
|
-
<h4 id="virtual-device-context-data-models">Virtual Device Context Data Models<a class="headerlink" href="#virtual-device-context-data-models" title="Permanent link">¶</a></h4>
|
|
9686
|
-
<p>Nautobot 2.4 adds a <a href="../user-guide/core-data-model/dcim/virtualdevicecontext.html"><code>VirtualDeviceContext</code></a> data model to support modeling of logical partitions of physical network devices, such as Cisco Nexus Virtual Device Contexts, Juniper Logical Systems, Arista Multi-instance EOS, and so forth. Device Interfaces can be associated to Virtual Device Contexts via the new <code>InterfaceVDCAssignment</code> model as well.</p>
|
|
9687
|
-
<h4 id="wireless-data-models">Wireless Data Models<a class="headerlink" href="#wireless-data-models" title="Permanent link">¶</a></h4>
|
|
9688
|
-
<p>Nautobot 2.4 adds the data models <a href="../user-guide/core-data-model/wireless/wirelessnetwork.html"><code>WirelessNetwork</code></a>, <a href="../user-guide/core-data-model/wireless/radioprofile.html"><code>RadioProfile</code></a>, and <a href="../user-guide/core-data-model/wireless/supporteddatarate.html"><code>SupportedDataRate</code></a>, enabling Nautobot to model campus wireless networks. In support of this functionality, the <a href="../user-guide/core-data-model/dcim/controller.html"><code>Controller</code></a> and <a href="../user-guide/core-data-model/dcim/controllermanageddevicegroup.html"><code>ControllerManagedDeviceGroup</code></a> models have been enhanced with additional capabilities as well.</p>
|
|
9689
|
-
<p>Refer to the <a href="../user-guide/core-data-model/wireless/index.html">Wireless</a> documentation for more details.</p>
|
|
9690
10018
|
<h3 id="deprecated">Deprecated<a class="headerlink" href="#deprecated" title="Permanent link">¶</a></h3>
|
|
9691
10019
|
<h4 id="filtertestcasesnameonlyfiltertestcase-and-filtertestcasesnameslugfiltertestcase"><code>FilterTestCases.NameOnlyFilterTestCase</code> and <code>FilterTestCases.NameSlugFilterTestCase</code><a class="headerlink" href="#filtertestcasesnameonlyfiltertestcase-and-filtertestcasesnameslugfiltertestcase" title="Permanent link">¶</a></h4>
|
|
9692
10020
|
<p>These two generic base test classes are deprecated. Apps should migrate to using <code>FilterTestCases.FilterTestCase</code> with an appropriately defined list of <code>generic_filter_tests</code> instead.</p>
|
|
@@ -9697,9 +10025,105 @@
|
|
|
9697
10025
|
<p>With the introduction of the UI Component Framework (described <a href="#ui-component-framework">above</a>), new APIs are available for Apps to extend core Nautobot views with additional content using this framework. A number of new APIs have been added to the <code>TemplateExtension</code> base class in support of this functionality, and several existing <code>TemplateExtension</code> APIs have been deprecated in favor of these new APIs. Refer to the <a href="../development/apps/api/ui-extensions/object-views.html">App development documentation</a> for details.</p>
|
|
9698
10026
|
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
9699
10027
|
<h4 id="removed-python-38-support">Removed Python 3.8 Support<a class="headerlink" href="#removed-python-38-support" title="Permanent link">¶</a></h4>
|
|
9700
|
-
<p>As Python 3.8 has reached end-of-life, Nautobot 2.4 requires a minimum of Python 3.9.</p>
|
|
10028
|
+
<p>As Python 3.8 has reached end-of-life, Nautobot 2.4 requires a minimum of Python 3.9. Note that existing installs using Python 3.8 will need to upgrade their Python version prior to initiating the Nautobot v2.4 upgrade.</p>
|
|
10029
|
+
<!-- pyml disable-num-lines 2 blanks-around-headers -->
|
|
10030
|
+
|
|
9701
10031
|
<!-- towncrier release notes start -->
|
|
10032
|
+
|
|
10033
|
+
<h2 id="v241-2025-01-21">v2.4.1 (2025-01-21)<a class="headerlink" href="#v241-2025-01-21" title="Permanent link">¶</a></h2>
|
|
10034
|
+
<h3 id="security-in-v241">Security in v2.4.1<a class="headerlink" href="#security-in-v241" title="Permanent link">¶</a></h3>
|
|
10035
|
+
<ul>
|
|
10036
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6780">#6780</a> - Updated <code>Django</code> to <code>4.2.18</code> to address <code>CVE-2024-56374</code>.</li>
|
|
10037
|
+
</ul>
|
|
10038
|
+
<h3 id="fixed-in-v241">Fixed in v2.4.1<a class="headerlink" href="#fixed-in-v241" title="Permanent link">¶</a></h3>
|
|
10039
|
+
<ul>
|
|
10040
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6427">#6427</a> - Fixed a bug which allowed several wireless interface types to accept cables.</li>
|
|
10041
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6489">#6489</a> - Fixed partial-match filters (such as <code>__ic</code> and <code>__isw</code>) on fields that have restricted choices (<code>Prefix.type</code>, <code>Interface.type</code>, etc.) so that partial values are no longer rejected.</li>
|
|
10042
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6763">#6763</a> - Fixed the issue where the Wireless Network detail view fails to render when any record in the Controller Managed Device Groups table is missing a VLAN.</li>
|
|
10043
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6770">#6770</a> - Fixed breakage of JobButton functionality.</li>
|
|
10044
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6771">#6771</a> - Reverted breaking changes to various generic View base class attributes.</li>
|
|
10045
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6773">#6773</a> - Fixed an exception when trying to render a Job class to a form when no corresponding Job database record exists.</li>
|
|
10046
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6776">#6776</a> - Fixed <code>FilterTestCase.generic_filter_tests</code> to again be optional as intended.</li>
|
|
10047
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6779">#6779</a> - Fixed Object Bulk Delete and Object Bulk Edit functionalities.</li>
|
|
10048
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6783">#6783</a> - Fixed <code>NautobotDataBaseScheduler</code> unable to run Scheduled Jobs without job queues assigned.</li>
|
|
10049
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6786">#6786</a> - Fixed incorrect marking of <code>capabilities</code> field as required on Controller and ControllerManagedDeviceGroup REST APIs.</li>
|
|
10050
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6792">#6792</a> - Fixed <code>natural_key_field_lookups</code> for proxy models.</li>
|
|
10051
|
+
</ul>
|
|
10052
|
+
<h3 id="housekeeping-in-v241">Housekeeping in v2.4.1<a class="headerlink" href="#housekeeping-in-v241" title="Permanent link">¶</a></h3>
|
|
10053
|
+
<ul>
|
|
10054
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6768">#6768</a> - Fixed link to changelog fragment documentation.</li>
|
|
10055
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6794">#6794</a> - Fixed Device factory to ensure that it only selects SoftwareImageFiles that are permitted for a given Device.</li>
|
|
10056
|
+
</ul>
|
|
10057
|
+
<h2 id="v240-2025-01-10">v2.4.0 (2025-01-10)<a class="headerlink" href="#v240-2025-01-10" title="Permanent link">¶</a></h2>
|
|
10058
|
+
<h3 id="added-in-v240">Added in v2.4.0<a class="headerlink" href="#added-in-v240" title="Permanent link">¶</a></h3>
|
|
10059
|
+
<ul>
|
|
10060
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/1004">#1004</a> - Added singleton job functionality to limit specified jobs to one concurrent execution.</li>
|
|
10061
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6353">#6353</a> - Added "Bulk Delete Objects" system Job.</li>
|
|
10062
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6354">#6354</a> - Added "Bulk Edit Objects" system job.</li>
|
|
10063
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6462">#6462</a> - Added tenant relationship to the <code>ControllerManagedDeviceGroup</code></li>
|
|
10064
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6462">#6462</a> - Added <code>tenant</code> and <code>description</code> fields to forms, filtersets and tables for <code>Controller</code> and <code>ControllerManagedDeviceGroup</code></li>
|
|
10065
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6556">#6556</a> - Added REST API support for an <code>?exclude_m2m=true</code> query parameter. Specifying this parameter prevents the API from retrieving and serializing many-to-many relations on the requested object(s) (for example, the list of all Prefixes associated with a given VRF), which can in some cases greatly improve the performance of the API and reduce memory and network overhead substantially.</li>
|
|
10066
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6556">#6556</a> - Added automatic optimization of REST API querysets via appropriate <code>select_related</code> and <code>prefetch_related</code> calls.</li>
|
|
10067
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6556">#6556</a> - Enhanced generic REST API test methods <code>ListObjectsViewTestCase.test_list_objects_depth_0</code> and <code>ListObjectsViewTestCase.test_list_objects_depth_1</code> to test the <code>?exclude_m2m=true</code> query parameter. This enhancement includes checks for missing related fields in the serialized data, which may result in new test failures being seen in Apps using this test class.</li>
|
|
10068
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6556">#6556</a> - Enhanced generic REST API test method <code>UpdateObjectViewTestCase.test_update_object</code> to include an idempotency test in combination with the <code>?exclude_m2m=true</code> query parameter. This may result in new test failures being seen in Apps using this test class.</li>
|
|
10069
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6597">#6597</a> - Added an about page that displays Nautobot and support contract information.</li>
|
|
10070
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6597">#6597</a> - Added <code>NTC_SUPPORT_CONTRACT_EXPIRATION_DATE</code> configuration setting.</li>
|
|
10071
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6684">#6684</a> - Added support for <code>label-transparent</code> CSS class.</li>
|
|
10072
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6684">#6684</a> - Added "success" log entry counts to the Job Result table.</li>
|
|
10073
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6751">#6751</a> - Added NetObs and Load Balancer to Apps Marketplace.</li>
|
|
10074
|
+
</ul>
|
|
10075
|
+
<h3 id="changed-in-v240">Changed in v2.4.0<a class="headerlink" href="#changed-in-v240" title="Permanent link">¶</a></h3>
|
|
10076
|
+
<ul>
|
|
10077
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6463">#6463</a> - Reorganized parts of the Device and VirtualMachine create/edit forms for consistency and clarity.</li>
|
|
10078
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6529">#6529</a> - Added VRF's to the Prefixes API.</li>
|
|
10079
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6556">#6556</a> - Changed <code>DynamicModelChoiceField</code>, <code>DynamicModelMultipleChoiceField</code>, and <code>MultiMatchModelMultipleChoiceField</code> default behavior to include <code>?exclude_m2m=true</code> as a query parameter to the REST API, improving the typical performance of populating such fields with options.</li>
|
|
10080
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6652">#6652</a> - Refined the App Marketplace and Installed Apps views based on stakeholder feedback.</li>
|
|
10081
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6684">#6684</a> - Changed the <code>add</code> navigation menu buttons to be styled as <code>primary</code> (light blue) rather than <code>info</code> (darker blue).</li>
|
|
10082
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6684">#6684</a> - Updated the "author" and "availability" text in App Marketplace data for clarity.</li>
|
|
10083
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6684">#6684</a> - Adjusted the layout and rendering of the App Marketplace and Installed Apps views based on stakeholder feedback.</li>
|
|
10084
|
+
</ul>
|
|
10085
|
+
<h3 id="fixed-in-v240">Fixed in v2.4.0<a class="headerlink" href="#fixed-in-v240" title="Permanent link">¶</a></h3>
|
|
10086
|
+
<ul>
|
|
10087
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6461">#6461</a> - Fixed inconsistent rendering of DynamicModelChoiceField throughout the UI.</li>
|
|
10088
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6462">#6462</a> - Fixed <code>JSONArrayFormField</code> error that field is required when default value is used.</li>
|
|
10089
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6526">#6526</a> - Fixed an AttributeError that occurred in the UI when editing a <code>DynamicGroup</code> with <code>ipam|prefix</code> as its content-type and changing the value of the "Present in VRF" field.</li>
|
|
10090
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6556">#6556</a> - Added missing <code>tags</code> field to <code>CircuitTermination</code>, <code>Contact</code>, <code>DeviceFamily</code>, <code>GitRepository</code>, <code>MetadataType</code>, <code>Team</code>, <code>VirtualDeviceContext</code> REST APIs.</li>
|
|
10091
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6556">#6556</a> - Fixed incorrect field identification logic in REST API testing helper method <code>ListObjectsViewTestCase.get_depth_fields()</code>. This may result in new detection of latent issues in Apps by this test case.</li>
|
|
10092
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6556">#6556</a> - Fixed incorrect test logic in REST API generic test case <code>UpdateObjectViewTestCase.test_update_object()</code>. This may result in new detection of latent issues in Apps by this test case.</li>
|
|
10093
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6556">#6556</a> - Fixed <code>?depth</code> query parameter support in <code>Contact</code> and <code>Team</code> REST APIs.</li>
|
|
10094
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6601">#6601</a> - Fixed whitespace in Jinja template renderer.</li>
|
|
10095
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6602">#6602</a> - Fixed incorrect naming of <code>controller_managed_device_groups</code> filter on the RadioProfile and WirelessNetwork filtersets.</li>
|
|
10096
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6629">#6629</a> - Fixed an <code>AttributeError</code> that could be raised if a <code>DynamicModelChoiceField</code> uses a non-standard <code>widget</code>.</li>
|
|
10097
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6661">#6661</a> - Fixed the rendering of the dynamic group associable model list tables.</li>
|
|
10098
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6663">#6663</a> - Fixed <code>test_cable_cannot_terminate_to_a_virtual_interface</code> and <code>test_cable_cannot_terminate_to_a_wireless_interface</code> tests so they fail properly.</li>
|
|
10099
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6738">#6738</a> - Fixed an exception when cleaning a Prefix that was defined by specifying <code>network</code> and <code>prefix_length</code>.</li>
|
|
10100
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6743">#6743</a> - Fixed incorrect rendering of the "Assigned" column in the IPAddress list view.</li>
|
|
10101
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6745">#6745</a> - Restored indentation of child prefixes in Prefix detail view.</li>
|
|
10102
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6745">#6745</a> - Improved logic for generation of "available" child prefixes in Prefix detail view.</li>
|
|
10103
|
+
</ul>
|
|
10104
|
+
<h3 id="dependencies-in-v240">Dependencies in v2.4.0<a class="headerlink" href="#dependencies-in-v240" title="Permanent link">¶</a></h3>
|
|
10105
|
+
<ul>
|
|
10106
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6424">#6424</a> - Updated <code>django-structlog</code> dependency to <code>^9.0.0</code>.</li>
|
|
10107
|
+
</ul>
|
|
10108
|
+
<h3 id="documentation-in-v240">Documentation in v2.4.0<a class="headerlink" href="#documentation-in-v240" title="Permanent link">¶</a></h3>
|
|
10109
|
+
<ul>
|
|
10110
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6436">#6436</a> - Clarified NGINX user in installation documentation.</li>
|
|
10111
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6480">#6480</a> - Added kubernetes-related job documentation and removed kubernetes-kind-related documentation.</li>
|
|
10112
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6512">#6512</a> - Improved screenshots of UI Component Framework examples.</li>
|
|
10113
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6512">#6512</a> - Added before/after example in Migration guide for UI Component Framework.</li>
|
|
10114
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6639">#6639</a> - Added User Guide for Wireless Networks.</li>
|
|
10115
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6654">#6654</a> - Improved REST API documentation about query parameters and filtering of fields.</li>
|
|
10116
|
+
</ul>
|
|
10117
|
+
<h3 id="housekeeping-in-v240">Housekeeping in v2.4.0<a class="headerlink" href="#housekeeping-in-v240" title="Permanent link">¶</a></h3>
|
|
10118
|
+
<ul>
|
|
10119
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6424">#6424</a> - Updated development dependencies <code>faker</code> to <code>>=33.1.0,<33.2.0</code> and <code>watchdog</code> to <code>~6.0.0</code>.</li>
|
|
10120
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6612">#6612</a> - Replaced <code>markdownlint-cli</code> development dependency with Python package <code>pymarkdownlnt</code> and removed Node.js and <code>npm</code> from the development Docker images.</li>
|
|
10121
|
+
<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>
|
|
10122
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6715">#6715</a> - Updated development dependency <code>ruff</code> to <code>~0.8.5</code> and addressed new rules added in that version.</li>
|
|
10123
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6742">#6742</a> - Updated various development dependencies to the latest versions available as of January 7.</li>
|
|
10124
|
+
</ul>
|
|
9702
10125
|
<h2 id="v240b1-2024-11-25">v2.4.0b1 (2024-11-25)<a class="headerlink" href="#v240b1-2024-11-25" title="Permanent link">¶</a></h2>
|
|
10126
|
+
<h3 id="added-in-v240b1">Added in v2.4.0b1<a class="headerlink" href="#added-in-v240b1" title="Permanent link">¶</a></h3>
|
|
9703
10127
|
<ul>
|
|
9704
10128
|
<li><a href="https://github.com/nautobot/nautobot/issues/3263">#3263</a> - Added support for users to specify their timezone from the user Preferences UI.</li>
|
|
9705
10129
|
<li><a href="https://github.com/nautobot/nautobot/issues/6087">#6087</a> - Added JobQueue and JobQueueAssignment models, GraphQL, UI and API.</li>
|
|
@@ -9753,7 +10177,7 @@
|
|
|
9753
10177
|
<li><a href="https://github.com/nautobot/nautobot/issues/6539">#6539</a> - Added Installed Apps page tile view.</li>
|
|
9754
10178
|
<li><a href="https://github.com/nautobot/nautobot/issues/6555">#6555</a> - Added a Jinja template renderer to the UI.</li>
|
|
9755
10179
|
</ul>
|
|
9756
|
-
<h3 id="changed">Changed<a class="headerlink" href="#changed" title="Permanent link">¶</a></h3>
|
|
10180
|
+
<h3 id="changed-in-v240b1">Changed in v2.4.0b1<a class="headerlink" href="#changed-in-v240b1" title="Permanent link">¶</a></h3>
|
|
9757
10181
|
<ul>
|
|
9758
10182
|
<li><a href="https://github.com/nautobot/nautobot/issues/6125">#6125</a> - Refactored Job run related code to be able to use Job Queues.</li>
|
|
9759
10183
|
<li><a href="https://github.com/nautobot/nautobot/issues/6133">#6133</a> - Converted <code>Circuit</code> detail view to use the new UI framework.</li>
|
|
@@ -9771,18 +10195,18 @@
|
|
|
9771
10195
|
<li><a href="https://github.com/nautobot/nautobot/issues/6476">#6476</a> - Converted <code>ClusterType</code> detail view to use UI framework.</li>
|
|
9772
10196
|
<li><a href="https://github.com/nautobot/nautobot/issues/6503">#6503</a> - Addressed Wireless models UI Feedback.</li>
|
|
9773
10197
|
</ul>
|
|
9774
|
-
<h3 id="
|
|
10198
|
+
<h3 id="deprecated-in-v240b1">Deprecated in v2.4.0b1<a class="headerlink" href="#deprecated-in-v240b1" title="Permanent link">¶</a></h3>
|
|
9775
10199
|
<ul>
|
|
9776
10200
|
<li><a href="https://github.com/nautobot/nautobot/issues/6108">#6108</a> - Deprecated the <code>FilterTestCases.NameOnlyFilterTestCase</code> and <code>FilterTestCases.NameSlugFilterTestCase</code> generic test classes. Apps should migrate to <code>FilterTestCases.FilterTestCase</code> with an appropriately defined list of <code>generic_filter_tests</code> instead.</li>
|
|
9777
10201
|
<li><a href="https://github.com/nautobot/nautobot/issues/6142">#6142</a> - Deprecated the <code>TemplateExtension.buttons()</code> API in favor of <code>TemplateExtension.object_detail_buttons</code> implementation based around the UI Component Framework.</li>
|
|
9778
10202
|
<li><a href="https://github.com/nautobot/nautobot/issues/6276">#6276</a> - Deprecated the <code>TemplateExtension.left_page()</code>, <code>TemplateExtension.right_page()</code>, and <code>TemplateExtension.full_width_page()</code> APIs in favor of <code>TemplateExtension.object_detail_panels</code> implementation based around the UI Component Framework.</li>
|
|
9779
10203
|
</ul>
|
|
9780
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
10204
|
+
<h3 id="removed-in-v240b1">Removed in v2.4.0b1<a class="headerlink" href="#removed-in-v240b1" title="Permanent link">¶</a></h3>
|
|
9781
10205
|
<ul>
|
|
9782
10206
|
<li><a href="https://github.com/nautobot/nautobot/issues/6108">#6108</a> - Removed the previously deprecated <code>ViewTestCases.BulkImportObjectsViewTestCase</code> generic test class as obsolete.</li>
|
|
9783
10207
|
<li><a href="https://github.com/nautobot/nautobot/issues/6342">#6342</a> - Removed remnants of the React UI prototype - <code>NavContext</code>, <code>NavGrouping</code>, <code>NavItem</code>, <code>GetMenuAPIView</code>, <code>GetObjectCountsView</code>, <code>ViewConfigException</code>, <code>get_all_new_ui_ready_routes()</code>, <code>get_only_new_ui_ready_routes()</code>, <code>is_route_new_ui_ready()</code>.</li>
|
|
9784
10208
|
</ul>
|
|
9785
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10209
|
+
<h3 id="fixed-in-v240b1">Fixed in v2.4.0b1<a class="headerlink" href="#fixed-in-v240b1" title="Permanent link">¶</a></h3>
|
|
9786
10210
|
<ul>
|
|
9787
10211
|
<li><a href="https://github.com/nautobot/nautobot/issues/6089">#6089</a> - Fixed warning message <code>No sanitizer support for <class 'NoneType'> data</code> emitted by the <code>nautobot-server runjob --local ...</code> command.</li>
|
|
9788
10212
|
<li><a href="https://github.com/nautobot/nautobot/issues/6108">#6108</a> - Fixed incorrect definition of <code>VirtualMachineFilterSet.cluster</code> filter.</li>
|
|
@@ -9808,7 +10232,7 @@
|
|
|
9808
10232
|
<li><a href="https://github.com/nautobot/nautobot/issues/6546">#6546</a> - Fixed inconsistent rendering of the Role column on the Virtual Device Context list table.</li>
|
|
9809
10233
|
<li><a href="https://github.com/nautobot/nautobot/issues/6549">#6549</a> - Added missing <code>/</code> to <code>/api/core/render-jinja-template/</code> URL.</li>
|
|
9810
10234
|
</ul>
|
|
9811
|
-
<h3 id="
|
|
10235
|
+
<h3 id="dependencies-in-v240b1">Dependencies in v2.4.0b1<a class="headerlink" href="#dependencies-in-v240b1" title="Permanent link">¶</a></h3>
|
|
9812
10236
|
<ul>
|
|
9813
10237
|
<li><a href="https://github.com/nautobot/nautobot/issues/5963">#5963</a> - Updated <code>django-taggit</code> to <code>~6.1.0</code>.</li>
|
|
9814
10238
|
<li><a href="https://github.com/nautobot/nautobot/issues/6252">#6252</a> - Dropped support for Python 3.8. Python 3.9 is now the minimum version required by Nautobot.</li>
|
|
@@ -9820,7 +10244,7 @@
|
|
|
9820
10244
|
<li><a href="https://github.com/nautobot/nautobot/issues/6469">#6469</a> - Updated dependency <code>django-silk</code> to <code>~5.3.0</code>.</li>
|
|
9821
10245
|
<li><a href="https://github.com/nautobot/nautobot/issues/6549">#6549</a> - Moved <code>kubernetes</code> from a development-only dependency to a required dependency.</li>
|
|
9822
10246
|
</ul>
|
|
9823
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10247
|
+
<h3 id="documentation-in-v240b1">Documentation in v2.4.0b1<a class="headerlink" href="#documentation-in-v240b1" title="Permanent link">¶</a></h3>
|
|
9824
10248
|
<ul>
|
|
9825
10249
|
<li><a href="https://github.com/nautobot/nautobot/issues/6144">#6144</a> - Added documentation for Virtual Device Contexts.</li>
|
|
9826
10250
|
<li><a href="https://github.com/nautobot/nautobot/issues/6254">#6254</a> - Added documentation of how to use K8s Kind cluster for local K8s integrations development.</li>
|
|
@@ -9831,7 +10255,7 @@
|
|
|
9831
10255
|
<li><a href="https://github.com/nautobot/nautobot/issues/6381">#6381</a> - Added Wireless Model documentation.</li>
|
|
9832
10256
|
<li><a href="https://github.com/nautobot/nautobot/issues/6549">#6549</a> - Added 2.4 release overview.</li>
|
|
9833
10257
|
</ul>
|
|
9834
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10258
|
+
<h3 id="housekeeping-in-v240b1">Housekeeping in v2.4.0b1<a class="headerlink" href="#housekeeping-in-v240b1" title="Permanent link">¶</a></h3>
|
|
9835
10259
|
<ul>
|
|
9836
10260
|
<li><a href="https://github.com/nautobot/nautobot/issues/5963">#5963</a> - Updated development dependency <code>faker</code> to <code>>=30.1.0,<30.2.0</code>.</li>
|
|
9837
10261
|
<li><a href="https://github.com/nautobot/nautobot/issues/5963">#5963</a> - Updated documentation dependency <code>towncrier</code> to <code>~24.8.0</code>.</li>
|
|
@@ -9996,7 +10420,7 @@
|
|
|
9996
10420
|
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
9997
10421
|
|
|
9998
10422
|
|
|
9999
|
-
<script src="../assets/javascripts/bundle.
|
|
10423
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
10000
10424
|
|
|
10001
10425
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10002
10426
|
|