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
|
|
|
@@ -8606,36 +8648,36 @@
|
|
|
8606
8648
|
<ul class="md-nav__list">
|
|
8607
8649
|
|
|
8608
8650
|
<li class="md-nav__item">
|
|
8609
|
-
<a href="#
|
|
8651
|
+
<a href="#added-in-v229" class="md-nav__link">
|
|
8610
8652
|
<span class="md-ellipsis">
|
|
8611
|
-
Added
|
|
8653
|
+
Added in v2.2.9
|
|
8612
8654
|
</span>
|
|
8613
8655
|
</a>
|
|
8614
8656
|
|
|
8615
8657
|
</li>
|
|
8616
8658
|
|
|
8617
8659
|
<li class="md-nav__item">
|
|
8618
|
-
<a href="#fixed" class="md-nav__link">
|
|
8660
|
+
<a href="#fixed-in-v229" class="md-nav__link">
|
|
8619
8661
|
<span class="md-ellipsis">
|
|
8620
|
-
Fixed
|
|
8662
|
+
Fixed in v2.2.9
|
|
8621
8663
|
</span>
|
|
8622
8664
|
</a>
|
|
8623
8665
|
|
|
8624
8666
|
</li>
|
|
8625
8667
|
|
|
8626
8668
|
<li class="md-nav__item">
|
|
8627
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8669
|
+
<a href="#dependencies-in-v229" class="md-nav__link">
|
|
8628
8670
|
<span class="md-ellipsis">
|
|
8629
|
-
Dependencies
|
|
8671
|
+
Dependencies in v2.2.9
|
|
8630
8672
|
</span>
|
|
8631
8673
|
</a>
|
|
8632
8674
|
|
|
8633
8675
|
</li>
|
|
8634
8676
|
|
|
8635
8677
|
<li class="md-nav__item">
|
|
8636
|
-
<a href="#documentation" class="md-nav__link">
|
|
8678
|
+
<a href="#documentation-in-v229" class="md-nav__link">
|
|
8637
8679
|
<span class="md-ellipsis">
|
|
8638
|
-
Documentation
|
|
8680
|
+
Documentation in v2.2.9
|
|
8639
8681
|
</span>
|
|
8640
8682
|
</a>
|
|
8641
8683
|
|
|
@@ -8657,45 +8699,45 @@
|
|
|
8657
8699
|
<ul class="md-nav__list">
|
|
8658
8700
|
|
|
8659
8701
|
<li class="md-nav__item">
|
|
8660
|
-
<a href="#security" class="md-nav__link">
|
|
8702
|
+
<a href="#security-in-v228" class="md-nav__link">
|
|
8661
8703
|
<span class="md-ellipsis">
|
|
8662
|
-
Security
|
|
8704
|
+
Security in v2.2.8
|
|
8663
8705
|
</span>
|
|
8664
8706
|
</a>
|
|
8665
8707
|
|
|
8666
8708
|
</li>
|
|
8667
8709
|
|
|
8668
8710
|
<li class="md-nav__item">
|
|
8669
|
-
<a href="#
|
|
8711
|
+
<a href="#fixed-in-v228" class="md-nav__link">
|
|
8670
8712
|
<span class="md-ellipsis">
|
|
8671
|
-
Fixed
|
|
8713
|
+
Fixed in v2.2.8
|
|
8672
8714
|
</span>
|
|
8673
8715
|
</a>
|
|
8674
8716
|
|
|
8675
8717
|
</li>
|
|
8676
8718
|
|
|
8677
8719
|
<li class="md-nav__item">
|
|
8678
|
-
<a href="#
|
|
8720
|
+
<a href="#dependencies-in-v228" class="md-nav__link">
|
|
8679
8721
|
<span class="md-ellipsis">
|
|
8680
|
-
Dependencies
|
|
8722
|
+
Dependencies in v2.2.8
|
|
8681
8723
|
</span>
|
|
8682
8724
|
</a>
|
|
8683
8725
|
|
|
8684
8726
|
</li>
|
|
8685
8727
|
|
|
8686
8728
|
<li class="md-nav__item">
|
|
8687
|
-
<a href="#
|
|
8729
|
+
<a href="#documentation-in-v228" class="md-nav__link">
|
|
8688
8730
|
<span class="md-ellipsis">
|
|
8689
|
-
Documentation
|
|
8731
|
+
Documentation in v2.2.8
|
|
8690
8732
|
</span>
|
|
8691
8733
|
</a>
|
|
8692
8734
|
|
|
8693
8735
|
</li>
|
|
8694
8736
|
|
|
8695
8737
|
<li class="md-nav__item">
|
|
8696
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8738
|
+
<a href="#housekeeping-in-v228" class="md-nav__link">
|
|
8697
8739
|
<span class="md-ellipsis">
|
|
8698
|
-
Housekeeping
|
|
8740
|
+
Housekeeping in v2.2.8
|
|
8699
8741
|
</span>
|
|
8700
8742
|
</a>
|
|
8701
8743
|
|
|
@@ -8717,36 +8759,36 @@
|
|
|
8717
8759
|
<ul class="md-nav__list">
|
|
8718
8760
|
|
|
8719
8761
|
<li class="md-nav__item">
|
|
8720
|
-
<a href="#
|
|
8762
|
+
<a href="#security-in-v227" class="md-nav__link">
|
|
8721
8763
|
<span class="md-ellipsis">
|
|
8722
|
-
Security
|
|
8764
|
+
Security in v2.2.7
|
|
8723
8765
|
</span>
|
|
8724
8766
|
</a>
|
|
8725
8767
|
|
|
8726
8768
|
</li>
|
|
8727
8769
|
|
|
8728
8770
|
<li class="md-nav__item">
|
|
8729
|
-
<a href="#
|
|
8771
|
+
<a href="#fixed-in-v227" class="md-nav__link">
|
|
8730
8772
|
<span class="md-ellipsis">
|
|
8731
|
-
Fixed
|
|
8773
|
+
Fixed in v2.2.7
|
|
8732
8774
|
</span>
|
|
8733
8775
|
</a>
|
|
8734
8776
|
|
|
8735
8777
|
</li>
|
|
8736
8778
|
|
|
8737
8779
|
<li class="md-nav__item">
|
|
8738
|
-
<a href="#
|
|
8780
|
+
<a href="#dependencies-in-v227" class="md-nav__link">
|
|
8739
8781
|
<span class="md-ellipsis">
|
|
8740
|
-
Dependencies
|
|
8782
|
+
Dependencies in v2.2.7
|
|
8741
8783
|
</span>
|
|
8742
8784
|
</a>
|
|
8743
8785
|
|
|
8744
8786
|
</li>
|
|
8745
8787
|
|
|
8746
8788
|
<li class="md-nav__item">
|
|
8747
|
-
<a href="#
|
|
8789
|
+
<a href="#housekeeping-in-v227" class="md-nav__link">
|
|
8748
8790
|
<span class="md-ellipsis">
|
|
8749
|
-
Housekeeping
|
|
8791
|
+
Housekeeping in v2.2.7
|
|
8750
8792
|
</span>
|
|
8751
8793
|
</a>
|
|
8752
8794
|
|
|
@@ -8768,54 +8810,54 @@
|
|
|
8768
8810
|
<ul class="md-nav__list">
|
|
8769
8811
|
|
|
8770
8812
|
<li class="md-nav__item">
|
|
8771
|
-
<a href="#
|
|
8813
|
+
<a href="#security-in-v226" class="md-nav__link">
|
|
8772
8814
|
<span class="md-ellipsis">
|
|
8773
|
-
Security
|
|
8815
|
+
Security in v2.2.6
|
|
8774
8816
|
</span>
|
|
8775
8817
|
</a>
|
|
8776
8818
|
|
|
8777
8819
|
</li>
|
|
8778
8820
|
|
|
8779
8821
|
<li class="md-nav__item">
|
|
8780
|
-
<a href="#
|
|
8822
|
+
<a href="#added-in-v226" class="md-nav__link">
|
|
8781
8823
|
<span class="md-ellipsis">
|
|
8782
|
-
Added
|
|
8824
|
+
Added in v2.2.6
|
|
8783
8825
|
</span>
|
|
8784
8826
|
</a>
|
|
8785
8827
|
|
|
8786
8828
|
</li>
|
|
8787
8829
|
|
|
8788
8830
|
<li class="md-nav__item">
|
|
8789
|
-
<a href="#
|
|
8831
|
+
<a href="#changed-in-v226" class="md-nav__link">
|
|
8790
8832
|
<span class="md-ellipsis">
|
|
8791
|
-
Changed
|
|
8833
|
+
Changed in v2.2.6
|
|
8792
8834
|
</span>
|
|
8793
8835
|
</a>
|
|
8794
8836
|
|
|
8795
8837
|
</li>
|
|
8796
8838
|
|
|
8797
8839
|
<li class="md-nav__item">
|
|
8798
|
-
<a href="#
|
|
8840
|
+
<a href="#fixed-in-v226" class="md-nav__link">
|
|
8799
8841
|
<span class="md-ellipsis">
|
|
8800
|
-
Fixed
|
|
8842
|
+
Fixed in v2.2.6
|
|
8801
8843
|
</span>
|
|
8802
8844
|
</a>
|
|
8803
8845
|
|
|
8804
8846
|
</li>
|
|
8805
8847
|
|
|
8806
8848
|
<li class="md-nav__item">
|
|
8807
|
-
<a href="#
|
|
8849
|
+
<a href="#documentation-in-v226" class="md-nav__link">
|
|
8808
8850
|
<span class="md-ellipsis">
|
|
8809
|
-
Documentation
|
|
8851
|
+
Documentation in v2.2.6
|
|
8810
8852
|
</span>
|
|
8811
8853
|
</a>
|
|
8812
8854
|
|
|
8813
8855
|
</li>
|
|
8814
8856
|
|
|
8815
8857
|
<li class="md-nav__item">
|
|
8816
|
-
<a href="#
|
|
8858
|
+
<a href="#housekeeping-in-v226" class="md-nav__link">
|
|
8817
8859
|
<span class="md-ellipsis">
|
|
8818
|
-
Housekeeping
|
|
8860
|
+
Housekeeping in v2.2.6
|
|
8819
8861
|
</span>
|
|
8820
8862
|
</a>
|
|
8821
8863
|
|
|
@@ -8837,54 +8879,54 @@
|
|
|
8837
8879
|
<ul class="md-nav__list">
|
|
8838
8880
|
|
|
8839
8881
|
<li class="md-nav__item">
|
|
8840
|
-
<a href="#
|
|
8882
|
+
<a href="#security-in-v225" class="md-nav__link">
|
|
8841
8883
|
<span class="md-ellipsis">
|
|
8842
|
-
Security
|
|
8884
|
+
Security in v2.2.5
|
|
8843
8885
|
</span>
|
|
8844
8886
|
</a>
|
|
8845
8887
|
|
|
8846
8888
|
</li>
|
|
8847
8889
|
|
|
8848
8890
|
<li class="md-nav__item">
|
|
8849
|
-
<a href="#
|
|
8891
|
+
<a href="#added-in-v225" class="md-nav__link">
|
|
8850
8892
|
<span class="md-ellipsis">
|
|
8851
|
-
Added
|
|
8893
|
+
Added in v2.2.5
|
|
8852
8894
|
</span>
|
|
8853
8895
|
</a>
|
|
8854
8896
|
|
|
8855
8897
|
</li>
|
|
8856
8898
|
|
|
8857
8899
|
<li class="md-nav__item">
|
|
8858
|
-
<a href="#removed" class="md-nav__link">
|
|
8900
|
+
<a href="#removed-in-v225" class="md-nav__link">
|
|
8859
8901
|
<span class="md-ellipsis">
|
|
8860
|
-
Removed
|
|
8902
|
+
Removed in v2.2.5
|
|
8861
8903
|
</span>
|
|
8862
8904
|
</a>
|
|
8863
8905
|
|
|
8864
8906
|
</li>
|
|
8865
8907
|
|
|
8866
8908
|
<li class="md-nav__item">
|
|
8867
|
-
<a href="#
|
|
8909
|
+
<a href="#fixed-in-v225" class="md-nav__link">
|
|
8868
8910
|
<span class="md-ellipsis">
|
|
8869
|
-
Fixed
|
|
8911
|
+
Fixed in v2.2.5
|
|
8870
8912
|
</span>
|
|
8871
8913
|
</a>
|
|
8872
8914
|
|
|
8873
8915
|
</li>
|
|
8874
8916
|
|
|
8875
8917
|
<li class="md-nav__item">
|
|
8876
|
-
<a href="#
|
|
8918
|
+
<a href="#documentation-in-v225" class="md-nav__link">
|
|
8877
8919
|
<span class="md-ellipsis">
|
|
8878
|
-
Documentation
|
|
8920
|
+
Documentation in v2.2.5
|
|
8879
8921
|
</span>
|
|
8880
8922
|
</a>
|
|
8881
8923
|
|
|
8882
8924
|
</li>
|
|
8883
8925
|
|
|
8884
8926
|
<li class="md-nav__item">
|
|
8885
|
-
<a href="#
|
|
8927
|
+
<a href="#housekeeping-in-v225" class="md-nav__link">
|
|
8886
8928
|
<span class="md-ellipsis">
|
|
8887
|
-
Housekeeping
|
|
8929
|
+
Housekeeping in v2.2.5
|
|
8888
8930
|
</span>
|
|
8889
8931
|
</a>
|
|
8890
8932
|
|
|
@@ -8906,45 +8948,45 @@
|
|
|
8906
8948
|
<ul class="md-nav__list">
|
|
8907
8949
|
|
|
8908
8950
|
<li class="md-nav__item">
|
|
8909
|
-
<a href="#
|
|
8951
|
+
<a href="#security-in-v224" class="md-nav__link">
|
|
8910
8952
|
<span class="md-ellipsis">
|
|
8911
|
-
Security
|
|
8953
|
+
Security in v2.2.4
|
|
8912
8954
|
</span>
|
|
8913
8955
|
</a>
|
|
8914
8956
|
|
|
8915
8957
|
</li>
|
|
8916
8958
|
|
|
8917
8959
|
<li class="md-nav__item">
|
|
8918
|
-
<a href="#
|
|
8960
|
+
<a href="#added-in-v224" class="md-nav__link">
|
|
8919
8961
|
<span class="md-ellipsis">
|
|
8920
|
-
Added
|
|
8962
|
+
Added in v2.2.4
|
|
8921
8963
|
</span>
|
|
8922
8964
|
</a>
|
|
8923
8965
|
|
|
8924
8966
|
</li>
|
|
8925
8967
|
|
|
8926
8968
|
<li class="md-nav__item">
|
|
8927
|
-
<a href="#
|
|
8969
|
+
<a href="#fixed-in-v224" class="md-nav__link">
|
|
8928
8970
|
<span class="md-ellipsis">
|
|
8929
|
-
Fixed
|
|
8971
|
+
Fixed in v2.2.4
|
|
8930
8972
|
</span>
|
|
8931
8973
|
</a>
|
|
8932
8974
|
|
|
8933
8975
|
</li>
|
|
8934
8976
|
|
|
8935
8977
|
<li class="md-nav__item">
|
|
8936
|
-
<a href="#
|
|
8978
|
+
<a href="#documentation-in-v224" class="md-nav__link">
|
|
8937
8979
|
<span class="md-ellipsis">
|
|
8938
|
-
Documentation
|
|
8980
|
+
Documentation in v2.2.4
|
|
8939
8981
|
</span>
|
|
8940
8982
|
</a>
|
|
8941
8983
|
|
|
8942
8984
|
</li>
|
|
8943
8985
|
|
|
8944
8986
|
<li class="md-nav__item">
|
|
8945
|
-
<a href="#
|
|
8987
|
+
<a href="#housekeeping-in-v224" class="md-nav__link">
|
|
8946
8988
|
<span class="md-ellipsis">
|
|
8947
|
-
Housekeeping
|
|
8989
|
+
Housekeeping in v2.2.4
|
|
8948
8990
|
</span>
|
|
8949
8991
|
</a>
|
|
8950
8992
|
|
|
@@ -8966,54 +9008,54 @@
|
|
|
8966
9008
|
<ul class="md-nav__list">
|
|
8967
9009
|
|
|
8968
9010
|
<li class="md-nav__item">
|
|
8969
|
-
<a href="#
|
|
9011
|
+
<a href="#security-in-v223" class="md-nav__link">
|
|
8970
9012
|
<span class="md-ellipsis">
|
|
8971
|
-
Security
|
|
9013
|
+
Security in v2.2.3
|
|
8972
9014
|
</span>
|
|
8973
9015
|
</a>
|
|
8974
9016
|
|
|
8975
9017
|
</li>
|
|
8976
9018
|
|
|
8977
9019
|
<li class="md-nav__item">
|
|
8978
|
-
<a href="#
|
|
9020
|
+
<a href="#added-in-v223" class="md-nav__link">
|
|
8979
9021
|
<span class="md-ellipsis">
|
|
8980
|
-
Added
|
|
9022
|
+
Added in v2.2.3
|
|
8981
9023
|
</span>
|
|
8982
9024
|
</a>
|
|
8983
9025
|
|
|
8984
9026
|
</li>
|
|
8985
9027
|
|
|
8986
9028
|
<li class="md-nav__item">
|
|
8987
|
-
<a href="#
|
|
9029
|
+
<a href="#changed-in-v223" class="md-nav__link">
|
|
8988
9030
|
<span class="md-ellipsis">
|
|
8989
|
-
Changed
|
|
9031
|
+
Changed in v2.2.3
|
|
8990
9032
|
</span>
|
|
8991
9033
|
</a>
|
|
8992
9034
|
|
|
8993
9035
|
</li>
|
|
8994
9036
|
|
|
8995
9037
|
<li class="md-nav__item">
|
|
8996
|
-
<a href="#
|
|
9038
|
+
<a href="#fixed-in-v223" class="md-nav__link">
|
|
8997
9039
|
<span class="md-ellipsis">
|
|
8998
|
-
Fixed
|
|
9040
|
+
Fixed in v2.2.3
|
|
8999
9041
|
</span>
|
|
9000
9042
|
</a>
|
|
9001
9043
|
|
|
9002
9044
|
</li>
|
|
9003
9045
|
|
|
9004
9046
|
<li class="md-nav__item">
|
|
9005
|
-
<a href="#
|
|
9047
|
+
<a href="#documentation-in-v223" class="md-nav__link">
|
|
9006
9048
|
<span class="md-ellipsis">
|
|
9007
|
-
Documentation
|
|
9049
|
+
Documentation in v2.2.3
|
|
9008
9050
|
</span>
|
|
9009
9051
|
</a>
|
|
9010
9052
|
|
|
9011
9053
|
</li>
|
|
9012
9054
|
|
|
9013
9055
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
9056
|
+
<a href="#housekeeping-in-v223" class="md-nav__link">
|
|
9015
9057
|
<span class="md-ellipsis">
|
|
9016
|
-
Housekeeping
|
|
9058
|
+
Housekeeping in v2.2.3
|
|
9017
9059
|
</span>
|
|
9018
9060
|
</a>
|
|
9019
9061
|
|
|
@@ -9035,54 +9077,54 @@
|
|
|
9035
9077
|
<ul class="md-nav__list">
|
|
9036
9078
|
|
|
9037
9079
|
<li class="md-nav__item">
|
|
9038
|
-
<a href="#
|
|
9080
|
+
<a href="#security-in-v222" class="md-nav__link">
|
|
9039
9081
|
<span class="md-ellipsis">
|
|
9040
|
-
Security
|
|
9082
|
+
Security in v2.2.2
|
|
9041
9083
|
</span>
|
|
9042
9084
|
</a>
|
|
9043
9085
|
|
|
9044
9086
|
</li>
|
|
9045
9087
|
|
|
9046
9088
|
<li class="md-nav__item">
|
|
9047
|
-
<a href="#
|
|
9089
|
+
<a href="#added-in-v222" class="md-nav__link">
|
|
9048
9090
|
<span class="md-ellipsis">
|
|
9049
|
-
Added
|
|
9091
|
+
Added in v2.2.2
|
|
9050
9092
|
</span>
|
|
9051
9093
|
</a>
|
|
9052
9094
|
|
|
9053
9095
|
</li>
|
|
9054
9096
|
|
|
9055
9097
|
<li class="md-nav__item">
|
|
9056
|
-
<a href="#
|
|
9098
|
+
<a href="#changed-in-v222" class="md-nav__link">
|
|
9057
9099
|
<span class="md-ellipsis">
|
|
9058
|
-
Changed
|
|
9100
|
+
Changed in v2.2.2
|
|
9059
9101
|
</span>
|
|
9060
9102
|
</a>
|
|
9061
9103
|
|
|
9062
9104
|
</li>
|
|
9063
9105
|
|
|
9064
9106
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9107
|
+
<a href="#fixed-in-v222" class="md-nav__link">
|
|
9066
9108
|
<span class="md-ellipsis">
|
|
9067
|
-
Fixed
|
|
9109
|
+
Fixed in v2.2.2
|
|
9068
9110
|
</span>
|
|
9069
9111
|
</a>
|
|
9070
9112
|
|
|
9071
9113
|
</li>
|
|
9072
9114
|
|
|
9073
9115
|
<li class="md-nav__item">
|
|
9074
|
-
<a href="#
|
|
9116
|
+
<a href="#documentation-in-v222" class="md-nav__link">
|
|
9075
9117
|
<span class="md-ellipsis">
|
|
9076
|
-
Documentation
|
|
9118
|
+
Documentation in v2.2.2
|
|
9077
9119
|
</span>
|
|
9078
9120
|
</a>
|
|
9079
9121
|
|
|
9080
9122
|
</li>
|
|
9081
9123
|
|
|
9082
9124
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9125
|
+
<a href="#housekeeping-in-v222" class="md-nav__link">
|
|
9084
9126
|
<span class="md-ellipsis">
|
|
9085
|
-
Housekeeping
|
|
9127
|
+
Housekeeping in v2.2.2
|
|
9086
9128
|
</span>
|
|
9087
9129
|
</a>
|
|
9088
9130
|
|
|
@@ -9104,63 +9146,63 @@
|
|
|
9104
9146
|
<ul class="md-nav__list">
|
|
9105
9147
|
|
|
9106
9148
|
<li class="md-nav__item">
|
|
9107
|
-
<a href="#
|
|
9149
|
+
<a href="#security-in-v221" class="md-nav__link">
|
|
9108
9150
|
<span class="md-ellipsis">
|
|
9109
|
-
Security
|
|
9151
|
+
Security in v2.2.1
|
|
9110
9152
|
</span>
|
|
9111
9153
|
</a>
|
|
9112
9154
|
|
|
9113
9155
|
</li>
|
|
9114
9156
|
|
|
9115
9157
|
<li class="md-nav__item">
|
|
9116
|
-
<a href="#
|
|
9158
|
+
<a href="#added-in-v221" class="md-nav__link">
|
|
9117
9159
|
<span class="md-ellipsis">
|
|
9118
|
-
Added
|
|
9160
|
+
Added in v2.2.1
|
|
9119
9161
|
</span>
|
|
9120
9162
|
</a>
|
|
9121
9163
|
|
|
9122
9164
|
</li>
|
|
9123
9165
|
|
|
9124
9166
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9167
|
+
<a href="#changed-in-v221" class="md-nav__link">
|
|
9126
9168
|
<span class="md-ellipsis">
|
|
9127
|
-
Changed
|
|
9169
|
+
Changed in v2.2.1
|
|
9128
9170
|
</span>
|
|
9129
9171
|
</a>
|
|
9130
9172
|
|
|
9131
9173
|
</li>
|
|
9132
9174
|
|
|
9133
9175
|
<li class="md-nav__item">
|
|
9134
|
-
<a href="#
|
|
9176
|
+
<a href="#fixed-in-v221" class="md-nav__link">
|
|
9135
9177
|
<span class="md-ellipsis">
|
|
9136
|
-
Fixed
|
|
9178
|
+
Fixed in v2.2.1
|
|
9137
9179
|
</span>
|
|
9138
9180
|
</a>
|
|
9139
9181
|
|
|
9140
9182
|
</li>
|
|
9141
9183
|
|
|
9142
9184
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
9185
|
+
<a href="#dependencies-in-v221" class="md-nav__link">
|
|
9144
9186
|
<span class="md-ellipsis">
|
|
9145
|
-
Dependencies
|
|
9187
|
+
Dependencies in v2.2.1
|
|
9146
9188
|
</span>
|
|
9147
9189
|
</a>
|
|
9148
9190
|
|
|
9149
9191
|
</li>
|
|
9150
9192
|
|
|
9151
9193
|
<li class="md-nav__item">
|
|
9152
|
-
<a href="#
|
|
9194
|
+
<a href="#documentation-in-v221" class="md-nav__link">
|
|
9153
9195
|
<span class="md-ellipsis">
|
|
9154
|
-
Documentation
|
|
9196
|
+
Documentation in v2.2.1
|
|
9155
9197
|
</span>
|
|
9156
9198
|
</a>
|
|
9157
9199
|
|
|
9158
9200
|
</li>
|
|
9159
9201
|
|
|
9160
9202
|
<li class="md-nav__item">
|
|
9161
|
-
<a href="#
|
|
9203
|
+
<a href="#housekeeping-in-v221" class="md-nav__link">
|
|
9162
9204
|
<span class="md-ellipsis">
|
|
9163
|
-
Housekeeping
|
|
9205
|
+
Housekeeping in v2.2.1
|
|
9164
9206
|
</span>
|
|
9165
9207
|
</a>
|
|
9166
9208
|
|
|
@@ -9182,45 +9224,45 @@
|
|
|
9182
9224
|
<ul class="md-nav__list">
|
|
9183
9225
|
|
|
9184
9226
|
<li class="md-nav__item">
|
|
9185
|
-
<a href="#
|
|
9227
|
+
<a href="#added-in-v220" class="md-nav__link">
|
|
9186
9228
|
<span class="md-ellipsis">
|
|
9187
|
-
Added
|
|
9229
|
+
Added in v2.2.0
|
|
9188
9230
|
</span>
|
|
9189
9231
|
</a>
|
|
9190
9232
|
|
|
9191
9233
|
</li>
|
|
9192
9234
|
|
|
9193
9235
|
<li class="md-nav__item">
|
|
9194
|
-
<a href="#
|
|
9236
|
+
<a href="#changed-in-v220" class="md-nav__link">
|
|
9195
9237
|
<span class="md-ellipsis">
|
|
9196
|
-
Changed
|
|
9238
|
+
Changed in v2.2.0
|
|
9197
9239
|
</span>
|
|
9198
9240
|
</a>
|
|
9199
9241
|
|
|
9200
9242
|
</li>
|
|
9201
9243
|
|
|
9202
9244
|
<li class="md-nav__item">
|
|
9203
|
-
<a href="#
|
|
9245
|
+
<a href="#fixed-in-v220" class="md-nav__link">
|
|
9204
9246
|
<span class="md-ellipsis">
|
|
9205
|
-
Fixed
|
|
9247
|
+
Fixed in v2.2.0
|
|
9206
9248
|
</span>
|
|
9207
9249
|
</a>
|
|
9208
9250
|
|
|
9209
9251
|
</li>
|
|
9210
9252
|
|
|
9211
9253
|
<li class="md-nav__item">
|
|
9212
|
-
<a href="#
|
|
9254
|
+
<a href="#dependencies-in-v220" class="md-nav__link">
|
|
9213
9255
|
<span class="md-ellipsis">
|
|
9214
|
-
Dependencies
|
|
9256
|
+
Dependencies in v2.2.0
|
|
9215
9257
|
</span>
|
|
9216
9258
|
</a>
|
|
9217
9259
|
|
|
9218
9260
|
</li>
|
|
9219
9261
|
|
|
9220
9262
|
<li class="md-nav__item">
|
|
9221
|
-
<a href="#
|
|
9263
|
+
<a href="#housekeeping-in-v220" class="md-nav__link">
|
|
9222
9264
|
<span class="md-ellipsis">
|
|
9223
|
-
Housekeeping
|
|
9265
|
+
Housekeeping in v2.2.0
|
|
9224
9266
|
</span>
|
|
9225
9267
|
</a>
|
|
9226
9268
|
|
|
@@ -9242,72 +9284,72 @@
|
|
|
9242
9284
|
<ul class="md-nav__list">
|
|
9243
9285
|
|
|
9244
9286
|
<li class="md-nav__item">
|
|
9245
|
-
<a href="#
|
|
9287
|
+
<a href="#added-in-v220-beta1" class="md-nav__link">
|
|
9246
9288
|
<span class="md-ellipsis">
|
|
9247
|
-
Added
|
|
9289
|
+
Added in v2.2.0-beta.1
|
|
9248
9290
|
</span>
|
|
9249
9291
|
</a>
|
|
9250
9292
|
|
|
9251
9293
|
</li>
|
|
9252
9294
|
|
|
9253
9295
|
<li class="md-nav__item">
|
|
9254
|
-
<a href="#
|
|
9296
|
+
<a href="#changed-in-v220-beta1" class="md-nav__link">
|
|
9255
9297
|
<span class="md-ellipsis">
|
|
9256
|
-
Changed
|
|
9298
|
+
Changed in v2.2.0-beta.1
|
|
9257
9299
|
</span>
|
|
9258
9300
|
</a>
|
|
9259
9301
|
|
|
9260
9302
|
</li>
|
|
9261
9303
|
|
|
9262
9304
|
<li class="md-nav__item">
|
|
9263
|
-
<a href="#deprecated" class="md-nav__link">
|
|
9305
|
+
<a href="#deprecated-in-v220-beta1" class="md-nav__link">
|
|
9264
9306
|
<span class="md-ellipsis">
|
|
9265
|
-
Deprecated
|
|
9307
|
+
Deprecated in v2.2.0-beta.1
|
|
9266
9308
|
</span>
|
|
9267
9309
|
</a>
|
|
9268
9310
|
|
|
9269
9311
|
</li>
|
|
9270
9312
|
|
|
9271
9313
|
<li class="md-nav__item">
|
|
9272
|
-
<a href="#
|
|
9314
|
+
<a href="#removed-in-v220-beta1" class="md-nav__link">
|
|
9273
9315
|
<span class="md-ellipsis">
|
|
9274
|
-
Removed
|
|
9316
|
+
Removed in v2.2.0-beta.1
|
|
9275
9317
|
</span>
|
|
9276
9318
|
</a>
|
|
9277
9319
|
|
|
9278
9320
|
</li>
|
|
9279
9321
|
|
|
9280
9322
|
<li class="md-nav__item">
|
|
9281
|
-
<a href="#
|
|
9323
|
+
<a href="#fixed-in-v220-beta1" class="md-nav__link">
|
|
9282
9324
|
<span class="md-ellipsis">
|
|
9283
|
-
Fixed
|
|
9325
|
+
Fixed in v2.2.0-beta.1
|
|
9284
9326
|
</span>
|
|
9285
9327
|
</a>
|
|
9286
9328
|
|
|
9287
9329
|
</li>
|
|
9288
9330
|
|
|
9289
9331
|
<li class="md-nav__item">
|
|
9290
|
-
<a href="#
|
|
9332
|
+
<a href="#dependencies-in-v220-beta1" class="md-nav__link">
|
|
9291
9333
|
<span class="md-ellipsis">
|
|
9292
|
-
Dependencies
|
|
9334
|
+
Dependencies in v2.2.0-beta.1
|
|
9293
9335
|
</span>
|
|
9294
9336
|
</a>
|
|
9295
9337
|
|
|
9296
9338
|
</li>
|
|
9297
9339
|
|
|
9298
9340
|
<li class="md-nav__item">
|
|
9299
|
-
<a href="#
|
|
9341
|
+
<a href="#documentation-in-v220-beta1" class="md-nav__link">
|
|
9300
9342
|
<span class="md-ellipsis">
|
|
9301
|
-
Documentation
|
|
9343
|
+
Documentation in v2.2.0-beta.1
|
|
9302
9344
|
</span>
|
|
9303
9345
|
</a>
|
|
9304
9346
|
|
|
9305
9347
|
</li>
|
|
9306
9348
|
|
|
9307
9349
|
<li class="md-nav__item">
|
|
9308
|
-
<a href="#
|
|
9350
|
+
<a href="#housekeeping-in-v220-beta1" class="md-nav__link">
|
|
9309
9351
|
<span class="md-ellipsis">
|
|
9310
|
-
Housekeeping
|
|
9352
|
+
Housekeeping in v2.2.0-beta.1
|
|
9311
9353
|
</span>
|
|
9312
9354
|
</a>
|
|
9313
9355
|
|
|
@@ -10024,36 +10066,36 @@
|
|
|
10024
10066
|
<ul class="md-nav__list">
|
|
10025
10067
|
|
|
10026
10068
|
<li class="md-nav__item">
|
|
10027
|
-
<a href="#
|
|
10069
|
+
<a href="#added-in-v229" class="md-nav__link">
|
|
10028
10070
|
<span class="md-ellipsis">
|
|
10029
|
-
Added
|
|
10071
|
+
Added in v2.2.9
|
|
10030
10072
|
</span>
|
|
10031
10073
|
</a>
|
|
10032
10074
|
|
|
10033
10075
|
</li>
|
|
10034
10076
|
|
|
10035
10077
|
<li class="md-nav__item">
|
|
10036
|
-
<a href="#fixed" class="md-nav__link">
|
|
10078
|
+
<a href="#fixed-in-v229" class="md-nav__link">
|
|
10037
10079
|
<span class="md-ellipsis">
|
|
10038
|
-
Fixed
|
|
10080
|
+
Fixed in v2.2.9
|
|
10039
10081
|
</span>
|
|
10040
10082
|
</a>
|
|
10041
10083
|
|
|
10042
10084
|
</li>
|
|
10043
10085
|
|
|
10044
10086
|
<li class="md-nav__item">
|
|
10045
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10087
|
+
<a href="#dependencies-in-v229" class="md-nav__link">
|
|
10046
10088
|
<span class="md-ellipsis">
|
|
10047
|
-
Dependencies
|
|
10089
|
+
Dependencies in v2.2.9
|
|
10048
10090
|
</span>
|
|
10049
10091
|
</a>
|
|
10050
10092
|
|
|
10051
10093
|
</li>
|
|
10052
10094
|
|
|
10053
10095
|
<li class="md-nav__item">
|
|
10054
|
-
<a href="#documentation" class="md-nav__link">
|
|
10096
|
+
<a href="#documentation-in-v229" class="md-nav__link">
|
|
10055
10097
|
<span class="md-ellipsis">
|
|
10056
|
-
Documentation
|
|
10098
|
+
Documentation in v2.2.9
|
|
10057
10099
|
</span>
|
|
10058
10100
|
</a>
|
|
10059
10101
|
|
|
@@ -10075,45 +10117,45 @@
|
|
|
10075
10117
|
<ul class="md-nav__list">
|
|
10076
10118
|
|
|
10077
10119
|
<li class="md-nav__item">
|
|
10078
|
-
<a href="#security" class="md-nav__link">
|
|
10120
|
+
<a href="#security-in-v228" class="md-nav__link">
|
|
10079
10121
|
<span class="md-ellipsis">
|
|
10080
|
-
Security
|
|
10122
|
+
Security in v2.2.8
|
|
10081
10123
|
</span>
|
|
10082
10124
|
</a>
|
|
10083
10125
|
|
|
10084
10126
|
</li>
|
|
10085
10127
|
|
|
10086
10128
|
<li class="md-nav__item">
|
|
10087
|
-
<a href="#
|
|
10129
|
+
<a href="#fixed-in-v228" class="md-nav__link">
|
|
10088
10130
|
<span class="md-ellipsis">
|
|
10089
|
-
Fixed
|
|
10131
|
+
Fixed in v2.2.8
|
|
10090
10132
|
</span>
|
|
10091
10133
|
</a>
|
|
10092
10134
|
|
|
10093
10135
|
</li>
|
|
10094
10136
|
|
|
10095
10137
|
<li class="md-nav__item">
|
|
10096
|
-
<a href="#
|
|
10138
|
+
<a href="#dependencies-in-v228" class="md-nav__link">
|
|
10097
10139
|
<span class="md-ellipsis">
|
|
10098
|
-
Dependencies
|
|
10140
|
+
Dependencies in v2.2.8
|
|
10099
10141
|
</span>
|
|
10100
10142
|
</a>
|
|
10101
10143
|
|
|
10102
10144
|
</li>
|
|
10103
10145
|
|
|
10104
10146
|
<li class="md-nav__item">
|
|
10105
|
-
<a href="#
|
|
10147
|
+
<a href="#documentation-in-v228" class="md-nav__link">
|
|
10106
10148
|
<span class="md-ellipsis">
|
|
10107
|
-
Documentation
|
|
10149
|
+
Documentation in v2.2.8
|
|
10108
10150
|
</span>
|
|
10109
10151
|
</a>
|
|
10110
10152
|
|
|
10111
10153
|
</li>
|
|
10112
10154
|
|
|
10113
10155
|
<li class="md-nav__item">
|
|
10114
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10156
|
+
<a href="#housekeeping-in-v228" class="md-nav__link">
|
|
10115
10157
|
<span class="md-ellipsis">
|
|
10116
|
-
Housekeeping
|
|
10158
|
+
Housekeeping in v2.2.8
|
|
10117
10159
|
</span>
|
|
10118
10160
|
</a>
|
|
10119
10161
|
|
|
@@ -10135,36 +10177,36 @@
|
|
|
10135
10177
|
<ul class="md-nav__list">
|
|
10136
10178
|
|
|
10137
10179
|
<li class="md-nav__item">
|
|
10138
|
-
<a href="#
|
|
10180
|
+
<a href="#security-in-v227" class="md-nav__link">
|
|
10139
10181
|
<span class="md-ellipsis">
|
|
10140
|
-
Security
|
|
10182
|
+
Security in v2.2.7
|
|
10141
10183
|
</span>
|
|
10142
10184
|
</a>
|
|
10143
10185
|
|
|
10144
10186
|
</li>
|
|
10145
10187
|
|
|
10146
10188
|
<li class="md-nav__item">
|
|
10147
|
-
<a href="#
|
|
10189
|
+
<a href="#fixed-in-v227" class="md-nav__link">
|
|
10148
10190
|
<span class="md-ellipsis">
|
|
10149
|
-
Fixed
|
|
10191
|
+
Fixed in v2.2.7
|
|
10150
10192
|
</span>
|
|
10151
10193
|
</a>
|
|
10152
10194
|
|
|
10153
10195
|
</li>
|
|
10154
10196
|
|
|
10155
10197
|
<li class="md-nav__item">
|
|
10156
|
-
<a href="#
|
|
10198
|
+
<a href="#dependencies-in-v227" class="md-nav__link">
|
|
10157
10199
|
<span class="md-ellipsis">
|
|
10158
|
-
Dependencies
|
|
10200
|
+
Dependencies in v2.2.7
|
|
10159
10201
|
</span>
|
|
10160
10202
|
</a>
|
|
10161
10203
|
|
|
10162
10204
|
</li>
|
|
10163
10205
|
|
|
10164
10206
|
<li class="md-nav__item">
|
|
10165
|
-
<a href="#
|
|
10207
|
+
<a href="#housekeeping-in-v227" class="md-nav__link">
|
|
10166
10208
|
<span class="md-ellipsis">
|
|
10167
|
-
Housekeeping
|
|
10209
|
+
Housekeeping in v2.2.7
|
|
10168
10210
|
</span>
|
|
10169
10211
|
</a>
|
|
10170
10212
|
|
|
@@ -10186,54 +10228,54 @@
|
|
|
10186
10228
|
<ul class="md-nav__list">
|
|
10187
10229
|
|
|
10188
10230
|
<li class="md-nav__item">
|
|
10189
|
-
<a href="#
|
|
10231
|
+
<a href="#security-in-v226" class="md-nav__link">
|
|
10190
10232
|
<span class="md-ellipsis">
|
|
10191
|
-
Security
|
|
10233
|
+
Security in v2.2.6
|
|
10192
10234
|
</span>
|
|
10193
10235
|
</a>
|
|
10194
10236
|
|
|
10195
10237
|
</li>
|
|
10196
10238
|
|
|
10197
10239
|
<li class="md-nav__item">
|
|
10198
|
-
<a href="#
|
|
10240
|
+
<a href="#added-in-v226" class="md-nav__link">
|
|
10199
10241
|
<span class="md-ellipsis">
|
|
10200
|
-
Added
|
|
10242
|
+
Added in v2.2.6
|
|
10201
10243
|
</span>
|
|
10202
10244
|
</a>
|
|
10203
10245
|
|
|
10204
10246
|
</li>
|
|
10205
10247
|
|
|
10206
10248
|
<li class="md-nav__item">
|
|
10207
|
-
<a href="#
|
|
10249
|
+
<a href="#changed-in-v226" class="md-nav__link">
|
|
10208
10250
|
<span class="md-ellipsis">
|
|
10209
|
-
Changed
|
|
10251
|
+
Changed in v2.2.6
|
|
10210
10252
|
</span>
|
|
10211
10253
|
</a>
|
|
10212
10254
|
|
|
10213
10255
|
</li>
|
|
10214
10256
|
|
|
10215
10257
|
<li class="md-nav__item">
|
|
10216
|
-
<a href="#
|
|
10258
|
+
<a href="#fixed-in-v226" class="md-nav__link">
|
|
10217
10259
|
<span class="md-ellipsis">
|
|
10218
|
-
Fixed
|
|
10260
|
+
Fixed in v2.2.6
|
|
10219
10261
|
</span>
|
|
10220
10262
|
</a>
|
|
10221
10263
|
|
|
10222
10264
|
</li>
|
|
10223
10265
|
|
|
10224
10266
|
<li class="md-nav__item">
|
|
10225
|
-
<a href="#
|
|
10267
|
+
<a href="#documentation-in-v226" class="md-nav__link">
|
|
10226
10268
|
<span class="md-ellipsis">
|
|
10227
|
-
Documentation
|
|
10269
|
+
Documentation in v2.2.6
|
|
10228
10270
|
</span>
|
|
10229
10271
|
</a>
|
|
10230
10272
|
|
|
10231
10273
|
</li>
|
|
10232
10274
|
|
|
10233
10275
|
<li class="md-nav__item">
|
|
10234
|
-
<a href="#
|
|
10276
|
+
<a href="#housekeeping-in-v226" class="md-nav__link">
|
|
10235
10277
|
<span class="md-ellipsis">
|
|
10236
|
-
Housekeeping
|
|
10278
|
+
Housekeeping in v2.2.6
|
|
10237
10279
|
</span>
|
|
10238
10280
|
</a>
|
|
10239
10281
|
|
|
@@ -10255,54 +10297,54 @@
|
|
|
10255
10297
|
<ul class="md-nav__list">
|
|
10256
10298
|
|
|
10257
10299
|
<li class="md-nav__item">
|
|
10258
|
-
<a href="#
|
|
10300
|
+
<a href="#security-in-v225" class="md-nav__link">
|
|
10259
10301
|
<span class="md-ellipsis">
|
|
10260
|
-
Security
|
|
10302
|
+
Security in v2.2.5
|
|
10261
10303
|
</span>
|
|
10262
10304
|
</a>
|
|
10263
10305
|
|
|
10264
10306
|
</li>
|
|
10265
10307
|
|
|
10266
10308
|
<li class="md-nav__item">
|
|
10267
|
-
<a href="#
|
|
10309
|
+
<a href="#added-in-v225" class="md-nav__link">
|
|
10268
10310
|
<span class="md-ellipsis">
|
|
10269
|
-
Added
|
|
10311
|
+
Added in v2.2.5
|
|
10270
10312
|
</span>
|
|
10271
10313
|
</a>
|
|
10272
10314
|
|
|
10273
10315
|
</li>
|
|
10274
10316
|
|
|
10275
10317
|
<li class="md-nav__item">
|
|
10276
|
-
<a href="#removed" class="md-nav__link">
|
|
10318
|
+
<a href="#removed-in-v225" class="md-nav__link">
|
|
10277
10319
|
<span class="md-ellipsis">
|
|
10278
|
-
Removed
|
|
10320
|
+
Removed in v2.2.5
|
|
10279
10321
|
</span>
|
|
10280
10322
|
</a>
|
|
10281
10323
|
|
|
10282
10324
|
</li>
|
|
10283
10325
|
|
|
10284
10326
|
<li class="md-nav__item">
|
|
10285
|
-
<a href="#
|
|
10327
|
+
<a href="#fixed-in-v225" class="md-nav__link">
|
|
10286
10328
|
<span class="md-ellipsis">
|
|
10287
|
-
Fixed
|
|
10329
|
+
Fixed in v2.2.5
|
|
10288
10330
|
</span>
|
|
10289
10331
|
</a>
|
|
10290
10332
|
|
|
10291
10333
|
</li>
|
|
10292
10334
|
|
|
10293
10335
|
<li class="md-nav__item">
|
|
10294
|
-
<a href="#
|
|
10336
|
+
<a href="#documentation-in-v225" class="md-nav__link">
|
|
10295
10337
|
<span class="md-ellipsis">
|
|
10296
|
-
Documentation
|
|
10338
|
+
Documentation in v2.2.5
|
|
10297
10339
|
</span>
|
|
10298
10340
|
</a>
|
|
10299
10341
|
|
|
10300
10342
|
</li>
|
|
10301
10343
|
|
|
10302
10344
|
<li class="md-nav__item">
|
|
10303
|
-
<a href="#
|
|
10345
|
+
<a href="#housekeeping-in-v225" class="md-nav__link">
|
|
10304
10346
|
<span class="md-ellipsis">
|
|
10305
|
-
Housekeeping
|
|
10347
|
+
Housekeeping in v2.2.5
|
|
10306
10348
|
</span>
|
|
10307
10349
|
</a>
|
|
10308
10350
|
|
|
@@ -10324,45 +10366,45 @@
|
|
|
10324
10366
|
<ul class="md-nav__list">
|
|
10325
10367
|
|
|
10326
10368
|
<li class="md-nav__item">
|
|
10327
|
-
<a href="#
|
|
10369
|
+
<a href="#security-in-v224" class="md-nav__link">
|
|
10328
10370
|
<span class="md-ellipsis">
|
|
10329
|
-
Security
|
|
10371
|
+
Security in v2.2.4
|
|
10330
10372
|
</span>
|
|
10331
10373
|
</a>
|
|
10332
10374
|
|
|
10333
10375
|
</li>
|
|
10334
10376
|
|
|
10335
10377
|
<li class="md-nav__item">
|
|
10336
|
-
<a href="#
|
|
10378
|
+
<a href="#added-in-v224" class="md-nav__link">
|
|
10337
10379
|
<span class="md-ellipsis">
|
|
10338
|
-
Added
|
|
10380
|
+
Added in v2.2.4
|
|
10339
10381
|
</span>
|
|
10340
10382
|
</a>
|
|
10341
10383
|
|
|
10342
10384
|
</li>
|
|
10343
10385
|
|
|
10344
10386
|
<li class="md-nav__item">
|
|
10345
|
-
<a href="#
|
|
10387
|
+
<a href="#fixed-in-v224" class="md-nav__link">
|
|
10346
10388
|
<span class="md-ellipsis">
|
|
10347
|
-
Fixed
|
|
10389
|
+
Fixed in v2.2.4
|
|
10348
10390
|
</span>
|
|
10349
10391
|
</a>
|
|
10350
10392
|
|
|
10351
10393
|
</li>
|
|
10352
10394
|
|
|
10353
10395
|
<li class="md-nav__item">
|
|
10354
|
-
<a href="#
|
|
10396
|
+
<a href="#documentation-in-v224" class="md-nav__link">
|
|
10355
10397
|
<span class="md-ellipsis">
|
|
10356
|
-
Documentation
|
|
10398
|
+
Documentation in v2.2.4
|
|
10357
10399
|
</span>
|
|
10358
10400
|
</a>
|
|
10359
10401
|
|
|
10360
10402
|
</li>
|
|
10361
10403
|
|
|
10362
10404
|
<li class="md-nav__item">
|
|
10363
|
-
<a href="#
|
|
10405
|
+
<a href="#housekeeping-in-v224" class="md-nav__link">
|
|
10364
10406
|
<span class="md-ellipsis">
|
|
10365
|
-
Housekeeping
|
|
10407
|
+
Housekeeping in v2.2.4
|
|
10366
10408
|
</span>
|
|
10367
10409
|
</a>
|
|
10368
10410
|
|
|
@@ -10384,54 +10426,54 @@
|
|
|
10384
10426
|
<ul class="md-nav__list">
|
|
10385
10427
|
|
|
10386
10428
|
<li class="md-nav__item">
|
|
10387
|
-
<a href="#
|
|
10429
|
+
<a href="#security-in-v223" class="md-nav__link">
|
|
10388
10430
|
<span class="md-ellipsis">
|
|
10389
|
-
Security
|
|
10431
|
+
Security in v2.2.3
|
|
10390
10432
|
</span>
|
|
10391
10433
|
</a>
|
|
10392
10434
|
|
|
10393
10435
|
</li>
|
|
10394
10436
|
|
|
10395
10437
|
<li class="md-nav__item">
|
|
10396
|
-
<a href="#
|
|
10438
|
+
<a href="#added-in-v223" class="md-nav__link">
|
|
10397
10439
|
<span class="md-ellipsis">
|
|
10398
|
-
Added
|
|
10440
|
+
Added in v2.2.3
|
|
10399
10441
|
</span>
|
|
10400
10442
|
</a>
|
|
10401
10443
|
|
|
10402
10444
|
</li>
|
|
10403
10445
|
|
|
10404
10446
|
<li class="md-nav__item">
|
|
10405
|
-
<a href="#
|
|
10447
|
+
<a href="#changed-in-v223" class="md-nav__link">
|
|
10406
10448
|
<span class="md-ellipsis">
|
|
10407
|
-
Changed
|
|
10449
|
+
Changed in v2.2.3
|
|
10408
10450
|
</span>
|
|
10409
10451
|
</a>
|
|
10410
10452
|
|
|
10411
10453
|
</li>
|
|
10412
10454
|
|
|
10413
10455
|
<li class="md-nav__item">
|
|
10414
|
-
<a href="#
|
|
10456
|
+
<a href="#fixed-in-v223" class="md-nav__link">
|
|
10415
10457
|
<span class="md-ellipsis">
|
|
10416
|
-
Fixed
|
|
10458
|
+
Fixed in v2.2.3
|
|
10417
10459
|
</span>
|
|
10418
10460
|
</a>
|
|
10419
10461
|
|
|
10420
10462
|
</li>
|
|
10421
10463
|
|
|
10422
10464
|
<li class="md-nav__item">
|
|
10423
|
-
<a href="#
|
|
10465
|
+
<a href="#documentation-in-v223" class="md-nav__link">
|
|
10424
10466
|
<span class="md-ellipsis">
|
|
10425
|
-
Documentation
|
|
10467
|
+
Documentation in v2.2.3
|
|
10426
10468
|
</span>
|
|
10427
10469
|
</a>
|
|
10428
10470
|
|
|
10429
10471
|
</li>
|
|
10430
10472
|
|
|
10431
10473
|
<li class="md-nav__item">
|
|
10432
|
-
<a href="#
|
|
10474
|
+
<a href="#housekeeping-in-v223" class="md-nav__link">
|
|
10433
10475
|
<span class="md-ellipsis">
|
|
10434
|
-
Housekeeping
|
|
10476
|
+
Housekeeping in v2.2.3
|
|
10435
10477
|
</span>
|
|
10436
10478
|
</a>
|
|
10437
10479
|
|
|
@@ -10453,54 +10495,54 @@
|
|
|
10453
10495
|
<ul class="md-nav__list">
|
|
10454
10496
|
|
|
10455
10497
|
<li class="md-nav__item">
|
|
10456
|
-
<a href="#
|
|
10498
|
+
<a href="#security-in-v222" class="md-nav__link">
|
|
10457
10499
|
<span class="md-ellipsis">
|
|
10458
|
-
Security
|
|
10500
|
+
Security in v2.2.2
|
|
10459
10501
|
</span>
|
|
10460
10502
|
</a>
|
|
10461
10503
|
|
|
10462
10504
|
</li>
|
|
10463
10505
|
|
|
10464
10506
|
<li class="md-nav__item">
|
|
10465
|
-
<a href="#
|
|
10507
|
+
<a href="#added-in-v222" class="md-nav__link">
|
|
10466
10508
|
<span class="md-ellipsis">
|
|
10467
|
-
Added
|
|
10509
|
+
Added in v2.2.2
|
|
10468
10510
|
</span>
|
|
10469
10511
|
</a>
|
|
10470
10512
|
|
|
10471
10513
|
</li>
|
|
10472
10514
|
|
|
10473
10515
|
<li class="md-nav__item">
|
|
10474
|
-
<a href="#
|
|
10516
|
+
<a href="#changed-in-v222" class="md-nav__link">
|
|
10475
10517
|
<span class="md-ellipsis">
|
|
10476
|
-
Changed
|
|
10518
|
+
Changed in v2.2.2
|
|
10477
10519
|
</span>
|
|
10478
10520
|
</a>
|
|
10479
10521
|
|
|
10480
10522
|
</li>
|
|
10481
10523
|
|
|
10482
10524
|
<li class="md-nav__item">
|
|
10483
|
-
<a href="#
|
|
10525
|
+
<a href="#fixed-in-v222" class="md-nav__link">
|
|
10484
10526
|
<span class="md-ellipsis">
|
|
10485
|
-
Fixed
|
|
10527
|
+
Fixed in v2.2.2
|
|
10486
10528
|
</span>
|
|
10487
10529
|
</a>
|
|
10488
10530
|
|
|
10489
10531
|
</li>
|
|
10490
10532
|
|
|
10491
10533
|
<li class="md-nav__item">
|
|
10492
|
-
<a href="#
|
|
10534
|
+
<a href="#documentation-in-v222" class="md-nav__link">
|
|
10493
10535
|
<span class="md-ellipsis">
|
|
10494
|
-
Documentation
|
|
10536
|
+
Documentation in v2.2.2
|
|
10495
10537
|
</span>
|
|
10496
10538
|
</a>
|
|
10497
10539
|
|
|
10498
10540
|
</li>
|
|
10499
10541
|
|
|
10500
10542
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
10543
|
+
<a href="#housekeeping-in-v222" class="md-nav__link">
|
|
10502
10544
|
<span class="md-ellipsis">
|
|
10503
|
-
Housekeeping
|
|
10545
|
+
Housekeeping in v2.2.2
|
|
10504
10546
|
</span>
|
|
10505
10547
|
</a>
|
|
10506
10548
|
|
|
@@ -10522,63 +10564,63 @@
|
|
|
10522
10564
|
<ul class="md-nav__list">
|
|
10523
10565
|
|
|
10524
10566
|
<li class="md-nav__item">
|
|
10525
|
-
<a href="#
|
|
10567
|
+
<a href="#security-in-v221" class="md-nav__link">
|
|
10526
10568
|
<span class="md-ellipsis">
|
|
10527
|
-
Security
|
|
10569
|
+
Security in v2.2.1
|
|
10528
10570
|
</span>
|
|
10529
10571
|
</a>
|
|
10530
10572
|
|
|
10531
10573
|
</li>
|
|
10532
10574
|
|
|
10533
10575
|
<li class="md-nav__item">
|
|
10534
|
-
<a href="#
|
|
10576
|
+
<a href="#added-in-v221" class="md-nav__link">
|
|
10535
10577
|
<span class="md-ellipsis">
|
|
10536
|
-
Added
|
|
10578
|
+
Added in v2.2.1
|
|
10537
10579
|
</span>
|
|
10538
10580
|
</a>
|
|
10539
10581
|
|
|
10540
10582
|
</li>
|
|
10541
10583
|
|
|
10542
10584
|
<li class="md-nav__item">
|
|
10543
|
-
<a href="#
|
|
10585
|
+
<a href="#changed-in-v221" class="md-nav__link">
|
|
10544
10586
|
<span class="md-ellipsis">
|
|
10545
|
-
Changed
|
|
10587
|
+
Changed in v2.2.1
|
|
10546
10588
|
</span>
|
|
10547
10589
|
</a>
|
|
10548
10590
|
|
|
10549
10591
|
</li>
|
|
10550
10592
|
|
|
10551
10593
|
<li class="md-nav__item">
|
|
10552
|
-
<a href="#
|
|
10594
|
+
<a href="#fixed-in-v221" class="md-nav__link">
|
|
10553
10595
|
<span class="md-ellipsis">
|
|
10554
|
-
Fixed
|
|
10596
|
+
Fixed in v2.2.1
|
|
10555
10597
|
</span>
|
|
10556
10598
|
</a>
|
|
10557
10599
|
|
|
10558
10600
|
</li>
|
|
10559
10601
|
|
|
10560
10602
|
<li class="md-nav__item">
|
|
10561
|
-
<a href="#
|
|
10603
|
+
<a href="#dependencies-in-v221" class="md-nav__link">
|
|
10562
10604
|
<span class="md-ellipsis">
|
|
10563
|
-
Dependencies
|
|
10605
|
+
Dependencies in v2.2.1
|
|
10564
10606
|
</span>
|
|
10565
10607
|
</a>
|
|
10566
10608
|
|
|
10567
10609
|
</li>
|
|
10568
10610
|
|
|
10569
10611
|
<li class="md-nav__item">
|
|
10570
|
-
<a href="#
|
|
10612
|
+
<a href="#documentation-in-v221" class="md-nav__link">
|
|
10571
10613
|
<span class="md-ellipsis">
|
|
10572
|
-
Documentation
|
|
10614
|
+
Documentation in v2.2.1
|
|
10573
10615
|
</span>
|
|
10574
10616
|
</a>
|
|
10575
10617
|
|
|
10576
10618
|
</li>
|
|
10577
10619
|
|
|
10578
10620
|
<li class="md-nav__item">
|
|
10579
|
-
<a href="#
|
|
10621
|
+
<a href="#housekeeping-in-v221" class="md-nav__link">
|
|
10580
10622
|
<span class="md-ellipsis">
|
|
10581
|
-
Housekeeping
|
|
10623
|
+
Housekeeping in v2.2.1
|
|
10582
10624
|
</span>
|
|
10583
10625
|
</a>
|
|
10584
10626
|
|
|
@@ -10600,45 +10642,45 @@
|
|
|
10600
10642
|
<ul class="md-nav__list">
|
|
10601
10643
|
|
|
10602
10644
|
<li class="md-nav__item">
|
|
10603
|
-
<a href="#
|
|
10645
|
+
<a href="#added-in-v220" class="md-nav__link">
|
|
10604
10646
|
<span class="md-ellipsis">
|
|
10605
|
-
Added
|
|
10647
|
+
Added in v2.2.0
|
|
10606
10648
|
</span>
|
|
10607
10649
|
</a>
|
|
10608
10650
|
|
|
10609
10651
|
</li>
|
|
10610
10652
|
|
|
10611
10653
|
<li class="md-nav__item">
|
|
10612
|
-
<a href="#
|
|
10654
|
+
<a href="#changed-in-v220" class="md-nav__link">
|
|
10613
10655
|
<span class="md-ellipsis">
|
|
10614
|
-
Changed
|
|
10656
|
+
Changed in v2.2.0
|
|
10615
10657
|
</span>
|
|
10616
10658
|
</a>
|
|
10617
10659
|
|
|
10618
10660
|
</li>
|
|
10619
10661
|
|
|
10620
10662
|
<li class="md-nav__item">
|
|
10621
|
-
<a href="#
|
|
10663
|
+
<a href="#fixed-in-v220" class="md-nav__link">
|
|
10622
10664
|
<span class="md-ellipsis">
|
|
10623
|
-
Fixed
|
|
10665
|
+
Fixed in v2.2.0
|
|
10624
10666
|
</span>
|
|
10625
10667
|
</a>
|
|
10626
10668
|
|
|
10627
10669
|
</li>
|
|
10628
10670
|
|
|
10629
10671
|
<li class="md-nav__item">
|
|
10630
|
-
<a href="#
|
|
10672
|
+
<a href="#dependencies-in-v220" class="md-nav__link">
|
|
10631
10673
|
<span class="md-ellipsis">
|
|
10632
|
-
Dependencies
|
|
10674
|
+
Dependencies in v2.2.0
|
|
10633
10675
|
</span>
|
|
10634
10676
|
</a>
|
|
10635
10677
|
|
|
10636
10678
|
</li>
|
|
10637
10679
|
|
|
10638
10680
|
<li class="md-nav__item">
|
|
10639
|
-
<a href="#
|
|
10681
|
+
<a href="#housekeeping-in-v220" class="md-nav__link">
|
|
10640
10682
|
<span class="md-ellipsis">
|
|
10641
|
-
Housekeeping
|
|
10683
|
+
Housekeeping in v2.2.0
|
|
10642
10684
|
</span>
|
|
10643
10685
|
</a>
|
|
10644
10686
|
|
|
@@ -10660,72 +10702,72 @@
|
|
|
10660
10702
|
<ul class="md-nav__list">
|
|
10661
10703
|
|
|
10662
10704
|
<li class="md-nav__item">
|
|
10663
|
-
<a href="#
|
|
10705
|
+
<a href="#added-in-v220-beta1" class="md-nav__link">
|
|
10664
10706
|
<span class="md-ellipsis">
|
|
10665
|
-
Added
|
|
10707
|
+
Added in v2.2.0-beta.1
|
|
10666
10708
|
</span>
|
|
10667
10709
|
</a>
|
|
10668
10710
|
|
|
10669
10711
|
</li>
|
|
10670
10712
|
|
|
10671
10713
|
<li class="md-nav__item">
|
|
10672
|
-
<a href="#
|
|
10714
|
+
<a href="#changed-in-v220-beta1" class="md-nav__link">
|
|
10673
10715
|
<span class="md-ellipsis">
|
|
10674
|
-
Changed
|
|
10716
|
+
Changed in v2.2.0-beta.1
|
|
10675
10717
|
</span>
|
|
10676
10718
|
</a>
|
|
10677
10719
|
|
|
10678
10720
|
</li>
|
|
10679
10721
|
|
|
10680
10722
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#deprecated" class="md-nav__link">
|
|
10723
|
+
<a href="#deprecated-in-v220-beta1" class="md-nav__link">
|
|
10682
10724
|
<span class="md-ellipsis">
|
|
10683
|
-
Deprecated
|
|
10725
|
+
Deprecated in v2.2.0-beta.1
|
|
10684
10726
|
</span>
|
|
10685
10727
|
</a>
|
|
10686
10728
|
|
|
10687
10729
|
</li>
|
|
10688
10730
|
|
|
10689
10731
|
<li class="md-nav__item">
|
|
10690
|
-
<a href="#
|
|
10732
|
+
<a href="#removed-in-v220-beta1" class="md-nav__link">
|
|
10691
10733
|
<span class="md-ellipsis">
|
|
10692
|
-
Removed
|
|
10734
|
+
Removed in v2.2.0-beta.1
|
|
10693
10735
|
</span>
|
|
10694
10736
|
</a>
|
|
10695
10737
|
|
|
10696
10738
|
</li>
|
|
10697
10739
|
|
|
10698
10740
|
<li class="md-nav__item">
|
|
10699
|
-
<a href="#
|
|
10741
|
+
<a href="#fixed-in-v220-beta1" class="md-nav__link">
|
|
10700
10742
|
<span class="md-ellipsis">
|
|
10701
|
-
Fixed
|
|
10743
|
+
Fixed in v2.2.0-beta.1
|
|
10702
10744
|
</span>
|
|
10703
10745
|
</a>
|
|
10704
10746
|
|
|
10705
10747
|
</li>
|
|
10706
10748
|
|
|
10707
10749
|
<li class="md-nav__item">
|
|
10708
|
-
<a href="#
|
|
10750
|
+
<a href="#dependencies-in-v220-beta1" class="md-nav__link">
|
|
10709
10751
|
<span class="md-ellipsis">
|
|
10710
|
-
Dependencies
|
|
10752
|
+
Dependencies in v2.2.0-beta.1
|
|
10711
10753
|
</span>
|
|
10712
10754
|
</a>
|
|
10713
10755
|
|
|
10714
10756
|
</li>
|
|
10715
10757
|
|
|
10716
10758
|
<li class="md-nav__item">
|
|
10717
|
-
<a href="#
|
|
10759
|
+
<a href="#documentation-in-v220-beta1" class="md-nav__link">
|
|
10718
10760
|
<span class="md-ellipsis">
|
|
10719
|
-
Documentation
|
|
10761
|
+
Documentation in v2.2.0-beta.1
|
|
10720
10762
|
</span>
|
|
10721
10763
|
</a>
|
|
10722
10764
|
|
|
10723
10765
|
</li>
|
|
10724
10766
|
|
|
10725
10767
|
<li class="md-nav__item">
|
|
10726
|
-
<a href="#
|
|
10768
|
+
<a href="#housekeeping-in-v220-beta1" class="md-nav__link">
|
|
10727
10769
|
<span class="md-ellipsis">
|
|
10728
|
-
Housekeeping
|
|
10770
|
+
Housekeeping in v2.2.0-beta.1
|
|
10729
10771
|
</span>
|
|
10730
10772
|
</a>
|
|
10731
10773
|
|
|
@@ -10754,8 +10796,6 @@
|
|
|
10754
10796
|
|
|
10755
10797
|
|
|
10756
10798
|
|
|
10757
|
-
<!-- markdownlint-disable MD024 -->
|
|
10758
|
-
|
|
10759
10799
|
<h1 id="nautobot-v22">Nautobot v2.2<a class="headerlink" href="#nautobot-v22" title="Permanent link">¶</a></h1>
|
|
10760
10800
|
<p>This document describes all new features and changes in Nautobot 2.2.</p>
|
|
10761
10801
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
@@ -10791,16 +10831,15 @@
|
|
|
10791
10831
|
<p><code>Installed Plugins</code> view has been renamed to <code>Installed Apps</code>. <code>Plugin</code> terminologies in <code>Installed Plugins</code> (now <code>Installed Apps</code>) view and dependent views have been changed to <code>App</code> throughout. <code>Plugin</code> references in documentation (excluding old release-notes) have been replaced by <code>App</code>. <code>Plugins</code> navigation menu has been renamed to <code>Apps</code>.</p>
|
|
10792
10832
|
<h4 id="standardization-of-max_length-on-all-charfields-2906">Standardization of <code>max_length</code> on all Charfields (<a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a>)<a class="headerlink" href="#standardization-of-max_length-on-all-charfields-2906" title="Permanent link">¶</a></h4>
|
|
10793
10833
|
<p>Model CharFields' <code>max_length</code> attributes have been standardized globally to have at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</p>
|
|
10794
|
-
<!-- towncrier release notes start -->
|
|
10795
10834
|
<h2 id="v229-2024-08-05">v2.2.9 (2024-08-05)<a class="headerlink" href="#v229-2024-08-05" title="Permanent link">¶</a></h2>
|
|
10796
|
-
<h3 id="
|
|
10835
|
+
<h3 id="added-in-v229">Added in v2.2.9<a class="headerlink" href="#added-in-v229" title="Permanent link">¶</a></h3>
|
|
10797
10836
|
<ul>
|
|
10798
10837
|
<li><a href="https://github.com/nautobot/nautobot/issues/5965">#5965</a> - Added missing controller references for DeviceRedundancyGroup in the UI.</li>
|
|
10799
10838
|
<li><a href="https://github.com/nautobot/nautobot/issues/5980">#5980</a> - Added caching to <code>FeatureQuery().get_choices()</code> and <code>FeatureQuery().list_subclasses()</code>.</li>
|
|
10800
10839
|
<li><a href="https://github.com/nautobot/nautobot/issues/6029">#6029</a> - Added environment variable support for setting <code>CELERY_WORKER_PREFETCH_MULTIPLIER</code>.</li>
|
|
10801
10840
|
<li><a href="https://github.com/nautobot/nautobot/issues/6030">#6030</a> - Added links from the Job list and detail views to quickly filter the list of Job Results to the corresponding Job.</li>
|
|
10802
10841
|
</ul>
|
|
10803
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10842
|
+
<h3 id="fixed-in-v229">Fixed in v2.2.9<a class="headerlink" href="#fixed-in-v229" title="Permanent link">¶</a></h3>
|
|
10804
10843
|
<ul>
|
|
10805
10844
|
<li><a href="https://github.com/nautobot/nautobot/issues/5775">#5775</a> - Reintroduced <code>Add IP Address</code> button to VirtualMachine Interface table.</li>
|
|
10806
10845
|
<li><a href="https://github.com/nautobot/nautobot/issues/5785">#5785</a> - Fixed Scheduled Jobs not respecting Job Soft / Hard Time Limit.</li>
|
|
@@ -10815,11 +10854,11 @@
|
|
|
10815
10854
|
<li><a href="https://github.com/nautobot/nautobot/issues/5992">#5992</a> - Added signal to clear relevant content-type caches after running migrations.</li>
|
|
10816
10855
|
<li><a href="https://github.com/nautobot/nautobot/issues/6022">#6022</a> - Fixed incorrect labels for derived filters (<code>tenant__n</code>, <code>tenant__isw</code>, etc.) when the base filter (<code>tenant</code>, etc.) has a custom label.</li>
|
|
10817
10856
|
</ul>
|
|
10818
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
10857
|
+
<h3 id="dependencies-in-v229">Dependencies in v2.2.9<a class="headerlink" href="#dependencies-in-v229" title="Permanent link">¶</a></h3>
|
|
10819
10858
|
<ul>
|
|
10820
10859
|
<li><a href="https://github.com/nautobot/nautobot/issues/6010">#6010</a> - Pinned <code>django-storages</code> temporarily to 1.14.3 due to an <a href="https://github.com/revsys/django-health-check/issues/434">incompatibility</a> between <code>django-health-check</code> and version 1.14.4 of <code>django-storages</code>.</li>
|
|
10821
10860
|
</ul>
|
|
10822
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10861
|
+
<h3 id="documentation-in-v229">Documentation in v2.2.9<a class="headerlink" href="#documentation-in-v229" title="Permanent link">¶</a></h3>
|
|
10823
10862
|
<ul>
|
|
10824
10863
|
<li><a href="https://github.com/nautobot/nautobot/issues/5949">#5949</a> - Fixed NewBranch job code in documentation.</li>
|
|
10825
10864
|
<li><a href="https://github.com/nautobot/nautobot/issues/5958">#5958</a> - Added an example job that uses a custom template to render the job form.</li>
|
|
@@ -10828,37 +10867,37 @@
|
|
|
10828
10867
|
<li><a href="https://github.com/nautobot/nautobot/issues/6024">#6024</a> - Added documentation for the <code>nautobot-server validate_models</code> command.</li>
|
|
10829
10868
|
</ul>
|
|
10830
10869
|
<h2 id="v228-2024-07-22">v2.2.8 (2024-07-22)<a class="headerlink" href="#v228-2024-07-22" title="Permanent link">¶</a></h2>
|
|
10831
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10870
|
+
<h3 id="security-in-v228">Security in v2.2.8<a class="headerlink" href="#security-in-v228" title="Permanent link">¶</a></h3>
|
|
10832
10871
|
<ul>
|
|
10833
10872
|
<li><a href="https://github.com/nautobot/nautobot/issues/5911">#5911</a> - Updated <code>zipp</code> to <code>3.19.1</code> to address <code>CVE-2024-5569</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10834
10873
|
</ul>
|
|
10835
|
-
<h3 id="
|
|
10874
|
+
<h3 id="fixed-in-v228">Fixed in v2.2.8<a class="headerlink" href="#fixed-in-v228" title="Permanent link">¶</a></h3>
|
|
10836
10875
|
<ul>
|
|
10837
10876
|
<li><a href="https://github.com/nautobot/nautobot/issues/5569">#5569</a> - Fixed relationship required to ignore objects that do not match the related filter.</li>
|
|
10838
10877
|
<li><a href="https://github.com/nautobot/nautobot/issues/5613">#5613</a> - Fixed intermittent failure in integration test for dynamic groups.</li>
|
|
10839
10878
|
<li><a href="https://github.com/nautobot/nautobot/issues/5906">#5906</a> - Added support for filtering in GraphQL of objects identified by a many-to-many relation (<code>Location.prefixes</code>, <code>Prefix.locations</code>, etc.)</li>
|
|
10840
10879
|
<li><a href="https://github.com/nautobot/nautobot/issues/5935">#5935</a> - Fixed issue in which a save() could be called unnecessarily on child devices.</li>
|
|
10841
10880
|
</ul>
|
|
10842
|
-
<h3 id="
|
|
10881
|
+
<h3 id="dependencies-in-v228">Dependencies in v2.2.8<a class="headerlink" href="#dependencies-in-v228" title="Permanent link">¶</a></h3>
|
|
10843
10882
|
<ul>
|
|
10844
10883
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated dependency <code>social-auth-app-django</code> to <code>~5.4.2</code>.</li>
|
|
10845
10884
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated optional dependency <code>django-storages</code> to <code>~1.14.4</code>.</li>
|
|
10846
10885
|
</ul>
|
|
10847
|
-
<h3 id="
|
|
10886
|
+
<h3 id="documentation-in-v228">Documentation in v2.2.8<a class="headerlink" href="#documentation-in-v228" title="Permanent link">¶</a></h3>
|
|
10848
10887
|
<ul>
|
|
10849
10888
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.29</code>.</li>
|
|
10850
10889
|
<li><a href="https://github.com/nautobot/nautobot/issues/5874">#5874</a> - Updated documentation regarding Nautobot on Ubuntu 24.04.</li>
|
|
10851
10890
|
</ul>
|
|
10852
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10891
|
+
<h3 id="housekeeping-in-v228">Housekeeping in v2.2.8<a class="headerlink" href="#housekeeping-in-v228" title="Permanent link">¶</a></h3>
|
|
10853
10892
|
<ul>
|
|
10854
10893
|
<li><a href="https://github.com/nautobot/nautobot/issues/5610">#5610</a> - Added integration test to do basic checking for static media failures caused by typos in template files.</li>
|
|
10855
10894
|
</ul>
|
|
10856
10895
|
<h2 id="v227-2024-07-08">v2.2.7 (2024-07-08)<a class="headerlink" href="#v227-2024-07-08" title="Permanent link">¶</a></h2>
|
|
10857
|
-
<h3 id="
|
|
10896
|
+
<h3 id="security-in-v227">Security in v2.2.7<a class="headerlink" href="#security-in-v227" title="Permanent link">¶</a></h3>
|
|
10858
10897
|
<ul>
|
|
10859
10898
|
<li><a href="https://github.com/nautobot/nautobot/issues/5891">#5891</a> - Updated <code>certifi</code> to <code>2024.7.4</code> to address <code>CVE-2024-39689</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10860
10899
|
</ul>
|
|
10861
|
-
<h3 id="
|
|
10900
|
+
<h3 id="fixed-in-v227">Fixed in v2.2.7<a class="headerlink" href="#fixed-in-v227" title="Permanent link">¶</a></h3>
|
|
10862
10901
|
<ul>
|
|
10863
10902
|
<li><a href="https://github.com/nautobot/nautobot/issues/4237">#4237</a> - Fixed display issue with multiple tags filter on dynamic groups. Multiple Tags are now correctly displayed with an AND.</li>
|
|
10864
10903
|
<li><a href="https://github.com/nautobot/nautobot/issues/5093">#5093</a> - Fixed blank page redirect when syncing or running a dry run on a GIT Repo with no workers available; now redirects to the GIT Repo Detail page with an error message.</li>
|
|
@@ -10866,33 +10905,33 @@
|
|
|
10866
10905
|
<li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed lack of API versioning of responses to a POST to <code>/api/ipam/prefixes/<id>/available-prefixes/</code> to allocate child prefixes of a prefix.</li>
|
|
10867
10906
|
<li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed incorrect OpenAPI schema for <code>/api/ipam/prefixes/<id>/available-prefixes/</code> and <code>/api/ipam/prefixes/<id>/available-ips/</code>.</li>
|
|
10868
10907
|
</ul>
|
|
10869
|
-
<h3 id="
|
|
10908
|
+
<h3 id="dependencies-in-v227">Dependencies in v2.2.7<a class="headerlink" href="#dependencies-in-v227" title="Permanent link">¶</a></h3>
|
|
10870
10909
|
<ul>
|
|
10871
10910
|
<li><a href="https://github.com/nautobot/nautobot/issues/5518">#5518</a> - Updated <code>drf-spectacular</code> to version <code>0.27.2</code>.</li>
|
|
10872
10911
|
<li><a href="https://github.com/nautobot/nautobot/pull/5896">#5896</a> - Pinned dev dependency <code>faker</code> to <code>>=0.7.0,<26.0.0</code> to work around breaking change in v26.0.0 (<a href="https://github.com/joke2k/faker/issues/2070">faker/#2070</a>).</li>
|
|
10873
10912
|
</ul>
|
|
10874
|
-
<h3 id="
|
|
10913
|
+
<h3 id="housekeeping-in-v227">Housekeeping in v2.2.7<a class="headerlink" href="#housekeeping-in-v227" title="Permanent link">¶</a></h3>
|
|
10875
10914
|
<ul>
|
|
10876
10915
|
<li><a href="https://github.com/nautobot/nautobot/issues/5847">#5847</a> - Updated the term plugin to app within the GitHub templates.</li>
|
|
10877
10916
|
<li><a href="https://github.com/nautobot/nautobot/issues/5858">#5858</a> - Enhanced the test runner to include a hash of applied database migrations as part of the factory dump filename, reducing the likelihood of using the wrong cached data for a given branch.</li>
|
|
10878
10917
|
</ul>
|
|
10879
10918
|
<h2 id="v226-2024-06-24">v2.2.6 (2024-06-24)<a class="headerlink" href="#v226-2024-06-24" title="Permanent link">¶</a></h2>
|
|
10880
|
-
<h3 id="
|
|
10919
|
+
<h3 id="security-in-v226">Security in v2.2.6<a class="headerlink" href="#security-in-v226" title="Permanent link">¶</a></h3>
|
|
10881
10920
|
<ul>
|
|
10882
10921
|
<li><a href="https://github.com/nautobot/nautobot/issues/5821">#5821</a> - Updated <code>urllib3</code> to 2.2.2 due to CVE-2024-37891. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10883
10922
|
</ul>
|
|
10884
|
-
<h3 id="
|
|
10923
|
+
<h3 id="added-in-v226">Added in v2.2.6<a class="headerlink" href="#added-in-v226" title="Permanent link">¶</a></h3>
|
|
10885
10924
|
<ul>
|
|
10886
10925
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added support for specifying a tag or a commit hash as the GitRepository <code>branch</code> value.</li>
|
|
10887
10926
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added an <code>enabled</code> flag to the JobButton class; disabled JobButtons will not appear in the UI.</li>
|
|
10888
10927
|
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Added <code>--print-hashes</code> option to <code>nautobot-server generate_test_data</code> command.</li>
|
|
10889
10928
|
<li><a href="https://github.com/nautobot/nautobot/issues/5807">#5807</a> - Added the ability to sort and filter the <code>IPAddress</code> list view by the <code>nat_inside</code> field.</li>
|
|
10890
10929
|
</ul>
|
|
10891
|
-
<h3 id="
|
|
10930
|
+
<h3 id="changed-in-v226">Changed in v2.2.6<a class="headerlink" href="#changed-in-v226" title="Permanent link">¶</a></h3>
|
|
10892
10931
|
<ul>
|
|
10893
10932
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Changed the behavior on removal of a previously-installed Job class to additionally auto-disable any JobButtons, JobHooks, and ScheduledJobs referencing this class.</li>
|
|
10894
10933
|
</ul>
|
|
10895
|
-
<h3 id="
|
|
10934
|
+
<h3 id="fixed-in-v226">Fixed in v2.2.6<a class="headerlink" href="#fixed-in-v226" title="Permanent link">¶</a></h3>
|
|
10896
10935
|
<ul>
|
|
10897
10936
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an issue where config-contexts and export-templates sourced from a Git repository might not be automatically deleted from Nautobot after removing them from the repository and resyncing it.</li>
|
|
10898
10937
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an exception that might be raised when performing a Git repository "dry-run" sync if certain types of diffs are present.</li>
|
|
@@ -10900,25 +10939,25 @@
|
|
|
10900
10939
|
<li><a href="https://github.com/nautobot/nautobot/issues/5809">#5809</a> - Fixed missing support for the GitRepository model in GraphQL.</li>
|
|
10901
10940
|
<li><a href="https://github.com/nautobot/nautobot/issues/5819">#5819</a> - Fixed inability to use bare (local-DNS) hostnames when specifying a GitRepository remote URL.</li>
|
|
10902
10941
|
</ul>
|
|
10903
|
-
<h3 id="
|
|
10942
|
+
<h3 id="documentation-in-v226">Documentation in v2.2.6<a class="headerlink" href="#documentation-in-v226" title="Permanent link">¶</a></h3>
|
|
10904
10943
|
<ul>
|
|
10905
10944
|
<li><a href="https://github.com/nautobot/nautobot/issues/5726">#5726</a> - Updated, cleaned up, and separated out the main landing page for Nautobot docs.</li>
|
|
10906
10945
|
<li><a href="https://github.com/nautobot/nautobot/issues/5752">#5752</a> - Corrected incorrect entry for <code>nautobot.utilities.ordering</code> in <code>v2-code-location-changes</code> table.</li>
|
|
10907
10946
|
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated <code>mkdocs-material</code> to 9.5.25.</li>
|
|
10908
10947
|
</ul>
|
|
10909
|
-
<h3 id="
|
|
10948
|
+
<h3 id="housekeeping-in-v226">Housekeeping in v2.2.6<a class="headerlink" href="#housekeeping-in-v226" title="Permanent link">¶</a></h3>
|
|
10910
10949
|
<ul>
|
|
10911
10950
|
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated development dependencies <code>requests</code> to <code>~2.32.2</code> and <code>watchdog</code> to <code>~4.0.1</code>.</li>
|
|
10912
10951
|
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Refactored <code>generate_test_data</code> implementation for improved debuggability.</li>
|
|
10913
10952
|
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Fixed a bug in <code>ControllerManagedDeviceGroupFactory</code> that could result in nondeterministic test data.</li>
|
|
10914
10953
|
</ul>
|
|
10915
10954
|
<h2 id="v225-2024-05-28">v2.2.5 (2024-05-28)<a class="headerlink" href="#v225-2024-05-28" title="Permanent link">¶</a></h2>
|
|
10916
|
-
<h3 id="
|
|
10955
|
+
<h3 id="security-in-v225">Security in v2.2.5<a class="headerlink" href="#security-in-v225" title="Permanent link">¶</a></h3>
|
|
10917
10956
|
<ul>
|
|
10918
10957
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated <code>requests</code> to <code>2.32.1</code> to address <a href="https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56">GHSA-9wx4-h78v-vm56</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
10919
10958
|
<li><a href="https://github.com/nautobot/nautobot/issues/5757">#5757</a> - Fixed missing member object permission enforcement (e.g., enforce Device permissions for a Dynamic Group containing Devices) when viewing Dynamic Group member objects in the UI or REST API (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a>).</li>
|
|
10920
10959
|
</ul>
|
|
10921
|
-
<h3 id="
|
|
10960
|
+
<h3 id="added-in-v225">Added in v2.2.5<a class="headerlink" href="#added-in-v225" title="Permanent link">¶</a></h3>
|
|
10922
10961
|
<ul>
|
|
10923
10962
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add VRFs" and "Remove VRFs" fields to <code>PrefixBulkEditForm</code>.</li>
|
|
10924
10963
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add Prefixes" and "Remove Prefixes" fields to <code>VRFBulkEditForm</code>.</li>
|
|
@@ -10926,11 +10965,11 @@
|
|
|
10926
10965
|
<li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Added a generic test case that asserts that all list views provide an appropriate FilterForm class.</li>
|
|
10927
10966
|
<li><a href="https://github.com/nautobot/nautobot/issues/5747">#5747</a> - Added "Circuit Terminations" navigation menu item.</li>
|
|
10928
10967
|
</ul>
|
|
10929
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
10968
|
+
<h3 id="removed-in-v225">Removed in v2.2.5<a class="headerlink" href="#removed-in-v225" title="Permanent link">¶</a></h3>
|
|
10930
10969
|
<ul>
|
|
10931
10970
|
<li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Removed deprecated <code>CustomFieldFilterForm</code> alias of <code>CustomFieldModelFilterFormMixin</code> as this would have caused confusion with the newly added <code>CustomFieldFilterForm</code> class providing filtering support for the Custom Fields list view.</li>
|
|
10932
10971
|
</ul>
|
|
10933
|
-
<h3 id="
|
|
10972
|
+
<h3 id="fixed-in-v225">Fixed in v2.2.5<a class="headerlink" href="#fixed-in-v225" title="Permanent link">¶</a></h3>
|
|
10934
10973
|
<ul>
|
|
10935
10974
|
<li><a href="https://github.com/nautobot/nautobot/issues/5564">#5564</a> - Fixed <code>ContactAssociationFilterSet.associated_object_type</code> not using the right filter field.</li>
|
|
10936
10975
|
<li><a href="https://github.com/nautobot/nautobot/issues/5669">#5669</a> - Fixed <code>AttributeError</code> thrown when deleting software versions or images from list views.</li>
|
|
@@ -10943,51 +10982,51 @@
|
|
|
10943
10982
|
<li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect API query parameters when selecting VLANs to apply to a VM Interface.</li>
|
|
10944
10983
|
<li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect query parameters when accessing or creating Clusters from a Cluster Type detail view.</li>
|
|
10945
10984
|
</ul>
|
|
10946
|
-
<h3 id="
|
|
10985
|
+
<h3 id="documentation-in-v225">Documentation in v2.2.5<a class="headerlink" href="#documentation-in-v225" title="Permanent link">¶</a></h3>
|
|
10947
10986
|
<ul>
|
|
10948
10987
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated to <code>mkdocs~1.6.0</code> and <code>mkdocs-material~9.5.23</code>.</li>
|
|
10949
10988
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
10950
10989
|
</ul>
|
|
10951
|
-
<h3 id="
|
|
10990
|
+
<h3 id="housekeeping-in-v225">Housekeeping in v2.2.5<a class="headerlink" href="#housekeeping-in-v225" title="Permanent link">¶</a></h3>
|
|
10952
10991
|
<ul>
|
|
10953
10992
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated <code>pylint</code> to <code>~3.1.1</code>.</li>
|
|
10954
10993
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated test dependency <code>requests</code> to <code>~2.32.1</code>.</li>
|
|
10955
10994
|
</ul>
|
|
10956
10995
|
<h2 id="v224-2024-05-13">v2.2.4 (2024-05-13)<a class="headerlink" href="#v224-2024-05-13" title="Permanent link">¶</a></h2>
|
|
10957
|
-
<h3 id="
|
|
10996
|
+
<h3 id="security-in-v224">Security in v2.2.4<a class="headerlink" href="#security-in-v224" title="Permanent link">¶</a></h3>
|
|
10958
10997
|
<ul>
|
|
10959
10998
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added sanitization of HTML tags in the content of <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration to prevent against potential injection of malicious scripts (stored XSS) via these features (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a>).</li>
|
|
10960
10999
|
<li><a href="https://github.com/nautobot/nautobot/issues/5672">#5672</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
|
|
10961
11000
|
</ul>
|
|
10962
|
-
<h3 id="
|
|
11001
|
+
<h3 id="added-in-v224">Added in v2.2.4<a class="headerlink" href="#added-in-v224" title="Permanent link">¶</a></h3>
|
|
10963
11002
|
<ul>
|
|
10964
11003
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added support in <code>BRANDING_FILEPATHS</code> configuration to specify a custom <code>css</code> and/or <code>javascript</code> file to be added to Nautobot page content.</li>
|
|
10965
11004
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added Markdown support to the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration settings.</li>
|
|
10966
11005
|
</ul>
|
|
10967
|
-
<h3 id="
|
|
11006
|
+
<h3 id="fixed-in-v224">Fixed in v2.2.4<a class="headerlink" href="#fixed-in-v224" title="Permanent link">¶</a></h3>
|
|
10968
11007
|
<ul>
|
|
10969
11008
|
<li><a href="https://github.com/nautobot/nautobot/issues/4986">#4986</a> - Fixed inconsistent use of super causing <code>active_tab</code> context to be missing from several views.</li>
|
|
10970
11009
|
<li><a href="https://github.com/nautobot/nautobot/issues/5644">#5644</a> - Made the uniqueness constraints between the ContactAssociation model and the related API serializer consistent.</li>
|
|
10971
11010
|
<li><a href="https://github.com/nautobot/nautobot/issues/5684">#5684</a> - Fixed standard CSV export when using export templates.</li>
|
|
10972
11011
|
<li><a href="https://github.com/nautobot/nautobot/issues/5689">#5689</a> - Fixed change logging for bulk delete operations so that user is included in the log.</li>
|
|
10973
11012
|
</ul>
|
|
10974
|
-
<h3 id="
|
|
11013
|
+
<h3 id="documentation-in-v224">Documentation in v2.2.4<a class="headerlink" href="#documentation-in-v224" title="Permanent link">¶</a></h3>
|
|
10975
11014
|
<ul>
|
|
10976
11015
|
<li><a href="https://github.com/nautobot/nautobot/issues/5661">#5661</a> - Updated documentation to organize installation instructions and provide easier to use functions from mkdocs.</li>
|
|
10977
11016
|
</ul>
|
|
10978
|
-
<h3 id="
|
|
11017
|
+
<h3 id="housekeeping-in-v224">Housekeeping in v2.2.4<a class="headerlink" href="#housekeeping-in-v224" title="Permanent link">¶</a></h3>
|
|
10979
11018
|
<ul>
|
|
10980
11019
|
<li><a href="https://github.com/nautobot/nautobot/issues/5263">#5263</a> - Updated <code>nh3</code> to <code>0.2.17</code> in <code>poetry.lock</code>.</li>
|
|
10981
11020
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Removed <code>"version"</code> from development <code>docker-compose.yml</code> files as newer versions of Docker complain about it being obsolete.</li>
|
|
10982
11021
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Fixed behavior of <code>invoke stop</code> so that it also stops the optional <code>mkdocs</code> container if present.</li>
|
|
10983
11022
|
</ul>
|
|
10984
11023
|
<h2 id="v223-2024-04-30">v2.2.3 (2024-04-30)<a class="headerlink" href="#v223-2024-04-30" title="Permanent link">¶</a></h2>
|
|
10985
|
-
<h3 id="
|
|
11024
|
+
<h3 id="security-in-v223">Security in v2.2.3<a class="headerlink" href="#security-in-v223" title="Permanent link">¶</a></h3>
|
|
10986
11025
|
<ul>
|
|
10987
11026
|
<li><a href="https://github.com/nautobot/nautobot/issues/5624">#5624</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.4.1</code> to address <code>CVE-2024-32879</code>.</li>
|
|
10988
11027
|
<li><a href="https://github.com/nautobot/nautobot/issues/5646">#5646</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
|
|
10989
11028
|
</ul>
|
|
10990
|
-
<h3 id="
|
|
11029
|
+
<h3 id="added-in-v223">Added in v2.2.3<a class="headerlink" href="#added-in-v223" title="Permanent link">¶</a></h3>
|
|
10991
11030
|
<ul>
|
|
10992
11031
|
<li><a href="https://github.com/nautobot/nautobot/issues/2946">#2946</a> - Added custom link support for interfaces, console ports, console server ports, power ports, power outlets, front ports, rear ports, device bays, and inventory items.</li>
|
|
10993
11032
|
<li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a view to convert location contact information to contacts or teams.</li>
|
|
@@ -10995,11 +11034,11 @@
|
|
|
10995
11034
|
<li><a href="https://github.com/nautobot/nautobot/issues/5560">#5560</a> - Added a template tag which creates a hyperlink that opens in a new tab.</li>
|
|
10996
11035
|
<li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Added <code>nautobot.apps.jobs.get_jobs()</code> API.</li>
|
|
10997
11036
|
</ul>
|
|
10998
|
-
<h3 id="
|
|
11037
|
+
<h3 id="changed-in-v223">Changed in v2.2.3<a class="headerlink" href="#changed-in-v223" title="Permanent link">¶</a></h3>
|
|
10999
11038
|
<ul>
|
|
11000
11039
|
<li><a href="https://github.com/nautobot/nautobot/issues/5498">#5498</a> - Changed the <code>nautobot.extras.jobs.Job</code> class to no longer be a subclass of <code>celery.tasks.Task</code>.</li>
|
|
11001
11040
|
</ul>
|
|
11002
|
-
<h3 id="
|
|
11041
|
+
<h3 id="fixed-in-v223">Fixed in v2.2.3<a class="headerlink" href="#fixed-in-v223" title="Permanent link">¶</a></h3>
|
|
11003
11042
|
<ul>
|
|
11004
11043
|
<li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Fixed missing <code>location</code> field in <code>Prefix</code> and <code>VLAN</code> GraphQL schema.</li>
|
|
11005
11044
|
<li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Restored ability to filter Prefix and VLAN objects at the ORM level by <code>location</code>.</li>
|
|
@@ -11012,67 +11051,67 @@
|
|
|
11012
11051
|
<li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed some cases where stale Job code might be present when Jobs are sourced from <code>JOBS_ROOT</code> or a Git repository.</li>
|
|
11013
11052
|
<li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed incorrect handling of Job <code>kwargs</code> when dry-running a job approval request via the REST API.</li>
|
|
11014
11053
|
</ul>
|
|
11015
|
-
<h3 id="
|
|
11054
|
+
<h3 id="documentation-in-v223">Documentation in v2.2.3<a class="headerlink" href="#documentation-in-v223" title="Permanent link">¶</a></h3>
|
|
11016
11055
|
<ul>
|
|
11017
11056
|
<li><a href="https://github.com/nautobot/nautobot/issues/5094">#5094</a> - Added "Reserved Attribute Names" section to the Jobs developer documentation.</li>
|
|
11018
11057
|
<li><a href="https://github.com/nautobot/nautobot/issues/5608">#5608</a> - Updated VLAN documentation with a recommendation for modeling of VLANs with respect to Locations.</li>
|
|
11019
11058
|
<li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Added extras features docs to core developer new model checklist.</li>
|
|
11020
11059
|
<li><a href="https://github.com/nautobot/nautobot/issues/5635">#5635</a> - Added borders to tabbed sections of mkdocs.</li>
|
|
11021
11060
|
</ul>
|
|
11022
|
-
<h3 id="
|
|
11061
|
+
<h3 id="housekeeping-in-v223">Housekeeping in v2.2.3<a class="headerlink" href="#housekeeping-in-v223" title="Permanent link">¶</a></h3>
|
|
11023
11062
|
<ul>
|
|
11024
11063
|
<li><a href="https://github.com/nautobot/nautobot/issues/4498">#4498</a> - Removed redundant <code>nautobot.extras.plugins.register_jobs</code> function.</li>
|
|
11025
11064
|
<li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Fixed an intermittent ImportError when running tests with certain options.</li>
|
|
11026
11065
|
<li><a href="https://github.com/nautobot/nautobot/issues/5605">#5605</a> - Added prerelease and release workflow to deploy sandbox environments automatically.</li>
|
|
11027
11066
|
</ul>
|
|
11028
11067
|
<h2 id="v222-2024-04-18">v2.2.2 (2024-04-18)<a class="headerlink" href="#v222-2024-04-18" title="Permanent link">¶</a></h2>
|
|
11029
|
-
<h3 id="
|
|
11068
|
+
<h3 id="security-in-v222">Security in v2.2.2<a class="headerlink" href="#security-in-v222" title="Permanent link">¶</a></h3>
|
|
11030
11069
|
<ul>
|
|
11031
11070
|
<li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
11032
11071
|
</ul>
|
|
11033
|
-
<h3 id="
|
|
11072
|
+
<h3 id="added-in-v222">Added in v2.2.2<a class="headerlink" href="#added-in-v222" title="Permanent link">¶</a></h3>
|
|
11034
11073
|
<ul>
|
|
11035
11074
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.utils.bulk_delete_with_bulk_change_logging</code> helper function for improving performance on bulk delete.</li>
|
|
11036
11075
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.context_managers.deferred_change_logging_for_bulk_operation</code> context manager for improving performance on bulk update.</li>
|
|
11037
11076
|
</ul>
|
|
11038
|
-
<h3 id="
|
|
11077
|
+
<h3 id="changed-in-v222">Changed in v2.2.2<a class="headerlink" href="#changed-in-v222" title="Permanent link">¶</a></h3>
|
|
11039
11078
|
<ul>
|
|
11040
11079
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Improved performance of bulk-edit and bulk-delete UI operations by refactoring change logging logic.</li>
|
|
11041
11080
|
<li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
|
|
11042
11081
|
<li><a href="https://github.com/nautobot/nautobot/issues/5589">#5589</a> - Fixed an invalid Javascript operator in the LLDP neighbor view.</li>
|
|
11043
11082
|
</ul>
|
|
11044
|
-
<h3 id="
|
|
11083
|
+
<h3 id="fixed-in-v222">Fixed in v2.2.2<a class="headerlink" href="#fixed-in-v222" title="Permanent link">¶</a></h3>
|
|
11045
11084
|
<ul>
|
|
11046
11085
|
<li><a href="https://github.com/nautobot/nautobot/issues/5580">#5580</a> - Fixed bugs when assigning a VLAN to an Interface related to the recently introduced many-to-many relationship between VLANs and Locations.</li>
|
|
11047
11086
|
<li><a href="https://github.com/nautobot/nautobot/issues/5592">#5592</a> - Fixed plugins not loading when using Gunicorn.</li>
|
|
11048
11087
|
</ul>
|
|
11049
|
-
<h3 id="
|
|
11088
|
+
<h3 id="documentation-in-v222">Documentation in v2.2.2<a class="headerlink" href="#documentation-in-v222" title="Permanent link">¶</a></h3>
|
|
11050
11089
|
<ul>
|
|
11051
11090
|
<li><a href="https://github.com/nautobot/nautobot/issues/5583">#5583</a> - Re-added release note content for v1.6.16 through v1.6.18.</li>
|
|
11052
11091
|
</ul>
|
|
11053
|
-
<h3 id="
|
|
11092
|
+
<h3 id="housekeeping-in-v222">Housekeeping in v2.2.2<a class="headerlink" href="#housekeeping-in-v222" title="Permanent link">¶</a></h3>
|
|
11054
11093
|
<ul>
|
|
11055
11094
|
<li><a href="https://github.com/nautobot/nautobot/issues/5590">#5590</a> - Fixed upstream testing workflows showing successful when one of the steps fail.</li>
|
|
11056
11095
|
</ul>
|
|
11057
11096
|
<h2 id="v221-2024-04-15">v2.2.1 (2024-04-15)<a class="headerlink" href="#v221-2024-04-15" title="Permanent link">¶</a></h2>
|
|
11058
|
-
<h3 id="
|
|
11097
|
+
<h3 id="security-in-v221">Security in v2.2.1<a class="headerlink" href="#security-in-v221" title="Permanent link">¶</a></h3>
|
|
11059
11098
|
<ul>
|
|
11060
11099
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
|
|
11061
11100
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
|
|
11062
11101
|
<li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to 3.7 due to CVE-2024-3651. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11063
11102
|
</ul>
|
|
11064
|
-
<h3 id="
|
|
11103
|
+
<h3 id="added-in-v221">Added in v2.2.1<a class="headerlink" href="#added-in-v221" title="Permanent link">¶</a></h3>
|
|
11065
11104
|
<ul>
|
|
11066
11105
|
<li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
|
|
11067
11106
|
<li><a href="https://github.com/nautobot/nautobot/issues/5009">#5009</a> - Added the option to filter objects with select/multi-select custom fields based on the UUID of the defined custom field choice(s), for example <code>/api/dcim/locations/?cf_multiselect=1ea9237c-3ba7-4985-ba7e-6fd9e9bff813</code> as an alternative to <code>/api/dcim/locations/?cf_multiselect=some-choice-value</code>.</li>
|
|
11068
11107
|
<li><a href="https://github.com/nautobot/nautobot/issues/5493">#5493</a> - Added a configuration setting <code>METRICS_DISABLED_APPS</code> to disable app metrics for specific apps.</li>
|
|
11069
11108
|
<li><a href="https://github.com/nautobot/nautobot/issues/5540">#5540</a> - Added total devices count to device family detail page.</li>
|
|
11070
11109
|
</ul>
|
|
11071
|
-
<h3 id="
|
|
11110
|
+
<h3 id="changed-in-v221">Changed in v2.2.1<a class="headerlink" href="#changed-in-v221" title="Permanent link">¶</a></h3>
|
|
11072
11111
|
<ul>
|
|
11073
11112
|
<li><a href="https://github.com/nautobot/nautobot/issues/5274">#5274</a> - Added a setting that changes all rack unit numbers to display a minimum of two digits in rack elevations.</li>
|
|
11074
11113
|
</ul>
|
|
11075
|
-
<h3 id="
|
|
11114
|
+
<h3 id="fixed-in-v221">Fixed in v2.2.1<a class="headerlink" href="#fixed-in-v221" title="Permanent link">¶</a></h3>
|
|
11076
11115
|
<ul>
|
|
11077
11116
|
<li><a href="https://github.com/nautobot/nautobot/issues/5469">#5469</a> - Fixed contacts and teams not being included in the global search.</li>
|
|
11078
11117
|
<li><a href="https://github.com/nautobot/nautobot/issues/5489">#5489</a> - Fixed REST API for Contact and Team incorrectly marking the <code>phone</code> and <code>email</code> fields as mandatory.</li>
|
|
@@ -11082,20 +11121,20 @@
|
|
|
11082
11121
|
<li><a href="https://github.com/nautobot/nautobot/issues/5527">#5527</a> - Fixed incorrect "members" links in Virtual Chassis list view.</li>
|
|
11083
11122
|
<li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Re-added <code>nautobot.setup()</code> function mistakenly removed in 2.2.0.</li>
|
|
11084
11123
|
</ul>
|
|
11085
|
-
<h3 id="
|
|
11124
|
+
<h3 id="dependencies-in-v221">Dependencies in v2.2.1<a class="headerlink" href="#dependencies-in-v221" title="Permanent link">¶</a></h3>
|
|
11086
11125
|
<ul>
|
|
11087
11126
|
<li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed jsonschema version constraint from <code>>=4.7.0,<4.19.0</code> to <code>^4.7.0</code>.</li>
|
|
11088
11127
|
<li><a href="https://github.com/nautobot/nautobot/issues/5517">#5517</a> - Updated <code>djangorestframework</code> to <code>~3.15.1</code>.</li>
|
|
11089
11128
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated most dependencies to the latest versions available as of 2024-04-01.</li>
|
|
11090
11129
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
11091
11130
|
</ul>
|
|
11092
|
-
<h3 id="
|
|
11131
|
+
<h3 id="documentation-in-v221">Documentation in v2.2.1<a class="headerlink" href="#documentation-in-v221" title="Permanent link">¶</a></h3>
|
|
11093
11132
|
<ul>
|
|
11094
11133
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
|
|
11095
11134
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
|
|
11096
11135
|
<li><a href="https://github.com/nautobot/nautobot/issues/5526">#5526</a> - Fixed doc reference to job cprofile file location.</li>
|
|
11097
11136
|
</ul>
|
|
11098
|
-
<h3 id="
|
|
11137
|
+
<h3 id="housekeeping-in-v221">Housekeeping in v2.2.1<a class="headerlink" href="#housekeeping-in-v221" title="Permanent link">¶</a></h3>
|
|
11099
11138
|
<ul>
|
|
11100
11139
|
<li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Removed <code>nautobot-server pylint</code> management command from the <code>example_app</code>, as pylint can be invoked directly with an appropriate <code>--init-hook</code> instead.</li>
|
|
11101
11140
|
<li><a href="https://github.com/nautobot/nautobot/issues/5547">#5547</a> - Fixed TransactionTestCase inheritance order so that <code>test.client</code> works in test cases using this class.</li>
|
|
@@ -11105,12 +11144,12 @@
|
|
|
11105
11144
|
<p class="admonition-title">Warning</p>
|
|
11106
11145
|
<p>Upgrading from beta releases to final releases is never recommended for Nautobot; in the case of 2.2.0b1 to 2.2.0 several data models and database migrations have been modified (see <a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a>) between the two releases, and so upgrading in place from 2.2.0b1 to 2.2.0 <strong>will not work</strong>.</p>
|
|
11107
11146
|
</div>
|
|
11108
|
-
<h3 id="
|
|
11147
|
+
<h3 id="added-in-v220">Added in v2.2.0<a class="headerlink" href="#added-in-v220" title="Permanent link">¶</a></h3>
|
|
11109
11148
|
<ul>
|
|
11110
11149
|
<li><a href="https://github.com/nautobot/nautobot/issues/4811">#4811</a> - Added a new generic test case (<code>test_table_with_indentation_is_removed_on_filter_or_sort</code>) to <code>ListObjectsViewTestCase</code> to test that the tree hierarchy is correctly removed on TreeModel list views when sorting or filtering is applied. This test will also run in these subclasses of the <code>ListObjectsViewTestCase</code>: <code>PrimaryObjectViewTestCase</code>, <code>OrganizationalObjectViewTestCase</code>, and <code>DeviceComponentViewTestCase</code>.</li>
|
|
11111
11150
|
<li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a management command (<code>nautobot-server migrate_location_contacts</code>) to help migrate the Location <code>contact_name</code>, <code>contact_email</code> and <code>contact_phone</code> fields to Contact and Teams models.</li>
|
|
11112
11151
|
</ul>
|
|
11113
|
-
<h3 id="
|
|
11152
|
+
<h3 id="changed-in-v220">Changed in v2.2.0<a class="headerlink" href="#changed-in-v220" title="Permanent link">¶</a></h3>
|
|
11114
11153
|
<ul>
|
|
11115
11154
|
<li><a href="https://github.com/nautobot/nautobot/issues/5452">#5452</a> - Changed the behavior of Prefix table: now they are sortable, and after sorting is applied, all hierarchy indentations are removed.</li>
|
|
11116
11155
|
<li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Changed one-to-many links from Controller to <code>PROTECT</code> against deleting.</li>
|
|
@@ -11123,24 +11162,24 @@
|
|
|
11123
11162
|
<li><a href="https://github.com/nautobot/nautobot/issues/5475">#5475</a> - Changed the behavior of Prefix table and other Tree Model tables: now after filtering is applied, all hierarchy indentations are removed.</li>
|
|
11124
11163
|
<li><a href="https://github.com/nautobot/nautobot/issues/5487">#5487</a> - Moved some nav menu items around to make better logical sense and to allow quicker access to more commonly accessed features.</li>
|
|
11125
11164
|
</ul>
|
|
11126
|
-
<h3 id="
|
|
11165
|
+
<h3 id="fixed-in-v220">Fixed in v2.2.0<a class="headerlink" href="#fixed-in-v220" title="Permanent link">¶</a></h3>
|
|
11127
11166
|
<ul>
|
|
11128
11167
|
<li><a href="https://github.com/nautobot/nautobot/issues/5415">#5415</a> - Fixed Team(s) field not pre-populating when editing a Contact.</li>
|
|
11129
11168
|
<li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Roles API response containing duplicate entries when filtering on more than one <code>content_types</code> value.</li>
|
|
11130
11169
|
<li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Providers API response containing duplicate entries when filtering on more than one <code>location</code> value.</li>
|
|
11131
11170
|
<li><a href="https://github.com/nautobot/nautobot/issues/5440">#5440</a> - Fixed <code>Cannot resolve keyword 'task_id' into field</code> error when calling <code>nautobot-server celery result <task_id></code>.</li>
|
|
11132
11171
|
</ul>
|
|
11133
|
-
<h3 id="
|
|
11172
|
+
<h3 id="dependencies-in-v220">Dependencies in v2.2.0<a class="headerlink" href="#dependencies-in-v220" title="Permanent link">¶</a></h3>
|
|
11134
11173
|
<ul>
|
|
11135
11174
|
<li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> & it's dependency on <code>ecdsa</code>.</li>
|
|
11136
11175
|
</ul>
|
|
11137
|
-
<h3 id="
|
|
11176
|
+
<h3 id="housekeeping-in-v220">Housekeeping in v2.2.0<a class="headerlink" href="#housekeeping-in-v220" title="Permanent link">¶</a></h3>
|
|
11138
11177
|
<ul>
|
|
11139
11178
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
|
|
11140
11179
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
|
|
11141
11180
|
</ul>
|
|
11142
11181
|
<h2 id="v220-beta1-2024-03-19">v2.2.0-beta.1 (2024-03-19)<a class="headerlink" href="#v220-beta1-2024-03-19" title="Permanent link">¶</a></h2>
|
|
11143
|
-
<h3 id="
|
|
11182
|
+
<h3 id="added-in-v220-beta1">Added in v2.2.0-beta.1<a class="headerlink" href="#added-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11144
11183
|
<ul>
|
|
11145
11184
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
|
|
11146
11185
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added a many-to-many relationship from <code>Device</code> to <code>SoftwareImageFile</code>.</li>
|
|
@@ -11179,7 +11218,7 @@
|
|
|
11179
11218
|
<li><a href="https://github.com/nautobot/nautobot/issues/5347">#5347</a> - Added an option to the Job-based CSV import to make atomic transactions optional.</li>
|
|
11180
11219
|
<li><a href="https://github.com/nautobot/nautobot/issues/5349">#5349</a> - Added REST API for vlan-to-location and prefix-to-location M2M.</li>
|
|
11181
11220
|
</ul>
|
|
11182
|
-
<h3 id="
|
|
11221
|
+
<h3 id="changed-in-v220-beta1">Changed in v2.2.0-beta.1<a class="headerlink" href="#changed-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11183
11222
|
<ul>
|
|
11184
11223
|
<li><a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a> - Increased <code>max_length</code> on all CharFields to at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</li>
|
|
11185
11224
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Changed <code>Prefix.location</code> to <code>Prefix.locations</code> allowing multiple Locations to be associated with a given Prefix.</li>
|
|
@@ -11198,18 +11237,18 @@
|
|
|
11198
11237
|
<li><a href="https://github.com/nautobot/nautobot/issues/5412">#5412</a> - Changed DeviceType YAML/JSON import to now map unrecognized port template <code>type</code> values to <code>"other"</code> instead of failing the import.</li>
|
|
11199
11238
|
<li><a href="https://github.com/nautobot/nautobot/issues/5414">#5414</a> - Changed <code>ImportObjects.roll_back_if_error</code> form field help text and label.</li>
|
|
11200
11239
|
</ul>
|
|
11201
|
-
<h3 id="deprecated">Deprecated<a class="headerlink" href="#deprecated" title="Permanent link">¶</a></h3>
|
|
11240
|
+
<h3 id="deprecated-in-v220-beta1">Deprecated in v2.2.0-beta.1<a class="headerlink" href="#deprecated-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11202
11241
|
<ul>
|
|
11203
11242
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Deprecated the <code>import_button</code> button template-tag.</li>
|
|
11204
11243
|
<li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Deprecated the <code>nautobot.apps.exceptions.ConfigurationError</code> class as it is no longer used in Nautobot core and is trivially reimplementable by any App if desired.</li>
|
|
11205
11244
|
<li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Deprecated the <code>plugins</code> key under the <code>/api/status/</code> REST API endpoint. Refer to <code>nautobot-apps</code> instead.</li>
|
|
11206
11245
|
</ul>
|
|
11207
|
-
<h3 id="
|
|
11246
|
+
<h3 id="removed-in-v220-beta1">Removed in v2.2.0-beta.1<a class="headerlink" href="#removed-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11208
11247
|
<ul>
|
|
11209
11248
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Removed the requirement for <code>ViewTestCases</code> subclasses to define <code>csv_data</code> for testing bulk-import views, as this functionality is now covered by a generic system Job.</li>
|
|
11210
11249
|
<li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Removed <code>logan</code>-derived application startup logic, simplifying the Nautobot startup code flow.</li>
|
|
11211
11250
|
</ul>
|
|
11212
|
-
<h3 id="
|
|
11251
|
+
<h3 id="fixed-in-v220-beta1">Fixed in v2.2.0-beta.1<a class="headerlink" href="#fixed-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11213
11252
|
<ul>
|
|
11214
11253
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
|
|
11215
11254
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Fixed an exception in <code>Job.after_return()</code> if a Job with an optional <code>FileVar</code> was executed without supplying a value for that variable.</li>
|
|
@@ -11222,18 +11261,18 @@
|
|
|
11222
11261
|
<li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a <code>ValidationError</code> that was being thrown when a user logged out.</li>
|
|
11223
11262
|
<li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a case where viewing a completed JobResult that was missing a <code>date_done</code> value would cause the JobResult view to repeatedly refresh.</li>
|
|
11224
11263
|
</ul>
|
|
11225
|
-
<h3 id="
|
|
11264
|
+
<h3 id="dependencies-in-v220-beta1">Dependencies in v2.2.0-beta.1<a class="headerlink" href="#dependencies-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11226
11265
|
<ul>
|
|
11227
11266
|
<li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Broadened <code>Markdown</code> dependency to permit versions up to 3.5.x.</li>
|
|
11228
11267
|
</ul>
|
|
11229
|
-
<h3 id="
|
|
11268
|
+
<h3 id="documentation-in-v220-beta1">Documentation in v2.2.0-beta.1<a class="headerlink" href="#documentation-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11230
11269
|
<ul>
|
|
11231
11270
|
<li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Updated all documentation referencing the <code>example_plugin</code> to refer to the (renamed) <code>example_app</code>.</li>
|
|
11232
11271
|
<li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Replaced some "plugin" references in the documentation with "App" or "Nautobot App" as appropriate.</li>
|
|
11233
11272
|
<li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Removed source code excerpts from the "App Developer Guide > Code Reference" section of the documentation.</li>
|
|
11234
11273
|
<li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Replaced references to "plugins" in the documentation with "Apps".</li>
|
|
11235
11274
|
</ul>
|
|
11236
|
-
<h3 id="
|
|
11275
|
+
<h3 id="housekeeping-in-v220-beta1">Housekeeping in v2.2.0-beta.1<a class="headerlink" href="#housekeeping-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11237
11276
|
<ul>
|
|
11238
11277
|
<li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Added <code>mkdocs-macros-plugin</code> as a development/documentation-rendering dependency.</li>
|
|
11239
11278
|
<li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Refactored documentation in <code>optional-settings</code> and <code>required-settings</code> to be generated automatically from <code>settings.yaml</code> schema.</li>
|
|
@@ -11402,7 +11441,7 @@
|
|
|
11402
11441
|
<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>
|
|
11403
11442
|
|
|
11404
11443
|
|
|
11405
|
-
<script src="../assets/javascripts/bundle.
|
|
11444
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
11406
11445
|
|
|
11407
11446
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11408
11447
|
|