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
|
|
|
@@ -8642,72 +8684,72 @@
|
|
|
8642
8684
|
<ul class="md-nav__list">
|
|
8643
8685
|
|
|
8644
8686
|
<li class="md-nav__item">
|
|
8645
|
-
<a href="#security" class="md-nav__link">
|
|
8687
|
+
<a href="#security-in-v219" class="md-nav__link">
|
|
8646
8688
|
<span class="md-ellipsis">
|
|
8647
|
-
Security
|
|
8689
|
+
Security in v2.1.9
|
|
8648
8690
|
</span>
|
|
8649
8691
|
</a>
|
|
8650
8692
|
|
|
8651
8693
|
</li>
|
|
8652
8694
|
|
|
8653
8695
|
<li class="md-nav__item">
|
|
8654
|
-
<a href="#
|
|
8696
|
+
<a href="#added-in-v219" class="md-nav__link">
|
|
8655
8697
|
<span class="md-ellipsis">
|
|
8656
|
-
Added
|
|
8698
|
+
Added in v2.1.9
|
|
8657
8699
|
</span>
|
|
8658
8700
|
</a>
|
|
8659
8701
|
|
|
8660
8702
|
</li>
|
|
8661
8703
|
|
|
8662
8704
|
<li class="md-nav__item">
|
|
8663
|
-
<a href="#
|
|
8705
|
+
<a href="#changed-in-v219" class="md-nav__link">
|
|
8664
8706
|
<span class="md-ellipsis">
|
|
8665
|
-
Changed
|
|
8707
|
+
Changed in v2.1.9
|
|
8666
8708
|
</span>
|
|
8667
8709
|
</a>
|
|
8668
8710
|
|
|
8669
8711
|
</li>
|
|
8670
8712
|
|
|
8671
8713
|
<li class="md-nav__item">
|
|
8672
|
-
<a href="#
|
|
8714
|
+
<a href="#removed-in-v219" class="md-nav__link">
|
|
8673
8715
|
<span class="md-ellipsis">
|
|
8674
|
-
Removed
|
|
8716
|
+
Removed in v2.1.9
|
|
8675
8717
|
</span>
|
|
8676
8718
|
</a>
|
|
8677
8719
|
|
|
8678
8720
|
</li>
|
|
8679
8721
|
|
|
8680
8722
|
<li class="md-nav__item">
|
|
8681
|
-
<a href="#fixed" class="md-nav__link">
|
|
8723
|
+
<a href="#fixed-in-v219" class="md-nav__link">
|
|
8682
8724
|
<span class="md-ellipsis">
|
|
8683
|
-
Fixed
|
|
8725
|
+
Fixed in v2.1.9
|
|
8684
8726
|
</span>
|
|
8685
8727
|
</a>
|
|
8686
8728
|
|
|
8687
8729
|
</li>
|
|
8688
8730
|
|
|
8689
8731
|
<li class="md-nav__item">
|
|
8690
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8732
|
+
<a href="#dependencies-in-v219" class="md-nav__link">
|
|
8691
8733
|
<span class="md-ellipsis">
|
|
8692
|
-
Dependencies
|
|
8734
|
+
Dependencies in v2.1.9
|
|
8693
8735
|
</span>
|
|
8694
8736
|
</a>
|
|
8695
8737
|
|
|
8696
8738
|
</li>
|
|
8697
8739
|
|
|
8698
8740
|
<li class="md-nav__item">
|
|
8699
|
-
<a href="#documentation" class="md-nav__link">
|
|
8741
|
+
<a href="#documentation-in-v219" class="md-nav__link">
|
|
8700
8742
|
<span class="md-ellipsis">
|
|
8701
|
-
Documentation
|
|
8743
|
+
Documentation in v2.1.9
|
|
8702
8744
|
</span>
|
|
8703
8745
|
</a>
|
|
8704
8746
|
|
|
8705
8747
|
</li>
|
|
8706
8748
|
|
|
8707
8749
|
<li class="md-nav__item">
|
|
8708
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8750
|
+
<a href="#housekeeping-in-v219" class="md-nav__link">
|
|
8709
8751
|
<span class="md-ellipsis">
|
|
8710
|
-
Housekeeping
|
|
8752
|
+
Housekeeping in v2.1.9
|
|
8711
8753
|
</span>
|
|
8712
8754
|
</a>
|
|
8713
8755
|
|
|
@@ -8729,54 +8771,54 @@
|
|
|
8729
8771
|
<ul class="md-nav__list">
|
|
8730
8772
|
|
|
8731
8773
|
<li class="md-nav__item">
|
|
8732
|
-
<a href="#
|
|
8774
|
+
<a href="#added-in-v218" class="md-nav__link">
|
|
8733
8775
|
<span class="md-ellipsis">
|
|
8734
|
-
Added
|
|
8776
|
+
Added in v2.1.8
|
|
8735
8777
|
</span>
|
|
8736
8778
|
</a>
|
|
8737
8779
|
|
|
8738
8780
|
</li>
|
|
8739
8781
|
|
|
8740
8782
|
<li class="md-nav__item">
|
|
8741
|
-
<a href="#
|
|
8783
|
+
<a href="#changed-in-v218" class="md-nav__link">
|
|
8742
8784
|
<span class="md-ellipsis">
|
|
8743
|
-
Changed
|
|
8785
|
+
Changed in v2.1.8
|
|
8744
8786
|
</span>
|
|
8745
8787
|
</a>
|
|
8746
8788
|
|
|
8747
8789
|
</li>
|
|
8748
8790
|
|
|
8749
8791
|
<li class="md-nav__item">
|
|
8750
|
-
<a href="#
|
|
8792
|
+
<a href="#removed-in-v218" class="md-nav__link">
|
|
8751
8793
|
<span class="md-ellipsis">
|
|
8752
|
-
Removed
|
|
8794
|
+
Removed in v2.1.8
|
|
8753
8795
|
</span>
|
|
8754
8796
|
</a>
|
|
8755
8797
|
|
|
8756
8798
|
</li>
|
|
8757
8799
|
|
|
8758
8800
|
<li class="md-nav__item">
|
|
8759
|
-
<a href="#
|
|
8801
|
+
<a href="#fixed-in-v218" class="md-nav__link">
|
|
8760
8802
|
<span class="md-ellipsis">
|
|
8761
|
-
Fixed
|
|
8803
|
+
Fixed in v2.1.8
|
|
8762
8804
|
</span>
|
|
8763
8805
|
</a>
|
|
8764
8806
|
|
|
8765
8807
|
</li>
|
|
8766
8808
|
|
|
8767
8809
|
<li class="md-nav__item">
|
|
8768
|
-
<a href="#
|
|
8810
|
+
<a href="#documentation-in-v218" class="md-nav__link">
|
|
8769
8811
|
<span class="md-ellipsis">
|
|
8770
|
-
Documentation
|
|
8812
|
+
Documentation in v2.1.8
|
|
8771
8813
|
</span>
|
|
8772
8814
|
</a>
|
|
8773
8815
|
|
|
8774
8816
|
</li>
|
|
8775
8817
|
|
|
8776
8818
|
<li class="md-nav__item">
|
|
8777
|
-
<a href="#
|
|
8819
|
+
<a href="#housekeeping-in-v218" class="md-nav__link">
|
|
8778
8820
|
<span class="md-ellipsis">
|
|
8779
|
-
Housekeeping
|
|
8821
|
+
Housekeeping in v2.1.8
|
|
8780
8822
|
</span>
|
|
8781
8823
|
</a>
|
|
8782
8824
|
|
|
@@ -8798,9 +8840,9 @@
|
|
|
8798
8840
|
<ul class="md-nav__list">
|
|
8799
8841
|
|
|
8800
8842
|
<li class="md-nav__item">
|
|
8801
|
-
<a href="#
|
|
8843
|
+
<a href="#fixed-in-v217" class="md-nav__link">
|
|
8802
8844
|
<span class="md-ellipsis">
|
|
8803
|
-
Fixed
|
|
8845
|
+
Fixed in v2.1.7
|
|
8804
8846
|
</span>
|
|
8805
8847
|
</a>
|
|
8806
8848
|
|
|
@@ -8822,45 +8864,45 @@
|
|
|
8822
8864
|
<ul class="md-nav__list">
|
|
8823
8865
|
|
|
8824
8866
|
<li class="md-nav__item">
|
|
8825
|
-
<a href="#
|
|
8867
|
+
<a href="#security-in-v216" class="md-nav__link">
|
|
8826
8868
|
<span class="md-ellipsis">
|
|
8827
|
-
Security
|
|
8869
|
+
Security in v2.1.6
|
|
8828
8870
|
</span>
|
|
8829
8871
|
</a>
|
|
8830
8872
|
|
|
8831
8873
|
</li>
|
|
8832
8874
|
|
|
8833
8875
|
<li class="md-nav__item">
|
|
8834
|
-
<a href="#
|
|
8876
|
+
<a href="#added-in-v216" class="md-nav__link">
|
|
8835
8877
|
<span class="md-ellipsis">
|
|
8836
|
-
Added
|
|
8878
|
+
Added in v2.1.6
|
|
8837
8879
|
</span>
|
|
8838
8880
|
</a>
|
|
8839
8881
|
|
|
8840
8882
|
</li>
|
|
8841
8883
|
|
|
8842
8884
|
<li class="md-nav__item">
|
|
8843
|
-
<a href="#
|
|
8885
|
+
<a href="#changed-in-v216" class="md-nav__link">
|
|
8844
8886
|
<span class="md-ellipsis">
|
|
8845
|
-
Changed
|
|
8887
|
+
Changed in v2.1.6
|
|
8846
8888
|
</span>
|
|
8847
8889
|
</a>
|
|
8848
8890
|
|
|
8849
8891
|
</li>
|
|
8850
8892
|
|
|
8851
8893
|
<li class="md-nav__item">
|
|
8852
|
-
<a href="#
|
|
8894
|
+
<a href="#fixed-in-v216" class="md-nav__link">
|
|
8853
8895
|
<span class="md-ellipsis">
|
|
8854
|
-
Fixed
|
|
8896
|
+
Fixed in v2.1.6
|
|
8855
8897
|
</span>
|
|
8856
8898
|
</a>
|
|
8857
8899
|
|
|
8858
8900
|
</li>
|
|
8859
8901
|
|
|
8860
8902
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#
|
|
8903
|
+
<a href="#documentation-in-v216" class="md-nav__link">
|
|
8862
8904
|
<span class="md-ellipsis">
|
|
8863
|
-
Documentation
|
|
8905
|
+
Documentation in v2.1.6
|
|
8864
8906
|
</span>
|
|
8865
8907
|
</a>
|
|
8866
8908
|
|
|
@@ -8882,54 +8924,54 @@
|
|
|
8882
8924
|
<ul class="md-nav__list">
|
|
8883
8925
|
|
|
8884
8926
|
<li class="md-nav__item">
|
|
8885
|
-
<a href="#
|
|
8927
|
+
<a href="#security-in-v215" class="md-nav__link">
|
|
8886
8928
|
<span class="md-ellipsis">
|
|
8887
|
-
Security
|
|
8929
|
+
Security in v2.1.5
|
|
8888
8930
|
</span>
|
|
8889
8931
|
</a>
|
|
8890
8932
|
|
|
8891
8933
|
</li>
|
|
8892
8934
|
|
|
8893
8935
|
<li class="md-nav__item">
|
|
8894
|
-
<a href="#
|
|
8936
|
+
<a href="#added-in-v215" class="md-nav__link">
|
|
8895
8937
|
<span class="md-ellipsis">
|
|
8896
|
-
Added
|
|
8938
|
+
Added in v2.1.5
|
|
8897
8939
|
</span>
|
|
8898
8940
|
</a>
|
|
8899
8941
|
|
|
8900
8942
|
</li>
|
|
8901
8943
|
|
|
8902
8944
|
<li class="md-nav__item">
|
|
8903
|
-
<a href="#
|
|
8945
|
+
<a href="#changed-in-v215" class="md-nav__link">
|
|
8904
8946
|
<span class="md-ellipsis">
|
|
8905
|
-
Changed
|
|
8947
|
+
Changed in v2.1.5
|
|
8906
8948
|
</span>
|
|
8907
8949
|
</a>
|
|
8908
8950
|
|
|
8909
8951
|
</li>
|
|
8910
8952
|
|
|
8911
8953
|
<li class="md-nav__item">
|
|
8912
|
-
<a href="#
|
|
8954
|
+
<a href="#fixed-in-v215" class="md-nav__link">
|
|
8913
8955
|
<span class="md-ellipsis">
|
|
8914
|
-
Fixed
|
|
8956
|
+
Fixed in v2.1.5
|
|
8915
8957
|
</span>
|
|
8916
8958
|
</a>
|
|
8917
8959
|
|
|
8918
8960
|
</li>
|
|
8919
8961
|
|
|
8920
8962
|
<li class="md-nav__item">
|
|
8921
|
-
<a href="#
|
|
8963
|
+
<a href="#documentation-in-v215" class="md-nav__link">
|
|
8922
8964
|
<span class="md-ellipsis">
|
|
8923
|
-
Documentation
|
|
8965
|
+
Documentation in v2.1.5
|
|
8924
8966
|
</span>
|
|
8925
8967
|
</a>
|
|
8926
8968
|
|
|
8927
8969
|
</li>
|
|
8928
8970
|
|
|
8929
8971
|
<li class="md-nav__item">
|
|
8930
|
-
<a href="#
|
|
8972
|
+
<a href="#housekeeping-in-v215" class="md-nav__link">
|
|
8931
8973
|
<span class="md-ellipsis">
|
|
8932
|
-
Housekeeping
|
|
8974
|
+
Housekeeping in v2.1.5
|
|
8933
8975
|
</span>
|
|
8934
8976
|
</a>
|
|
8935
8977
|
|
|
@@ -8951,36 +8993,36 @@
|
|
|
8951
8993
|
<ul class="md-nav__list">
|
|
8952
8994
|
|
|
8953
8995
|
<li class="md-nav__item">
|
|
8954
|
-
<a href="#
|
|
8996
|
+
<a href="#security-in-v214" class="md-nav__link">
|
|
8955
8997
|
<span class="md-ellipsis">
|
|
8956
|
-
Security
|
|
8998
|
+
Security in v2.1.4
|
|
8957
8999
|
</span>
|
|
8958
9000
|
</a>
|
|
8959
9001
|
|
|
8960
9002
|
</li>
|
|
8961
9003
|
|
|
8962
9004
|
<li class="md-nav__item">
|
|
8963
|
-
<a href="#
|
|
9005
|
+
<a href="#fixed-in-v214" class="md-nav__link">
|
|
8964
9006
|
<span class="md-ellipsis">
|
|
8965
|
-
Fixed
|
|
9007
|
+
Fixed in v2.1.4
|
|
8966
9008
|
</span>
|
|
8967
9009
|
</a>
|
|
8968
9010
|
|
|
8969
9011
|
</li>
|
|
8970
9012
|
|
|
8971
9013
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
9014
|
+
<a href="#documentation-in-v214" class="md-nav__link">
|
|
8973
9015
|
<span class="md-ellipsis">
|
|
8974
|
-
Documentation
|
|
9016
|
+
Documentation in v2.1.4
|
|
8975
9017
|
</span>
|
|
8976
9018
|
</a>
|
|
8977
9019
|
|
|
8978
9020
|
</li>
|
|
8979
9021
|
|
|
8980
9022
|
<li class="md-nav__item">
|
|
8981
|
-
<a href="#
|
|
9023
|
+
<a href="#housekeeping-in-v214" class="md-nav__link">
|
|
8982
9024
|
<span class="md-ellipsis">
|
|
8983
|
-
Housekeeping
|
|
9025
|
+
Housekeeping in v2.1.4
|
|
8984
9026
|
</span>
|
|
8985
9027
|
</a>
|
|
8986
9028
|
|
|
@@ -9002,63 +9044,63 @@
|
|
|
9002
9044
|
<ul class="md-nav__list">
|
|
9003
9045
|
|
|
9004
9046
|
<li class="md-nav__item">
|
|
9005
|
-
<a href="#
|
|
9047
|
+
<a href="#security-in-v213" class="md-nav__link">
|
|
9006
9048
|
<span class="md-ellipsis">
|
|
9007
|
-
Security
|
|
9049
|
+
Security in v2.1.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="#added-in-v213" class="md-nav__link">
|
|
9015
9057
|
<span class="md-ellipsis">
|
|
9016
|
-
Added
|
|
9058
|
+
Added in v2.1.3
|
|
9017
9059
|
</span>
|
|
9018
9060
|
</a>
|
|
9019
9061
|
|
|
9020
9062
|
</li>
|
|
9021
9063
|
|
|
9022
9064
|
<li class="md-nav__item">
|
|
9023
|
-
<a href="#
|
|
9065
|
+
<a href="#changed-in-v213" class="md-nav__link">
|
|
9024
9066
|
<span class="md-ellipsis">
|
|
9025
|
-
Changed
|
|
9067
|
+
Changed in v2.1.3
|
|
9026
9068
|
</span>
|
|
9027
9069
|
</a>
|
|
9028
9070
|
|
|
9029
9071
|
</li>
|
|
9030
9072
|
|
|
9031
9073
|
<li class="md-nav__item">
|
|
9032
|
-
<a href="#
|
|
9074
|
+
<a href="#removed-in-v213" class="md-nav__link">
|
|
9033
9075
|
<span class="md-ellipsis">
|
|
9034
|
-
Removed
|
|
9076
|
+
Removed in v2.1.3
|
|
9035
9077
|
</span>
|
|
9036
9078
|
</a>
|
|
9037
9079
|
|
|
9038
9080
|
</li>
|
|
9039
9081
|
|
|
9040
9082
|
<li class="md-nav__item">
|
|
9041
|
-
<a href="#
|
|
9083
|
+
<a href="#fixed-in-v213" class="md-nav__link">
|
|
9042
9084
|
<span class="md-ellipsis">
|
|
9043
|
-
Fixed
|
|
9085
|
+
Fixed in v2.1.3
|
|
9044
9086
|
</span>
|
|
9045
9087
|
</a>
|
|
9046
9088
|
|
|
9047
9089
|
</li>
|
|
9048
9090
|
|
|
9049
9091
|
<li class="md-nav__item">
|
|
9050
|
-
<a href="#
|
|
9092
|
+
<a href="#dependencies-in-v213" class="md-nav__link">
|
|
9051
9093
|
<span class="md-ellipsis">
|
|
9052
|
-
Dependencies
|
|
9094
|
+
Dependencies in v2.1.3
|
|
9053
9095
|
</span>
|
|
9054
9096
|
</a>
|
|
9055
9097
|
|
|
9056
9098
|
</li>
|
|
9057
9099
|
|
|
9058
9100
|
<li class="md-nav__item">
|
|
9059
|
-
<a href="#
|
|
9101
|
+
<a href="#housekeeping-in-v213" class="md-nav__link">
|
|
9060
9102
|
<span class="md-ellipsis">
|
|
9061
|
-
Housekeeping
|
|
9103
|
+
Housekeeping in v2.1.3
|
|
9062
9104
|
</span>
|
|
9063
9105
|
</a>
|
|
9064
9106
|
|
|
@@ -9080,72 +9122,72 @@
|
|
|
9080
9122
|
<ul class="md-nav__list">
|
|
9081
9123
|
|
|
9082
9124
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9125
|
+
<a href="#security-in-v212" class="md-nav__link">
|
|
9084
9126
|
<span class="md-ellipsis">
|
|
9085
|
-
Security
|
|
9127
|
+
Security in v2.1.2
|
|
9086
9128
|
</span>
|
|
9087
9129
|
</a>
|
|
9088
9130
|
|
|
9089
9131
|
</li>
|
|
9090
9132
|
|
|
9091
9133
|
<li class="md-nav__item">
|
|
9092
|
-
<a href="#
|
|
9134
|
+
<a href="#added-in-v212" class="md-nav__link">
|
|
9093
9135
|
<span class="md-ellipsis">
|
|
9094
|
-
Added
|
|
9136
|
+
Added in v2.1.2
|
|
9095
9137
|
</span>
|
|
9096
9138
|
</a>
|
|
9097
9139
|
|
|
9098
9140
|
</li>
|
|
9099
9141
|
|
|
9100
9142
|
<li class="md-nav__item">
|
|
9101
|
-
<a href="#
|
|
9143
|
+
<a href="#changed-in-v212" class="md-nav__link">
|
|
9102
9144
|
<span class="md-ellipsis">
|
|
9103
|
-
Changed
|
|
9145
|
+
Changed in v2.1.2
|
|
9104
9146
|
</span>
|
|
9105
9147
|
</a>
|
|
9106
9148
|
|
|
9107
9149
|
</li>
|
|
9108
9150
|
|
|
9109
9151
|
<li class="md-nav__item">
|
|
9110
|
-
<a href="#
|
|
9152
|
+
<a href="#removed-in-v212" class="md-nav__link">
|
|
9111
9153
|
<span class="md-ellipsis">
|
|
9112
|
-
Removed
|
|
9154
|
+
Removed in v2.1.2
|
|
9113
9155
|
</span>
|
|
9114
9156
|
</a>
|
|
9115
9157
|
|
|
9116
9158
|
</li>
|
|
9117
9159
|
|
|
9118
9160
|
<li class="md-nav__item">
|
|
9119
|
-
<a href="#
|
|
9161
|
+
<a href="#fixed-in-v212" class="md-nav__link">
|
|
9120
9162
|
<span class="md-ellipsis">
|
|
9121
|
-
Fixed
|
|
9163
|
+
Fixed in v2.1.2
|
|
9122
9164
|
</span>
|
|
9123
9165
|
</a>
|
|
9124
9166
|
|
|
9125
9167
|
</li>
|
|
9126
9168
|
|
|
9127
9169
|
<li class="md-nav__item">
|
|
9128
|
-
<a href="#
|
|
9170
|
+
<a href="#dependencies-in-v212" class="md-nav__link">
|
|
9129
9171
|
<span class="md-ellipsis">
|
|
9130
|
-
Dependencies
|
|
9172
|
+
Dependencies in v2.1.2
|
|
9131
9173
|
</span>
|
|
9132
9174
|
</a>
|
|
9133
9175
|
|
|
9134
9176
|
</li>
|
|
9135
9177
|
|
|
9136
9178
|
<li class="md-nav__item">
|
|
9137
|
-
<a href="#
|
|
9179
|
+
<a href="#documentation-in-v212" class="md-nav__link">
|
|
9138
9180
|
<span class="md-ellipsis">
|
|
9139
|
-
Documentation
|
|
9181
|
+
Documentation in v2.1.2
|
|
9140
9182
|
</span>
|
|
9141
9183
|
</a>
|
|
9142
9184
|
|
|
9143
9185
|
</li>
|
|
9144
9186
|
|
|
9145
9187
|
<li class="md-nav__item">
|
|
9146
|
-
<a href="#
|
|
9188
|
+
<a href="#housekeeping-in-v212" class="md-nav__link">
|
|
9147
9189
|
<span class="md-ellipsis">
|
|
9148
|
-
Housekeeping
|
|
9190
|
+
Housekeeping in v2.1.2
|
|
9149
9191
|
</span>
|
|
9150
9192
|
</a>
|
|
9151
9193
|
|
|
@@ -9167,54 +9209,54 @@
|
|
|
9167
9209
|
<ul class="md-nav__list">
|
|
9168
9210
|
|
|
9169
9211
|
<li class="md-nav__item">
|
|
9170
|
-
<a href="#
|
|
9212
|
+
<a href="#added-in-v211" class="md-nav__link">
|
|
9171
9213
|
<span class="md-ellipsis">
|
|
9172
|
-
Added
|
|
9214
|
+
Added in v2.1.1
|
|
9173
9215
|
</span>
|
|
9174
9216
|
</a>
|
|
9175
9217
|
|
|
9176
9218
|
</li>
|
|
9177
9219
|
|
|
9178
9220
|
<li class="md-nav__item">
|
|
9179
|
-
<a href="#
|
|
9221
|
+
<a href="#changed-in-v211" class="md-nav__link">
|
|
9180
9222
|
<span class="md-ellipsis">
|
|
9181
|
-
Changed
|
|
9223
|
+
Changed in v2.1.1
|
|
9182
9224
|
</span>
|
|
9183
9225
|
</a>
|
|
9184
9226
|
|
|
9185
9227
|
</li>
|
|
9186
9228
|
|
|
9187
9229
|
<li class="md-nav__item">
|
|
9188
|
-
<a href="#
|
|
9230
|
+
<a href="#removed-in-v211" class="md-nav__link">
|
|
9189
9231
|
<span class="md-ellipsis">
|
|
9190
|
-
Removed
|
|
9232
|
+
Removed in v2.1.1
|
|
9191
9233
|
</span>
|
|
9192
9234
|
</a>
|
|
9193
9235
|
|
|
9194
9236
|
</li>
|
|
9195
9237
|
|
|
9196
9238
|
<li class="md-nav__item">
|
|
9197
|
-
<a href="#
|
|
9239
|
+
<a href="#fixed-in-v211" class="md-nav__link">
|
|
9198
9240
|
<span class="md-ellipsis">
|
|
9199
|
-
Fixed
|
|
9241
|
+
Fixed in v2.1.1
|
|
9200
9242
|
</span>
|
|
9201
9243
|
</a>
|
|
9202
9244
|
|
|
9203
9245
|
</li>
|
|
9204
9246
|
|
|
9205
9247
|
<li class="md-nav__item">
|
|
9206
|
-
<a href="#
|
|
9248
|
+
<a href="#documentation-in-v211" class="md-nav__link">
|
|
9207
9249
|
<span class="md-ellipsis">
|
|
9208
|
-
Documentation
|
|
9250
|
+
Documentation in v2.1.1
|
|
9209
9251
|
</span>
|
|
9210
9252
|
</a>
|
|
9211
9253
|
|
|
9212
9254
|
</li>
|
|
9213
9255
|
|
|
9214
9256
|
<li class="md-nav__item">
|
|
9215
|
-
<a href="#
|
|
9257
|
+
<a href="#housekeeping-in-v211" class="md-nav__link">
|
|
9216
9258
|
<span class="md-ellipsis">
|
|
9217
|
-
Housekeeping
|
|
9259
|
+
Housekeeping in v2.1.1
|
|
9218
9260
|
</span>
|
|
9219
9261
|
</a>
|
|
9220
9262
|
|
|
@@ -9236,63 +9278,63 @@
|
|
|
9236
9278
|
<ul class="md-nav__list">
|
|
9237
9279
|
|
|
9238
9280
|
<li class="md-nav__item">
|
|
9239
|
-
<a href="#
|
|
9281
|
+
<a href="#security-in-v210" class="md-nav__link">
|
|
9240
9282
|
<span class="md-ellipsis">
|
|
9241
|
-
Security
|
|
9283
|
+
Security in v2.1.0
|
|
9242
9284
|
</span>
|
|
9243
9285
|
</a>
|
|
9244
9286
|
|
|
9245
9287
|
</li>
|
|
9246
9288
|
|
|
9247
9289
|
<li class="md-nav__item">
|
|
9248
|
-
<a href="#
|
|
9290
|
+
<a href="#added-in-v210" class="md-nav__link">
|
|
9249
9291
|
<span class="md-ellipsis">
|
|
9250
|
-
Added
|
|
9292
|
+
Added in v2.1.0
|
|
9251
9293
|
</span>
|
|
9252
9294
|
</a>
|
|
9253
9295
|
|
|
9254
9296
|
</li>
|
|
9255
9297
|
|
|
9256
9298
|
<li class="md-nav__item">
|
|
9257
|
-
<a href="#
|
|
9299
|
+
<a href="#changed-in-v210" class="md-nav__link">
|
|
9258
9300
|
<span class="md-ellipsis">
|
|
9259
|
-
Changed
|
|
9301
|
+
Changed in v2.1.0
|
|
9260
9302
|
</span>
|
|
9261
9303
|
</a>
|
|
9262
9304
|
|
|
9263
9305
|
</li>
|
|
9264
9306
|
|
|
9265
9307
|
<li class="md-nav__item">
|
|
9266
|
-
<a href="#
|
|
9308
|
+
<a href="#removed-in-v210" class="md-nav__link">
|
|
9267
9309
|
<span class="md-ellipsis">
|
|
9268
|
-
Removed
|
|
9310
|
+
Removed in v2.1.0
|
|
9269
9311
|
</span>
|
|
9270
9312
|
</a>
|
|
9271
9313
|
|
|
9272
9314
|
</li>
|
|
9273
9315
|
|
|
9274
9316
|
<li class="md-nav__item">
|
|
9275
|
-
<a href="#
|
|
9317
|
+
<a href="#fixed-in-v210" class="md-nav__link">
|
|
9276
9318
|
<span class="md-ellipsis">
|
|
9277
|
-
Fixed
|
|
9319
|
+
Fixed in v2.1.0
|
|
9278
9320
|
</span>
|
|
9279
9321
|
</a>
|
|
9280
9322
|
|
|
9281
9323
|
</li>
|
|
9282
9324
|
|
|
9283
9325
|
<li class="md-nav__item">
|
|
9284
|
-
<a href="#
|
|
9326
|
+
<a href="#documentation-in-v210" class="md-nav__link">
|
|
9285
9327
|
<span class="md-ellipsis">
|
|
9286
|
-
Documentation
|
|
9328
|
+
Documentation in v2.1.0
|
|
9287
9329
|
</span>
|
|
9288
9330
|
</a>
|
|
9289
9331
|
|
|
9290
9332
|
</li>
|
|
9291
9333
|
|
|
9292
9334
|
<li class="md-nav__item">
|
|
9293
|
-
<a href="#
|
|
9335
|
+
<a href="#housekeeping-in-v210" class="md-nav__link">
|
|
9294
9336
|
<span class="md-ellipsis">
|
|
9295
|
-
Housekeeping
|
|
9337
|
+
Housekeeping in v2.1.0
|
|
9296
9338
|
</span>
|
|
9297
9339
|
</a>
|
|
9298
9340
|
|
|
@@ -9314,45 +9356,45 @@
|
|
|
9314
9356
|
<ul class="md-nav__list">
|
|
9315
9357
|
|
|
9316
9358
|
<li class="md-nav__item">
|
|
9317
|
-
<a href="#
|
|
9359
|
+
<a href="#added-in-v210-beta1" class="md-nav__link">
|
|
9318
9360
|
<span class="md-ellipsis">
|
|
9319
|
-
Added
|
|
9361
|
+
Added in v2.1.0-beta.1
|
|
9320
9362
|
</span>
|
|
9321
9363
|
</a>
|
|
9322
9364
|
|
|
9323
9365
|
</li>
|
|
9324
9366
|
|
|
9325
9367
|
<li class="md-nav__item">
|
|
9326
|
-
<a href="#
|
|
9368
|
+
<a href="#changed-in-v210-beta1" class="md-nav__link">
|
|
9327
9369
|
<span class="md-ellipsis">
|
|
9328
|
-
Changed
|
|
9370
|
+
Changed in v2.1.0-beta.1
|
|
9329
9371
|
</span>
|
|
9330
9372
|
</a>
|
|
9331
9373
|
|
|
9332
9374
|
</li>
|
|
9333
9375
|
|
|
9334
9376
|
<li class="md-nav__item">
|
|
9335
|
-
<a href="#
|
|
9377
|
+
<a href="#removed-in-v210-beta1" class="md-nav__link">
|
|
9336
9378
|
<span class="md-ellipsis">
|
|
9337
|
-
Removed
|
|
9379
|
+
Removed in v2.1.0-beta.1
|
|
9338
9380
|
</span>
|
|
9339
9381
|
</a>
|
|
9340
9382
|
|
|
9341
9383
|
</li>
|
|
9342
9384
|
|
|
9343
9385
|
<li class="md-nav__item">
|
|
9344
|
-
<a href="#
|
|
9386
|
+
<a href="#fixed-in-v210-beta1" class="md-nav__link">
|
|
9345
9387
|
<span class="md-ellipsis">
|
|
9346
|
-
Fixed
|
|
9388
|
+
Fixed in v2.1.0-beta.1
|
|
9347
9389
|
</span>
|
|
9348
9390
|
</a>
|
|
9349
9391
|
|
|
9350
9392
|
</li>
|
|
9351
9393
|
|
|
9352
9394
|
<li class="md-nav__item">
|
|
9353
|
-
<a href="#
|
|
9395
|
+
<a href="#housekeeping-in-v210-beta1" class="md-nav__link">
|
|
9354
9396
|
<span class="md-ellipsis">
|
|
9355
|
-
Housekeeping
|
|
9397
|
+
Housekeeping in v2.1.0-beta.1
|
|
9356
9398
|
</span>
|
|
9357
9399
|
</a>
|
|
9358
9400
|
|
|
@@ -10063,72 +10105,72 @@
|
|
|
10063
10105
|
<ul class="md-nav__list">
|
|
10064
10106
|
|
|
10065
10107
|
<li class="md-nav__item">
|
|
10066
|
-
<a href="#security" class="md-nav__link">
|
|
10108
|
+
<a href="#security-in-v219" class="md-nav__link">
|
|
10067
10109
|
<span class="md-ellipsis">
|
|
10068
|
-
Security
|
|
10110
|
+
Security in v2.1.9
|
|
10069
10111
|
</span>
|
|
10070
10112
|
</a>
|
|
10071
10113
|
|
|
10072
10114
|
</li>
|
|
10073
10115
|
|
|
10074
10116
|
<li class="md-nav__item">
|
|
10075
|
-
<a href="#
|
|
10117
|
+
<a href="#added-in-v219" class="md-nav__link">
|
|
10076
10118
|
<span class="md-ellipsis">
|
|
10077
|
-
Added
|
|
10119
|
+
Added in v2.1.9
|
|
10078
10120
|
</span>
|
|
10079
10121
|
</a>
|
|
10080
10122
|
|
|
10081
10123
|
</li>
|
|
10082
10124
|
|
|
10083
10125
|
<li class="md-nav__item">
|
|
10084
|
-
<a href="#
|
|
10126
|
+
<a href="#changed-in-v219" class="md-nav__link">
|
|
10085
10127
|
<span class="md-ellipsis">
|
|
10086
|
-
Changed
|
|
10128
|
+
Changed in v2.1.9
|
|
10087
10129
|
</span>
|
|
10088
10130
|
</a>
|
|
10089
10131
|
|
|
10090
10132
|
</li>
|
|
10091
10133
|
|
|
10092
10134
|
<li class="md-nav__item">
|
|
10093
|
-
<a href="#
|
|
10135
|
+
<a href="#removed-in-v219" class="md-nav__link">
|
|
10094
10136
|
<span class="md-ellipsis">
|
|
10095
|
-
Removed
|
|
10137
|
+
Removed in v2.1.9
|
|
10096
10138
|
</span>
|
|
10097
10139
|
</a>
|
|
10098
10140
|
|
|
10099
10141
|
</li>
|
|
10100
10142
|
|
|
10101
10143
|
<li class="md-nav__item">
|
|
10102
|
-
<a href="#fixed" class="md-nav__link">
|
|
10144
|
+
<a href="#fixed-in-v219" class="md-nav__link">
|
|
10103
10145
|
<span class="md-ellipsis">
|
|
10104
|
-
Fixed
|
|
10146
|
+
Fixed in v2.1.9
|
|
10105
10147
|
</span>
|
|
10106
10148
|
</a>
|
|
10107
10149
|
|
|
10108
10150
|
</li>
|
|
10109
10151
|
|
|
10110
10152
|
<li class="md-nav__item">
|
|
10111
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10153
|
+
<a href="#dependencies-in-v219" class="md-nav__link">
|
|
10112
10154
|
<span class="md-ellipsis">
|
|
10113
|
-
Dependencies
|
|
10155
|
+
Dependencies in v2.1.9
|
|
10114
10156
|
</span>
|
|
10115
10157
|
</a>
|
|
10116
10158
|
|
|
10117
10159
|
</li>
|
|
10118
10160
|
|
|
10119
10161
|
<li class="md-nav__item">
|
|
10120
|
-
<a href="#documentation" class="md-nav__link">
|
|
10162
|
+
<a href="#documentation-in-v219" class="md-nav__link">
|
|
10121
10163
|
<span class="md-ellipsis">
|
|
10122
|
-
Documentation
|
|
10164
|
+
Documentation in v2.1.9
|
|
10123
10165
|
</span>
|
|
10124
10166
|
</a>
|
|
10125
10167
|
|
|
10126
10168
|
</li>
|
|
10127
10169
|
|
|
10128
10170
|
<li class="md-nav__item">
|
|
10129
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10171
|
+
<a href="#housekeeping-in-v219" class="md-nav__link">
|
|
10130
10172
|
<span class="md-ellipsis">
|
|
10131
|
-
Housekeeping
|
|
10173
|
+
Housekeeping in v2.1.9
|
|
10132
10174
|
</span>
|
|
10133
10175
|
</a>
|
|
10134
10176
|
|
|
@@ -10150,54 +10192,54 @@
|
|
|
10150
10192
|
<ul class="md-nav__list">
|
|
10151
10193
|
|
|
10152
10194
|
<li class="md-nav__item">
|
|
10153
|
-
<a href="#
|
|
10195
|
+
<a href="#added-in-v218" class="md-nav__link">
|
|
10154
10196
|
<span class="md-ellipsis">
|
|
10155
|
-
Added
|
|
10197
|
+
Added in v2.1.8
|
|
10156
10198
|
</span>
|
|
10157
10199
|
</a>
|
|
10158
10200
|
|
|
10159
10201
|
</li>
|
|
10160
10202
|
|
|
10161
10203
|
<li class="md-nav__item">
|
|
10162
|
-
<a href="#
|
|
10204
|
+
<a href="#changed-in-v218" class="md-nav__link">
|
|
10163
10205
|
<span class="md-ellipsis">
|
|
10164
|
-
Changed
|
|
10206
|
+
Changed in v2.1.8
|
|
10165
10207
|
</span>
|
|
10166
10208
|
</a>
|
|
10167
10209
|
|
|
10168
10210
|
</li>
|
|
10169
10211
|
|
|
10170
10212
|
<li class="md-nav__item">
|
|
10171
|
-
<a href="#
|
|
10213
|
+
<a href="#removed-in-v218" class="md-nav__link">
|
|
10172
10214
|
<span class="md-ellipsis">
|
|
10173
|
-
Removed
|
|
10215
|
+
Removed in v2.1.8
|
|
10174
10216
|
</span>
|
|
10175
10217
|
</a>
|
|
10176
10218
|
|
|
10177
10219
|
</li>
|
|
10178
10220
|
|
|
10179
10221
|
<li class="md-nav__item">
|
|
10180
|
-
<a href="#
|
|
10222
|
+
<a href="#fixed-in-v218" class="md-nav__link">
|
|
10181
10223
|
<span class="md-ellipsis">
|
|
10182
|
-
Fixed
|
|
10224
|
+
Fixed in v2.1.8
|
|
10183
10225
|
</span>
|
|
10184
10226
|
</a>
|
|
10185
10227
|
|
|
10186
10228
|
</li>
|
|
10187
10229
|
|
|
10188
10230
|
<li class="md-nav__item">
|
|
10189
|
-
<a href="#
|
|
10231
|
+
<a href="#documentation-in-v218" class="md-nav__link">
|
|
10190
10232
|
<span class="md-ellipsis">
|
|
10191
|
-
Documentation
|
|
10233
|
+
Documentation in v2.1.8
|
|
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="#housekeeping-in-v218" class="md-nav__link">
|
|
10199
10241
|
<span class="md-ellipsis">
|
|
10200
|
-
Housekeeping
|
|
10242
|
+
Housekeeping in v2.1.8
|
|
10201
10243
|
</span>
|
|
10202
10244
|
</a>
|
|
10203
10245
|
|
|
@@ -10219,9 +10261,9 @@
|
|
|
10219
10261
|
<ul class="md-nav__list">
|
|
10220
10262
|
|
|
10221
10263
|
<li class="md-nav__item">
|
|
10222
|
-
<a href="#
|
|
10264
|
+
<a href="#fixed-in-v217" class="md-nav__link">
|
|
10223
10265
|
<span class="md-ellipsis">
|
|
10224
|
-
Fixed
|
|
10266
|
+
Fixed in v2.1.7
|
|
10225
10267
|
</span>
|
|
10226
10268
|
</a>
|
|
10227
10269
|
|
|
@@ -10243,45 +10285,45 @@
|
|
|
10243
10285
|
<ul class="md-nav__list">
|
|
10244
10286
|
|
|
10245
10287
|
<li class="md-nav__item">
|
|
10246
|
-
<a href="#
|
|
10288
|
+
<a href="#security-in-v216" class="md-nav__link">
|
|
10247
10289
|
<span class="md-ellipsis">
|
|
10248
|
-
Security
|
|
10290
|
+
Security in v2.1.6
|
|
10249
10291
|
</span>
|
|
10250
10292
|
</a>
|
|
10251
10293
|
|
|
10252
10294
|
</li>
|
|
10253
10295
|
|
|
10254
10296
|
<li class="md-nav__item">
|
|
10255
|
-
<a href="#
|
|
10297
|
+
<a href="#added-in-v216" class="md-nav__link">
|
|
10256
10298
|
<span class="md-ellipsis">
|
|
10257
|
-
Added
|
|
10299
|
+
Added in v2.1.6
|
|
10258
10300
|
</span>
|
|
10259
10301
|
</a>
|
|
10260
10302
|
|
|
10261
10303
|
</li>
|
|
10262
10304
|
|
|
10263
10305
|
<li class="md-nav__item">
|
|
10264
|
-
<a href="#
|
|
10306
|
+
<a href="#changed-in-v216" class="md-nav__link">
|
|
10265
10307
|
<span class="md-ellipsis">
|
|
10266
|
-
Changed
|
|
10308
|
+
Changed in v2.1.6
|
|
10267
10309
|
</span>
|
|
10268
10310
|
</a>
|
|
10269
10311
|
|
|
10270
10312
|
</li>
|
|
10271
10313
|
|
|
10272
10314
|
<li class="md-nav__item">
|
|
10273
|
-
<a href="#
|
|
10315
|
+
<a href="#fixed-in-v216" class="md-nav__link">
|
|
10274
10316
|
<span class="md-ellipsis">
|
|
10275
|
-
Fixed
|
|
10317
|
+
Fixed in v2.1.6
|
|
10276
10318
|
</span>
|
|
10277
10319
|
</a>
|
|
10278
10320
|
|
|
10279
10321
|
</li>
|
|
10280
10322
|
|
|
10281
10323
|
<li class="md-nav__item">
|
|
10282
|
-
<a href="#
|
|
10324
|
+
<a href="#documentation-in-v216" class="md-nav__link">
|
|
10283
10325
|
<span class="md-ellipsis">
|
|
10284
|
-
Documentation
|
|
10326
|
+
Documentation in v2.1.6
|
|
10285
10327
|
</span>
|
|
10286
10328
|
</a>
|
|
10287
10329
|
|
|
@@ -10303,54 +10345,54 @@
|
|
|
10303
10345
|
<ul class="md-nav__list">
|
|
10304
10346
|
|
|
10305
10347
|
<li class="md-nav__item">
|
|
10306
|
-
<a href="#
|
|
10348
|
+
<a href="#security-in-v215" class="md-nav__link">
|
|
10307
10349
|
<span class="md-ellipsis">
|
|
10308
|
-
Security
|
|
10350
|
+
Security in v2.1.5
|
|
10309
10351
|
</span>
|
|
10310
10352
|
</a>
|
|
10311
10353
|
|
|
10312
10354
|
</li>
|
|
10313
10355
|
|
|
10314
10356
|
<li class="md-nav__item">
|
|
10315
|
-
<a href="#
|
|
10357
|
+
<a href="#added-in-v215" class="md-nav__link">
|
|
10316
10358
|
<span class="md-ellipsis">
|
|
10317
|
-
Added
|
|
10359
|
+
Added in v2.1.5
|
|
10318
10360
|
</span>
|
|
10319
10361
|
</a>
|
|
10320
10362
|
|
|
10321
10363
|
</li>
|
|
10322
10364
|
|
|
10323
10365
|
<li class="md-nav__item">
|
|
10324
|
-
<a href="#
|
|
10366
|
+
<a href="#changed-in-v215" class="md-nav__link">
|
|
10325
10367
|
<span class="md-ellipsis">
|
|
10326
|
-
Changed
|
|
10368
|
+
Changed in v2.1.5
|
|
10327
10369
|
</span>
|
|
10328
10370
|
</a>
|
|
10329
10371
|
|
|
10330
10372
|
</li>
|
|
10331
10373
|
|
|
10332
10374
|
<li class="md-nav__item">
|
|
10333
|
-
<a href="#
|
|
10375
|
+
<a href="#fixed-in-v215" class="md-nav__link">
|
|
10334
10376
|
<span class="md-ellipsis">
|
|
10335
|
-
Fixed
|
|
10377
|
+
Fixed in v2.1.5
|
|
10336
10378
|
</span>
|
|
10337
10379
|
</a>
|
|
10338
10380
|
|
|
10339
10381
|
</li>
|
|
10340
10382
|
|
|
10341
10383
|
<li class="md-nav__item">
|
|
10342
|
-
<a href="#
|
|
10384
|
+
<a href="#documentation-in-v215" class="md-nav__link">
|
|
10343
10385
|
<span class="md-ellipsis">
|
|
10344
|
-
Documentation
|
|
10386
|
+
Documentation in v2.1.5
|
|
10345
10387
|
</span>
|
|
10346
10388
|
</a>
|
|
10347
10389
|
|
|
10348
10390
|
</li>
|
|
10349
10391
|
|
|
10350
10392
|
<li class="md-nav__item">
|
|
10351
|
-
<a href="#
|
|
10393
|
+
<a href="#housekeeping-in-v215" class="md-nav__link">
|
|
10352
10394
|
<span class="md-ellipsis">
|
|
10353
|
-
Housekeeping
|
|
10395
|
+
Housekeeping in v2.1.5
|
|
10354
10396
|
</span>
|
|
10355
10397
|
</a>
|
|
10356
10398
|
|
|
@@ -10372,36 +10414,36 @@
|
|
|
10372
10414
|
<ul class="md-nav__list">
|
|
10373
10415
|
|
|
10374
10416
|
<li class="md-nav__item">
|
|
10375
|
-
<a href="#
|
|
10417
|
+
<a href="#security-in-v214" class="md-nav__link">
|
|
10376
10418
|
<span class="md-ellipsis">
|
|
10377
|
-
Security
|
|
10419
|
+
Security in v2.1.4
|
|
10378
10420
|
</span>
|
|
10379
10421
|
</a>
|
|
10380
10422
|
|
|
10381
10423
|
</li>
|
|
10382
10424
|
|
|
10383
10425
|
<li class="md-nav__item">
|
|
10384
|
-
<a href="#
|
|
10426
|
+
<a href="#fixed-in-v214" class="md-nav__link">
|
|
10385
10427
|
<span class="md-ellipsis">
|
|
10386
|
-
Fixed
|
|
10428
|
+
Fixed in v2.1.4
|
|
10387
10429
|
</span>
|
|
10388
10430
|
</a>
|
|
10389
10431
|
|
|
10390
10432
|
</li>
|
|
10391
10433
|
|
|
10392
10434
|
<li class="md-nav__item">
|
|
10393
|
-
<a href="#
|
|
10435
|
+
<a href="#documentation-in-v214" class="md-nav__link">
|
|
10394
10436
|
<span class="md-ellipsis">
|
|
10395
|
-
Documentation
|
|
10437
|
+
Documentation in v2.1.4
|
|
10396
10438
|
</span>
|
|
10397
10439
|
</a>
|
|
10398
10440
|
|
|
10399
10441
|
</li>
|
|
10400
10442
|
|
|
10401
10443
|
<li class="md-nav__item">
|
|
10402
|
-
<a href="#
|
|
10444
|
+
<a href="#housekeeping-in-v214" class="md-nav__link">
|
|
10403
10445
|
<span class="md-ellipsis">
|
|
10404
|
-
Housekeeping
|
|
10446
|
+
Housekeeping in v2.1.4
|
|
10405
10447
|
</span>
|
|
10406
10448
|
</a>
|
|
10407
10449
|
|
|
@@ -10423,63 +10465,63 @@
|
|
|
10423
10465
|
<ul class="md-nav__list">
|
|
10424
10466
|
|
|
10425
10467
|
<li class="md-nav__item">
|
|
10426
|
-
<a href="#
|
|
10468
|
+
<a href="#security-in-v213" class="md-nav__link">
|
|
10427
10469
|
<span class="md-ellipsis">
|
|
10428
|
-
Security
|
|
10470
|
+
Security in v2.1.3
|
|
10429
10471
|
</span>
|
|
10430
10472
|
</a>
|
|
10431
10473
|
|
|
10432
10474
|
</li>
|
|
10433
10475
|
|
|
10434
10476
|
<li class="md-nav__item">
|
|
10435
|
-
<a href="#
|
|
10477
|
+
<a href="#added-in-v213" class="md-nav__link">
|
|
10436
10478
|
<span class="md-ellipsis">
|
|
10437
|
-
Added
|
|
10479
|
+
Added in v2.1.3
|
|
10438
10480
|
</span>
|
|
10439
10481
|
</a>
|
|
10440
10482
|
|
|
10441
10483
|
</li>
|
|
10442
10484
|
|
|
10443
10485
|
<li class="md-nav__item">
|
|
10444
|
-
<a href="#
|
|
10486
|
+
<a href="#changed-in-v213" class="md-nav__link">
|
|
10445
10487
|
<span class="md-ellipsis">
|
|
10446
|
-
Changed
|
|
10488
|
+
Changed in v2.1.3
|
|
10447
10489
|
</span>
|
|
10448
10490
|
</a>
|
|
10449
10491
|
|
|
10450
10492
|
</li>
|
|
10451
10493
|
|
|
10452
10494
|
<li class="md-nav__item">
|
|
10453
|
-
<a href="#
|
|
10495
|
+
<a href="#removed-in-v213" class="md-nav__link">
|
|
10454
10496
|
<span class="md-ellipsis">
|
|
10455
|
-
Removed
|
|
10497
|
+
Removed in v2.1.3
|
|
10456
10498
|
</span>
|
|
10457
10499
|
</a>
|
|
10458
10500
|
|
|
10459
10501
|
</li>
|
|
10460
10502
|
|
|
10461
10503
|
<li class="md-nav__item">
|
|
10462
|
-
<a href="#
|
|
10504
|
+
<a href="#fixed-in-v213" class="md-nav__link">
|
|
10463
10505
|
<span class="md-ellipsis">
|
|
10464
|
-
Fixed
|
|
10506
|
+
Fixed in v2.1.3
|
|
10465
10507
|
</span>
|
|
10466
10508
|
</a>
|
|
10467
10509
|
|
|
10468
10510
|
</li>
|
|
10469
10511
|
|
|
10470
10512
|
<li class="md-nav__item">
|
|
10471
|
-
<a href="#
|
|
10513
|
+
<a href="#dependencies-in-v213" class="md-nav__link">
|
|
10472
10514
|
<span class="md-ellipsis">
|
|
10473
|
-
Dependencies
|
|
10515
|
+
Dependencies in v2.1.3
|
|
10474
10516
|
</span>
|
|
10475
10517
|
</a>
|
|
10476
10518
|
|
|
10477
10519
|
</li>
|
|
10478
10520
|
|
|
10479
10521
|
<li class="md-nav__item">
|
|
10480
|
-
<a href="#
|
|
10522
|
+
<a href="#housekeeping-in-v213" class="md-nav__link">
|
|
10481
10523
|
<span class="md-ellipsis">
|
|
10482
|
-
Housekeeping
|
|
10524
|
+
Housekeeping in v2.1.3
|
|
10483
10525
|
</span>
|
|
10484
10526
|
</a>
|
|
10485
10527
|
|
|
@@ -10501,72 +10543,72 @@
|
|
|
10501
10543
|
<ul class="md-nav__list">
|
|
10502
10544
|
|
|
10503
10545
|
<li class="md-nav__item">
|
|
10504
|
-
<a href="#
|
|
10546
|
+
<a href="#security-in-v212" class="md-nav__link">
|
|
10505
10547
|
<span class="md-ellipsis">
|
|
10506
|
-
Security
|
|
10548
|
+
Security in v2.1.2
|
|
10507
10549
|
</span>
|
|
10508
10550
|
</a>
|
|
10509
10551
|
|
|
10510
10552
|
</li>
|
|
10511
10553
|
|
|
10512
10554
|
<li class="md-nav__item">
|
|
10513
|
-
<a href="#
|
|
10555
|
+
<a href="#added-in-v212" class="md-nav__link">
|
|
10514
10556
|
<span class="md-ellipsis">
|
|
10515
|
-
Added
|
|
10557
|
+
Added in v2.1.2
|
|
10516
10558
|
</span>
|
|
10517
10559
|
</a>
|
|
10518
10560
|
|
|
10519
10561
|
</li>
|
|
10520
10562
|
|
|
10521
10563
|
<li class="md-nav__item">
|
|
10522
|
-
<a href="#
|
|
10564
|
+
<a href="#changed-in-v212" class="md-nav__link">
|
|
10523
10565
|
<span class="md-ellipsis">
|
|
10524
|
-
Changed
|
|
10566
|
+
Changed in v2.1.2
|
|
10525
10567
|
</span>
|
|
10526
10568
|
</a>
|
|
10527
10569
|
|
|
10528
10570
|
</li>
|
|
10529
10571
|
|
|
10530
10572
|
<li class="md-nav__item">
|
|
10531
|
-
<a href="#
|
|
10573
|
+
<a href="#removed-in-v212" class="md-nav__link">
|
|
10532
10574
|
<span class="md-ellipsis">
|
|
10533
|
-
Removed
|
|
10575
|
+
Removed in v2.1.2
|
|
10534
10576
|
</span>
|
|
10535
10577
|
</a>
|
|
10536
10578
|
|
|
10537
10579
|
</li>
|
|
10538
10580
|
|
|
10539
10581
|
<li class="md-nav__item">
|
|
10540
|
-
<a href="#
|
|
10582
|
+
<a href="#fixed-in-v212" class="md-nav__link">
|
|
10541
10583
|
<span class="md-ellipsis">
|
|
10542
|
-
Fixed
|
|
10584
|
+
Fixed in v2.1.2
|
|
10543
10585
|
</span>
|
|
10544
10586
|
</a>
|
|
10545
10587
|
|
|
10546
10588
|
</li>
|
|
10547
10589
|
|
|
10548
10590
|
<li class="md-nav__item">
|
|
10549
|
-
<a href="#
|
|
10591
|
+
<a href="#dependencies-in-v212" class="md-nav__link">
|
|
10550
10592
|
<span class="md-ellipsis">
|
|
10551
|
-
Dependencies
|
|
10593
|
+
Dependencies in v2.1.2
|
|
10552
10594
|
</span>
|
|
10553
10595
|
</a>
|
|
10554
10596
|
|
|
10555
10597
|
</li>
|
|
10556
10598
|
|
|
10557
10599
|
<li class="md-nav__item">
|
|
10558
|
-
<a href="#
|
|
10600
|
+
<a href="#documentation-in-v212" class="md-nav__link">
|
|
10559
10601
|
<span class="md-ellipsis">
|
|
10560
|
-
Documentation
|
|
10602
|
+
Documentation in v2.1.2
|
|
10561
10603
|
</span>
|
|
10562
10604
|
</a>
|
|
10563
10605
|
|
|
10564
10606
|
</li>
|
|
10565
10607
|
|
|
10566
10608
|
<li class="md-nav__item">
|
|
10567
|
-
<a href="#
|
|
10609
|
+
<a href="#housekeeping-in-v212" class="md-nav__link">
|
|
10568
10610
|
<span class="md-ellipsis">
|
|
10569
|
-
Housekeeping
|
|
10611
|
+
Housekeeping in v2.1.2
|
|
10570
10612
|
</span>
|
|
10571
10613
|
</a>
|
|
10572
10614
|
|
|
@@ -10588,54 +10630,54 @@
|
|
|
10588
10630
|
<ul class="md-nav__list">
|
|
10589
10631
|
|
|
10590
10632
|
<li class="md-nav__item">
|
|
10591
|
-
<a href="#
|
|
10633
|
+
<a href="#added-in-v211" class="md-nav__link">
|
|
10592
10634
|
<span class="md-ellipsis">
|
|
10593
|
-
Added
|
|
10635
|
+
Added in v2.1.1
|
|
10594
10636
|
</span>
|
|
10595
10637
|
</a>
|
|
10596
10638
|
|
|
10597
10639
|
</li>
|
|
10598
10640
|
|
|
10599
10641
|
<li class="md-nav__item">
|
|
10600
|
-
<a href="#
|
|
10642
|
+
<a href="#changed-in-v211" class="md-nav__link">
|
|
10601
10643
|
<span class="md-ellipsis">
|
|
10602
|
-
Changed
|
|
10644
|
+
Changed in v2.1.1
|
|
10603
10645
|
</span>
|
|
10604
10646
|
</a>
|
|
10605
10647
|
|
|
10606
10648
|
</li>
|
|
10607
10649
|
|
|
10608
10650
|
<li class="md-nav__item">
|
|
10609
|
-
<a href="#
|
|
10651
|
+
<a href="#removed-in-v211" class="md-nav__link">
|
|
10610
10652
|
<span class="md-ellipsis">
|
|
10611
|
-
Removed
|
|
10653
|
+
Removed in v2.1.1
|
|
10612
10654
|
</span>
|
|
10613
10655
|
</a>
|
|
10614
10656
|
|
|
10615
10657
|
</li>
|
|
10616
10658
|
|
|
10617
10659
|
<li class="md-nav__item">
|
|
10618
|
-
<a href="#
|
|
10660
|
+
<a href="#fixed-in-v211" class="md-nav__link">
|
|
10619
10661
|
<span class="md-ellipsis">
|
|
10620
|
-
Fixed
|
|
10662
|
+
Fixed in v2.1.1
|
|
10621
10663
|
</span>
|
|
10622
10664
|
</a>
|
|
10623
10665
|
|
|
10624
10666
|
</li>
|
|
10625
10667
|
|
|
10626
10668
|
<li class="md-nav__item">
|
|
10627
|
-
<a href="#
|
|
10669
|
+
<a href="#documentation-in-v211" class="md-nav__link">
|
|
10628
10670
|
<span class="md-ellipsis">
|
|
10629
|
-
Documentation
|
|
10671
|
+
Documentation in v2.1.1
|
|
10630
10672
|
</span>
|
|
10631
10673
|
</a>
|
|
10632
10674
|
|
|
10633
10675
|
</li>
|
|
10634
10676
|
|
|
10635
10677
|
<li class="md-nav__item">
|
|
10636
|
-
<a href="#
|
|
10678
|
+
<a href="#housekeeping-in-v211" class="md-nav__link">
|
|
10637
10679
|
<span class="md-ellipsis">
|
|
10638
|
-
Housekeeping
|
|
10680
|
+
Housekeeping in v2.1.1
|
|
10639
10681
|
</span>
|
|
10640
10682
|
</a>
|
|
10641
10683
|
|
|
@@ -10657,63 +10699,63 @@
|
|
|
10657
10699
|
<ul class="md-nav__list">
|
|
10658
10700
|
|
|
10659
10701
|
<li class="md-nav__item">
|
|
10660
|
-
<a href="#
|
|
10702
|
+
<a href="#security-in-v210" class="md-nav__link">
|
|
10661
10703
|
<span class="md-ellipsis">
|
|
10662
|
-
Security
|
|
10704
|
+
Security in v2.1.0
|
|
10663
10705
|
</span>
|
|
10664
10706
|
</a>
|
|
10665
10707
|
|
|
10666
10708
|
</li>
|
|
10667
10709
|
|
|
10668
10710
|
<li class="md-nav__item">
|
|
10669
|
-
<a href="#
|
|
10711
|
+
<a href="#added-in-v210" class="md-nav__link">
|
|
10670
10712
|
<span class="md-ellipsis">
|
|
10671
|
-
Added
|
|
10713
|
+
Added in v2.1.0
|
|
10672
10714
|
</span>
|
|
10673
10715
|
</a>
|
|
10674
10716
|
|
|
10675
10717
|
</li>
|
|
10676
10718
|
|
|
10677
10719
|
<li class="md-nav__item">
|
|
10678
|
-
<a href="#
|
|
10720
|
+
<a href="#changed-in-v210" class="md-nav__link">
|
|
10679
10721
|
<span class="md-ellipsis">
|
|
10680
|
-
Changed
|
|
10722
|
+
Changed in v2.1.0
|
|
10681
10723
|
</span>
|
|
10682
10724
|
</a>
|
|
10683
10725
|
|
|
10684
10726
|
</li>
|
|
10685
10727
|
|
|
10686
10728
|
<li class="md-nav__item">
|
|
10687
|
-
<a href="#
|
|
10729
|
+
<a href="#removed-in-v210" class="md-nav__link">
|
|
10688
10730
|
<span class="md-ellipsis">
|
|
10689
|
-
Removed
|
|
10731
|
+
Removed in v2.1.0
|
|
10690
10732
|
</span>
|
|
10691
10733
|
</a>
|
|
10692
10734
|
|
|
10693
10735
|
</li>
|
|
10694
10736
|
|
|
10695
10737
|
<li class="md-nav__item">
|
|
10696
|
-
<a href="#
|
|
10738
|
+
<a href="#fixed-in-v210" class="md-nav__link">
|
|
10697
10739
|
<span class="md-ellipsis">
|
|
10698
|
-
Fixed
|
|
10740
|
+
Fixed in v2.1.0
|
|
10699
10741
|
</span>
|
|
10700
10742
|
</a>
|
|
10701
10743
|
|
|
10702
10744
|
</li>
|
|
10703
10745
|
|
|
10704
10746
|
<li class="md-nav__item">
|
|
10705
|
-
<a href="#
|
|
10747
|
+
<a href="#documentation-in-v210" class="md-nav__link">
|
|
10706
10748
|
<span class="md-ellipsis">
|
|
10707
|
-
Documentation
|
|
10749
|
+
Documentation in v2.1.0
|
|
10708
10750
|
</span>
|
|
10709
10751
|
</a>
|
|
10710
10752
|
|
|
10711
10753
|
</li>
|
|
10712
10754
|
|
|
10713
10755
|
<li class="md-nav__item">
|
|
10714
|
-
<a href="#
|
|
10756
|
+
<a href="#housekeeping-in-v210" class="md-nav__link">
|
|
10715
10757
|
<span class="md-ellipsis">
|
|
10716
|
-
Housekeeping
|
|
10758
|
+
Housekeeping in v2.1.0
|
|
10717
10759
|
</span>
|
|
10718
10760
|
</a>
|
|
10719
10761
|
|
|
@@ -10735,45 +10777,45 @@
|
|
|
10735
10777
|
<ul class="md-nav__list">
|
|
10736
10778
|
|
|
10737
10779
|
<li class="md-nav__item">
|
|
10738
|
-
<a href="#
|
|
10780
|
+
<a href="#added-in-v210-beta1" class="md-nav__link">
|
|
10739
10781
|
<span class="md-ellipsis">
|
|
10740
|
-
Added
|
|
10782
|
+
Added in v2.1.0-beta.1
|
|
10741
10783
|
</span>
|
|
10742
10784
|
</a>
|
|
10743
10785
|
|
|
10744
10786
|
</li>
|
|
10745
10787
|
|
|
10746
10788
|
<li class="md-nav__item">
|
|
10747
|
-
<a href="#
|
|
10789
|
+
<a href="#changed-in-v210-beta1" class="md-nav__link">
|
|
10748
10790
|
<span class="md-ellipsis">
|
|
10749
|
-
Changed
|
|
10791
|
+
Changed in v2.1.0-beta.1
|
|
10750
10792
|
</span>
|
|
10751
10793
|
</a>
|
|
10752
10794
|
|
|
10753
10795
|
</li>
|
|
10754
10796
|
|
|
10755
10797
|
<li class="md-nav__item">
|
|
10756
|
-
<a href="#
|
|
10798
|
+
<a href="#removed-in-v210-beta1" class="md-nav__link">
|
|
10757
10799
|
<span class="md-ellipsis">
|
|
10758
|
-
Removed
|
|
10800
|
+
Removed in v2.1.0-beta.1
|
|
10759
10801
|
</span>
|
|
10760
10802
|
</a>
|
|
10761
10803
|
|
|
10762
10804
|
</li>
|
|
10763
10805
|
|
|
10764
10806
|
<li class="md-nav__item">
|
|
10765
|
-
<a href="#
|
|
10807
|
+
<a href="#fixed-in-v210-beta1" class="md-nav__link">
|
|
10766
10808
|
<span class="md-ellipsis">
|
|
10767
|
-
Fixed
|
|
10809
|
+
Fixed in v2.1.0-beta.1
|
|
10768
10810
|
</span>
|
|
10769
10811
|
</a>
|
|
10770
10812
|
|
|
10771
10813
|
</li>
|
|
10772
10814
|
|
|
10773
10815
|
<li class="md-nav__item">
|
|
10774
|
-
<a href="#
|
|
10816
|
+
<a href="#housekeeping-in-v210-beta1" class="md-nav__link">
|
|
10775
10817
|
<span class="md-ellipsis">
|
|
10776
|
-
Housekeeping
|
|
10818
|
+
Housekeeping in v2.1.0-beta.1
|
|
10777
10819
|
</span>
|
|
10778
10820
|
</a>
|
|
10779
10821
|
|
|
@@ -10802,8 +10844,6 @@
|
|
|
10802
10844
|
|
|
10803
10845
|
|
|
10804
10846
|
|
|
10805
|
-
<!-- markdownlint-disable MD024 -->
|
|
10806
|
-
|
|
10807
10847
|
<h1 id="nautobot-v21">Nautobot v2.1<a class="headerlink" href="#nautobot-v21" title="Permanent link">¶</a></h1>
|
|
10808
10848
|
<p>This document describes all new features and changes in Nautobot 2.1.</p>
|
|
10809
10849
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
@@ -10852,9 +10892,8 @@
|
|
|
10852
10892
|
<p>Support for versions of PostgreSQL prior to 12.0 has been removed as these versions are no longer maintained and contain bugs that prevent migrations from running in certain scenarios. The <code>nautobot-server migrate</code> or <code>nautobot-server post_upgrade</code> commands will now abort when detecting an unsupported PostgreSQL version.</p>
|
|
10853
10893
|
<h4 id="remove-hide_restricted_ui-toggle-4787">Remove <code>HIDE_RESTRICTED_UI</code> Toggle (<a href="https://github.com/nautobot/nautobot/issues/4787">#4787</a>)<a class="headerlink" href="#remove-hide_restricted_ui-toggle-4787" title="Permanent link">¶</a></h4>
|
|
10854
10894
|
<p>Support for <code>HIDE_RESTRICTED_UI</code> has been removed. UI elements requiring specific permissions will now always be hidden from users lacking those permissions. Additionally, users not logged in will now be automatically redirected to the login page.</p>
|
|
10855
|
-
<!-- towncrier release notes start -->
|
|
10856
10895
|
<h2 id="v219-2024-03-25">v2.1.9 (2024-03-25)<a class="headerlink" href="#v219-2024-03-25" title="Permanent link">¶</a></h2>
|
|
10857
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10896
|
+
<h3 id="security-in-v219">Security in v2.1.9<a class="headerlink" href="#security-in-v219" title="Permanent link">¶</a></h3>
|
|
10858
10897
|
<ul>
|
|
10859
10898
|
<li><a href="https://github.com/nautobot/nautobot/issues/5450">#5450</a> - Updated <code>django</code> to <code>~3.2.25</code> due to <code>CVE-2024-27351</code>.</li>
|
|
10860
10899
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the endpoint <code>/extras/job-results/<uuid:pk>/log-table/</code>; furthermore it will not allow an authenticated user to view log entries for a JobResult they don't otherwise have permission to view. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
@@ -10866,21 +10905,21 @@
|
|
|
10866
10905
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the endpoints <code>/dcim/racks/<uuid>/dynamic-groups/</code>, <code>/dcim/devices/<uuid>/dynamic-groups/</code>, <code>/ipam/prefixes/<uuid>/dynamic-groups/</code>, <code>/ipam/ip-addresses/<uuid>/dynamic-groups/</code>, <code>/virtualization/clusters/<uuid>/dynamic-groups/</code>, and <code>/virtualization/virtual-machines/<uuid>/dynamic-groups/</code>, even when <code>EXEMPT_VIEW_PERMISSIONS</code> is configured. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10867
10906
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the endpoint <code>/extras/secrets/provider/<str:provider_slug>/form/</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10868
10907
|
</ul>
|
|
10869
|
-
<h3 id="
|
|
10908
|
+
<h3 id="added-in-v219">Added in v2.1.9<a class="headerlink" href="#added-in-v219" title="Permanent link">¶</a></h3>
|
|
10870
10909
|
<ul>
|
|
10871
10910
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.utils.get_url_for_url_pattern</code> and <code>nautobot.apps.utils.get_url_patterns</code> lookup functions.</li>
|
|
10872
10911
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
|
|
10873
10912
|
</ul>
|
|
10874
|
-
<h3 id="
|
|
10913
|
+
<h3 id="changed-in-v219">Changed in v2.1.9<a class="headerlink" href="#changed-in-v219" title="Permanent link">¶</a></h3>
|
|
10875
10914
|
<ul>
|
|
10876
10915
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added support for <code>view_name</code> and <code>view_description</code> optional parameters when instantiating a <code>nautobot.apps.api.OrderedDefaultRouter</code>. Specifying these parameters is to be preferred over defining a custom <code>APIRootView</code> subclass when defining App API URLs.</li>
|
|
10877
10916
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication by default on the <code>nautobot.apps.api.APIRootView</code> class. As a consequence, viewing the browsable REST API root endpoints (e.g. <code>/api/</code>, <code>/api/circuits/</code>, <code>/api/dcim/</code>, etc.) now requires user authentication.</li>
|
|
10878
10917
|
</ul>
|
|
10879
|
-
<h3 id="
|
|
10918
|
+
<h3 id="removed-in-v219">Removed in v2.1.9<a class="headerlink" href="#removed-in-v219" title="Permanent link">¶</a></h3>
|
|
10880
10919
|
<ul>
|
|
10881
10920
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Removed the URL endpoints <code>/api/users/users/my-profile/</code>, <code>/api/users/users/session/</code>, <code>/api/users/tokens/authenticate/</code>, and <code>/api/users/tokens/logout/</code> as they are unused at this time.</li>
|
|
10882
10921
|
</ul>
|
|
10883
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10922
|
+
<h3 id="fixed-in-v219">Fixed in v2.1.9<a class="headerlink" href="#fixed-in-v219" title="Permanent link">¶</a></h3>
|
|
10884
10923
|
<ul>
|
|
10885
10924
|
<li><a href="https://github.com/nautobot/nautobot/issues/5413">#5413</a> - Updated Device "LLDP Neighbors" detail panel to handle LLDP neighbors with MAC address as port-id.</li>
|
|
10886
10925
|
<li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Fixed collapsable navbar for GraphiQL page <code>/graphql</code>.</li>
|
|
@@ -10890,16 +10929,16 @@
|
|
|
10890
10929
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Fixed a 500 error when accessing any of the <code>/dcim/<port-type>/<uuid>/connect/<termination_b_type>/</code> view endpoints with an invalid/nonexistent <code>termination_b_type</code> string.</li>
|
|
10891
10930
|
<li><a href="https://github.com/nautobot/nautobot/issues/5466">#5466</a> - Remove duplicated location param in vlan table.</li>
|
|
10892
10931
|
</ul>
|
|
10893
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
10932
|
+
<h3 id="dependencies-in-v219">Dependencies in v2.1.9<a class="headerlink" href="#dependencies-in-v219" title="Permanent link">¶</a></h3>
|
|
10894
10933
|
<ul>
|
|
10895
10934
|
<li><a href="https://github.com/nautobot/nautobot/issues/5296">#5296</a> - Fixed bug in pyproject.toml that added <code>coverage</code> as a nautobot dependency instead of a development dependency.</li>
|
|
10896
10935
|
</ul>
|
|
10897
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10936
|
+
<h3 id="documentation-in-v219">Documentation in v2.1.9<a class="headerlink" href="#documentation-in-v219" title="Permanent link">¶</a></h3>
|
|
10898
10937
|
<ul>
|
|
10899
10938
|
<li><a href="https://github.com/nautobot/nautobot/issues/5340">#5340</a> - Added installation documentation about recommended health-checks for Docker Compose and Kubernetes.</li>
|
|
10900
10939
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
|
|
10901
10940
|
</ul>
|
|
10902
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10941
|
+
<h3 id="housekeeping-in-v219">Housekeeping in v2.1.9<a class="headerlink" href="#housekeeping-in-v219" title="Permanent link">¶</a></h3>
|
|
10903
10942
|
<ul>
|
|
10904
10943
|
<li><a href="https://github.com/nautobot/nautobot/issues/1746">#1746</a> - Replaced <code>OrderedDict</code> instance in <code>nautobot/core/api/routers.py#21</code> with with a plain <code>dict</code> instance.</li>
|
|
10905
10944
|
<li><a href="https://github.com/nautobot/nautobot/issues/1746">#1746</a> - Replaced <code>OrderedDict</code> instance in <code>nautobot/dcim/models/racks.py#275</code> with a plain <code>dict</code> instance.</li>
|
|
@@ -10908,7 +10947,7 @@
|
|
|
10908
10947
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
|
|
10909
10948
|
</ul>
|
|
10910
10949
|
<h2 id="v218-2024-03-18">v2.1.8 (2024-03-18)<a class="headerlink" href="#v218-2024-03-18" title="Permanent link">¶</a></h2>
|
|
10911
|
-
<h3 id="
|
|
10950
|
+
<h3 id="added-in-v218">Added in v2.1.8<a class="headerlink" href="#added-in-v218" title="Permanent link">¶</a></h3>
|
|
10912
10951
|
<ul>
|
|
10913
10952
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
10914
10953
|
<li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Added the option to configure and enforce <code>validation_minimum</code> and <code>validation_maximum</code> as length constraints on a Custom Field of type <code>Text</code>, <code>URL</code>, <code>JSON</code>, <code>Markdown</code>, <code>Selection</code>, or <code>Multiple Selection</code>.</li>
|
|
@@ -10918,16 +10957,16 @@
|
|
|
10918
10957
|
<li><a href="https://github.com/nautobot/nautobot/issues/5402">#5402</a> - Added interface types <code>CXP (100GE)</code>, <code>DSFP (100GE)</code>, <code>SFP-DD (100GE)</code>, <code>QSFP-DD (100GE)</code>, <code>QSFP-DD (200GE)</code>, <code>CFP2 (400GE)</code>, <code>OSFP-RHS (400GE)</code>, <code>CDFP (400GE)</code>, <code>CPF8 (400GE)</code>, <code>SFP+ (32GFC)</code>, <code>SFP-DD (64GFC)</code>, and <code>SFP+ (64GFC)</code>.</li>
|
|
10919
10958
|
<li><a href="https://github.com/nautobot/nautobot/issues/5424">#5424</a> - Added <code>TemplateExtension.list_buttons()</code> API, allowing apps to register button content to be injected into object list views.</li>
|
|
10920
10959
|
</ul>
|
|
10921
|
-
<h3 id="
|
|
10960
|
+
<h3 id="changed-in-v218">Changed in v2.1.8<a class="headerlink" href="#changed-in-v218" title="Permanent link">¶</a></h3>
|
|
10922
10961
|
<ul>
|
|
10923
10962
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Changed uses of <code>functools.lru_cache</code> to use django-redis cache instead.</li>
|
|
10924
10963
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Standardized cache key strings used with the django-redis cache.</li>
|
|
10925
10964
|
</ul>
|
|
10926
|
-
<h3 id="
|
|
10965
|
+
<h3 id="removed-in-v218">Removed in v2.1.8<a class="headerlink" href="#removed-in-v218" title="Permanent link">¶</a></h3>
|
|
10927
10966
|
<ul>
|
|
10928
10967
|
<li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Removed the hard-coded 255-character limit on custom fields of type <code>Text</code>.</li>
|
|
10929
10968
|
</ul>
|
|
10930
|
-
<h3 id="
|
|
10969
|
+
<h3 id="fixed-in-v218">Fixed in v2.1.8<a class="headerlink" href="#fixed-in-v218" title="Permanent link">¶</a></h3>
|
|
10931
10970
|
<ul>
|
|
10932
10971
|
<li><a href="https://github.com/nautobot/nautobot/issues/5247">#5247</a> - Fixed Job buttons do not respect the <code>task_queues</code> of the job class.</li>
|
|
10933
10972
|
<li><a href="https://github.com/nautobot/nautobot/issues/5380">#5380</a> - Fixed incorrect permission for "Add Tenant" button in the navigation menu.</li>
|
|
@@ -10935,28 +10974,28 @@
|
|
|
10935
10974
|
<li><a href="https://github.com/nautobot/nautobot/issues/5395">#5395</a> - Fixed incorrect permission for "Roles" link in the navigation menu.</li>
|
|
10936
10975
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Fixed an issue with stale CustomField, ComputedField, Relationship, and TreeModel caches that caused incorrect data at times.</li>
|
|
10937
10976
|
</ul>
|
|
10938
|
-
<h3 id="
|
|
10977
|
+
<h3 id="documentation-in-v218">Documentation in v2.1.8<a class="headerlink" href="#documentation-in-v218" title="Permanent link">¶</a></h3>
|
|
10939
10978
|
<ul>
|
|
10940
10979
|
<li><a href="https://github.com/nautobot/nautobot/issues/5437">#5437</a> - Added release-note for version 1.6.15.</li>
|
|
10941
10980
|
<li><a href="https://github.com/nautobot/nautobot/issues/5421">#5421</a> - Added release-notes for versions 1.6.11 through 1.6.14.</li>
|
|
10942
10981
|
</ul>
|
|
10943
|
-
<h3 id="
|
|
10982
|
+
<h3 id="housekeeping-in-v218">Housekeeping in v2.1.8<a class="headerlink" href="#housekeeping-in-v218" title="Permanent link">¶</a></h3>
|
|
10944
10983
|
<ul>
|
|
10945
10984
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added health check for Celery Beat based on it touching a file (by default <code>/tmp/nautobot_celery_beat_heartbeat</code>) each time its scheduler wakes up.</li>
|
|
10946
10985
|
<li><a href="https://github.com/nautobot/nautobot/issues/3213">#3213</a> - Removed redundant filter tests for related boolean filters.</li>
|
|
10947
10986
|
<li><a href="https://github.com/nautobot/nautobot/issues/5434">#5434</a> - Fixed health check for beat container in <code>docker-compose.yml</code> under <code>docker-compose</code> v1.x.</li>
|
|
10948
10987
|
</ul>
|
|
10949
10988
|
<h2 id="v217-2024-03-05">v2.1.7 (2024-03-05)<a class="headerlink" href="#v217-2024-03-05" title="Permanent link">¶</a></h2>
|
|
10950
|
-
<h3 id="
|
|
10989
|
+
<h3 id="fixed-in-v217">Fixed in v2.1.7<a class="headerlink" href="#fixed-in-v217" title="Permanent link">¶</a></h3>
|
|
10951
10990
|
<ul>
|
|
10952
10991
|
<li><a href="https://github.com/nautobot/nautobot/issues/5387">#5387</a> - Fixed an error in the Dockerfile that resulted in <code>pyuwsgi</code> being installed without SSL support.</li>
|
|
10953
10992
|
</ul>
|
|
10954
10993
|
<h2 id="v216-2024-03-04">v2.1.6 (2024-03-04)<a class="headerlink" href="#v216-2024-03-04" title="Permanent link">¶</a></h2>
|
|
10955
|
-
<h3 id="
|
|
10994
|
+
<h3 id="security-in-v216">Security in v2.1.6<a class="headerlink" href="#security-in-v216" title="Permanent link">¶</a></h3>
|
|
10956
10995
|
<ul>
|
|
10957
10996
|
<li><a href="https://github.com/nautobot/nautobot/issues/5319">#5319</a> - Updated <code>cryptography</code> to 42.0.4 due to CVE-2024-26130. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10958
10997
|
</ul>
|
|
10959
|
-
<h3 id="
|
|
10998
|
+
<h3 id="added-in-v216">Added in v2.1.6<a class="headerlink" href="#added-in-v216" title="Permanent link">¶</a></h3>
|
|
10960
10999
|
<ul>
|
|
10961
11000
|
<li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Added Collapse Capable Side Navbar: Side Navbar is now able to be expanded and collapsed</li>
|
|
10962
11001
|
<li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Added Expandable Main Content: The Main Content part of the UI grows as the Side Navbar collapses and shrinks as the Side Navbar expands.</li>
|
|
@@ -10965,11 +11004,11 @@
|
|
|
10965
11004
|
<li><a href="https://github.com/nautobot/nautobot/issues/5329">#5329</a> - Added caching of <code>ChangeLoggedModelsQuery().as_queryset()</code> to improve performance when saving many objects in a change-logged context.</li>
|
|
10966
11005
|
<li><a href="https://github.com/nautobot/nautobot/issues/5361">#5361</a> - Added <code>nautobot.core.testing.forms.FormTestCases</code> base class and added it to <code>nautobot.apps.testing</code> as well.</li>
|
|
10967
11006
|
</ul>
|
|
10968
|
-
<h3 id="
|
|
11007
|
+
<h3 id="changed-in-v216">Changed in v2.1.6<a class="headerlink" href="#changed-in-v216" title="Permanent link">¶</a></h3>
|
|
10969
11008
|
<ul>
|
|
10970
11009
|
<li><a href="https://github.com/nautobot/nautobot/issues/5082">#5082</a> - Adjusted Edit / Create panels to occupy more page width on medium and large screens.</li>
|
|
10971
11010
|
</ul>
|
|
10972
|
-
<h3 id="
|
|
11011
|
+
<h3 id="fixed-in-v216">Fixed in v2.1.6<a class="headerlink" href="#fixed-in-v216" title="Permanent link">¶</a></h3>
|
|
10973
11012
|
<ul>
|
|
10974
11013
|
<li><a href="https://github.com/nautobot/nautobot/issues/4106">#4106</a> - Fixed inefficient query in VirtualMachine create form.</li>
|
|
10975
11014
|
<li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Fixed Brand Icon mouseover Background: Fix for mouseover effect on the Brand / Icon (was flashing white background vs being transparent) when in dark mode.</li>
|
|
@@ -10986,7 +11025,7 @@
|
|
|
10986
11025
|
<li><a href="https://github.com/nautobot/nautobot/issues/5346">#5346</a> - Fixed device LLDP view to work when interface names include a space.</li>
|
|
10987
11026
|
<li><a href="https://github.com/nautobot/nautobot/issues/5365">#5365</a> - Fixed <code>invalidate_max_depth_cache</code> itself calculating <code>max_depth</code> on querysets without tree fields.</li>
|
|
10988
11027
|
</ul>
|
|
10989
|
-
<h3 id="
|
|
11028
|
+
<h3 id="documentation-in-v216">Documentation in v2.1.6<a class="headerlink" href="#documentation-in-v216" title="Permanent link">¶</a></h3>
|
|
10990
11029
|
<ul>
|
|
10991
11030
|
<li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation on <code>nautobot.apps</code> import locations.</li>
|
|
10992
11031
|
<li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation about the supported public interfaces.</li>
|
|
@@ -11000,24 +11039,24 @@
|
|
|
11000
11039
|
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the SSO documentation about the need to do <code>pip3 install --no-binary=lxml</code> to avoid incompatibilities between <code>lxml</code> and <code>xmlsec</code> packages.</li>
|
|
11001
11040
|
</ul>
|
|
11002
11041
|
<h2 id="v215-2024-02-21">v2.1.5 (2024-02-21)<a class="headerlink" href="#v215-2024-02-21" title="Permanent link">¶</a></h2>
|
|
11003
|
-
<h3 id="
|
|
11042
|
+
<h3 id="security-in-v215">Security in v2.1.5<a class="headerlink" href="#security-in-v215" title="Permanent link">¶</a></h3>
|
|
11004
11043
|
<ul>
|
|
11005
11044
|
<li><a href="https://github.com/nautobot/nautobot/pull/5303">#5303</a> - Updated <code>cryptography</code> to 42.0.2 due to CVE-2024-0727. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11006
11045
|
</ul>
|
|
11007
|
-
<h3 id="
|
|
11046
|
+
<h3 id="added-in-v215">Added in v2.1.5<a class="headerlink" href="#added-in-v215" title="Permanent link">¶</a></h3>
|
|
11008
11047
|
<ul>
|
|
11009
11048
|
<li><a href="https://github.com/nautobot/nautobot/issues/5171">#5171</a> - Added <code>latest</code> and <code>latest-py<version></code> tags to the <code>nautobot</code> Docker images published for the latest stable release of Nautobot.</li>
|
|
11010
11049
|
<li><a href="https://github.com/nautobot/nautobot/issues/5210">#5210</a> - Added <code>METRICS_AUTHENTICATED</code> setting to control authentication for the HTTP endpoint <code>/metrics</code>.</li>
|
|
11011
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5243">#5243</a> - Added support for setting display_field on DynamicModelChoiceField to nested values in suggested choices list.</li>
|
|
11050
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5243">#5243</a> - Added support for setting <code>display_field</code> on DynamicModelChoiceField to nested values in suggested choices list.</li>
|
|
11012
11051
|
</ul>
|
|
11013
|
-
<h3 id="
|
|
11052
|
+
<h3 id="changed-in-v215">Changed in v2.1.5<a class="headerlink" href="#changed-in-v215" title="Permanent link">¶</a></h3>
|
|
11014
11053
|
<ul>
|
|
11015
11054
|
<li><a href="https://github.com/nautobot/nautobot/issues/5171">#5171</a> - Changed the tagging of <code>nautobot-dev</code> Docker images to reserve the <code>latest</code> and <code>latest-py<version></code> tags for the latest stable release of Nautobot, rather than the latest build from the <code>develop</code> branch.</li>
|
|
11016
11055
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed <code>TreeQuerySet.ancestors</code> implementation to a more efficient approach for shallow trees.</li>
|
|
11017
11056
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed the location detail view not to annotate tree fields on its queries.</li>
|
|
11018
11057
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Updated navbar user dropdown with chevron.</li>
|
|
11019
11058
|
</ul>
|
|
11020
|
-
<h3 id="
|
|
11059
|
+
<h3 id="fixed-in-v215">Fixed in v2.1.5<a class="headerlink" href="#fixed-in-v215" title="Permanent link">¶</a></h3>
|
|
11021
11060
|
<ul>
|
|
11022
11061
|
<li><a href="https://github.com/nautobot/nautobot/issues/5058">#5058</a> - Changed more filter parameters from <code>location_id</code> to <code>location</code> in <code>virtualization/forms.py</code>.</li>
|
|
11023
11062
|
<li><a href="https://github.com/nautobot/nautobot/issues/5121">#5121</a> - Fixed an issue where deleting a git repository resulted in a job result stuck in running state.</li>
|
|
@@ -11026,38 +11065,38 @@
|
|
|
11026
11065
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Fixed button spacing when there are multiple buttons in navbar.</li>
|
|
11027
11066
|
<li><a href="https://github.com/nautobot/nautobot/issues/5283">#5283</a> - Fixed inconsistent ordering of IP addresses in various tables.</li>
|
|
11028
11067
|
</ul>
|
|
11029
|
-
<h3 id="
|
|
11068
|
+
<h3 id="documentation-in-v215">Documentation in v2.1.5<a class="headerlink" href="#documentation-in-v215" title="Permanent link">¶</a></h3>
|
|
11030
11069
|
<ul>
|
|
11031
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3349">#3349</a> - Added annotations to document the importance of keeping the TIME_ZONE setting consistent on Nautobot web servers and Celery Beat servers.</li>
|
|
11070
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3349">#3349</a> - Added annotations to document the importance of keeping the <code>TIME_ZONE</code> setting consistent on Nautobot web servers and Celery Beat servers.</li>
|
|
11032
11071
|
<li><a href="https://github.com/nautobot/nautobot/issues/5297">#5297</a> - Updated the low level application stack diagram to orient user traffic coming from the top.</li>
|
|
11033
11072
|
</ul>
|
|
11034
|
-
<h3 id="
|
|
11073
|
+
<h3 id="housekeeping-in-v215">Housekeeping in v2.1.5<a class="headerlink" href="#housekeeping-in-v215" title="Permanent link">¶</a></h3>
|
|
11035
11074
|
<ul>
|
|
11036
11075
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Reorganized navbar css rules in <code>base.css</code>.</li>
|
|
11037
11076
|
</ul>
|
|
11038
11077
|
<h2 id="v214-2024-02-08">v2.1.4 (2024-02-08)<a class="headerlink" href="#v214-2024-02-08" title="Permanent link">¶</a></h2>
|
|
11039
|
-
<h3 id="
|
|
11078
|
+
<h3 id="security-in-v214">Security in v2.1.4<a class="headerlink" href="#security-in-v214" title="Permanent link">¶</a></h3>
|
|
11040
11079
|
<ul>
|
|
11041
11080
|
<li><a href="https://github.com/nautobot/nautobot/issues/5251">#5251</a> - Updated <code>Django</code> dependency to 3.2.24 due to CVE-2024-24680.</li>
|
|
11042
11081
|
</ul>
|
|
11043
|
-
<h3 id="
|
|
11082
|
+
<h3 id="fixed-in-v214">Fixed in v2.1.4<a class="headerlink" href="#fixed-in-v214" title="Permanent link">¶</a></h3>
|
|
11044
11083
|
<ul>
|
|
11045
11084
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Fixed <code>TypeError</code> and similar exceptions thrown when rendering certain App data tables in v2.1.3.</li>
|
|
11046
11085
|
</ul>
|
|
11047
|
-
<h3 id="
|
|
11086
|
+
<h3 id="documentation-in-v214">Documentation in v2.1.4<a class="headerlink" href="#documentation-in-v214" title="Permanent link">¶</a></h3>
|
|
11048
11087
|
<ul>
|
|
11049
11088
|
<li><a href="https://github.com/nautobot/nautobot/issues/4778">#4778</a> - Added troubleshooting documentation for PostgreSQL databases with unsupported encoding settings.</li>
|
|
11050
11089
|
</ul>
|
|
11051
|
-
<h3 id="
|
|
11090
|
+
<h3 id="housekeeping-in-v214">Housekeeping in v2.1.4<a class="headerlink" href="#housekeeping-in-v214" title="Permanent link">¶</a></h3>
|
|
11052
11091
|
<ul>
|
|
11053
11092
|
<li><a href="https://github.com/nautobot/nautobot/issues/5240">#5240</a> - Changed test config to use <code>constance.backends.memory.MemoryBackend</code> to avoid intermittent failures in parallel tests.</li>
|
|
11054
11093
|
</ul>
|
|
11055
11094
|
<h2 id="v213-2024-02-05">v2.1.3 (2024-02-05)<a class="headerlink" href="#v213-2024-02-05" title="Permanent link">¶</a></h2>
|
|
11056
|
-
<h3 id="
|
|
11095
|
+
<h3 id="security-in-v213">Security in v2.1.3<a class="headerlink" href="#security-in-v213" title="Permanent link">¶</a></h3>
|
|
11057
11096
|
<ul>
|
|
11058
11097
|
<li><a href="https://github.com/nautobot/nautobot/issues/5151">#5151</a> - Updated <code>pillow</code> dependency to 10.2.0 due to CVE-2023-50447.</li>
|
|
11059
11098
|
</ul>
|
|
11060
|
-
<h3 id="
|
|
11099
|
+
<h3 id="added-in-v213">Added in v2.1.3<a class="headerlink" href="#added-in-v213" title="Permanent link">¶</a></h3>
|
|
11061
11100
|
<ul>
|
|
11062
11101
|
<li><a href="https://github.com/nautobot/nautobot/issues/4981">#4981</a> - Add serial types to InterfaceTypeChoices.</li>
|
|
11063
11102
|
<li><a href="https://github.com/nautobot/nautobot/issues/5012">#5012</a> - Added database indexes to the ObjectChange model to improve performance when filtering by <code>user_name</code>, <code>changed_object</code>, or <code>related_object</code>, and also by <code>changed_object</code> in combination with <code>user</code> or <code>user_name</code>.</li>
|
|
@@ -11065,7 +11104,7 @@
|
|
|
11065
11104
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added Navbar dropdown arrow rotation on open/close.</li>
|
|
11066
11105
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added behavior of resetting navbar state when the "home" link is clicked.</li>
|
|
11067
11106
|
</ul>
|
|
11068
|
-
<h3 id="
|
|
11107
|
+
<h3 id="changed-in-v213">Changed in v2.1.3<a class="headerlink" href="#changed-in-v213" title="Permanent link">¶</a></h3>
|
|
11069
11108
|
<ul>
|
|
11070
11109
|
<li><a href="https://github.com/nautobot/nautobot/issues/5149">#5149</a> - Updated the Job List to show Job Hook Receiver and Job Button Receiver Jobs, which were previously being hidden from view.</li>
|
|
11071
11110
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown link behavior to turn orange when active/clicked; state is saved.</li>
|
|
@@ -11074,12 +11113,12 @@
|
|
|
11074
11113
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown to use chevron icon instead of carets.</li>
|
|
11075
11114
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Aligned navbar dropdown icons to the right.</li>
|
|
11076
11115
|
</ul>
|
|
11077
|
-
<h3 id="
|
|
11116
|
+
<h3 id="removed-in-v213">Removed in v2.1.3<a class="headerlink" href="#removed-in-v213" title="Permanent link">¶</a></h3>
|
|
11078
11117
|
<ul>
|
|
11079
11118
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed unneeded tooltip of dropdown title.</li>
|
|
11080
11119
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed navbar dropdown links underlining.</li>
|
|
11081
11120
|
</ul>
|
|
11082
|
-
<h3 id="
|
|
11121
|
+
<h3 id="fixed-in-v213">Fixed in v2.1.3<a class="headerlink" href="#fixed-in-v213" title="Permanent link">¶</a></h3>
|
|
11083
11122
|
<ul>
|
|
11084
11123
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
11085
11124
|
<li><a href="https://github.com/nautobot/nautobot/issues/4898">#4898</a> - Improved automatic query optimization when rendering object list views.</li>
|
|
@@ -11093,14 +11132,14 @@
|
|
|
11093
11132
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Fixed navbar dropdown links alignment and spacing.</li>
|
|
11094
11133
|
<li><a href="https://github.com/nautobot/nautobot/issues/5198">#5198</a> - Fixed error in device and rack dropdowns when attempting to add an Interface to an InterfaceRedundancyGroup.</li>
|
|
11095
11134
|
</ul>
|
|
11096
|
-
<h3 id="
|
|
11135
|
+
<h3 id="dependencies-in-v213">Dependencies in v2.1.3<a class="headerlink" href="#dependencies-in-v213" title="Permanent link">¶</a></h3>
|
|
11097
11136
|
<ul>
|
|
11098
11137
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>MarkupSafe</code> dependency to 2.1.5.</li>
|
|
11099
11138
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mysqlclient</code> dependency to 2.2.3.</li>
|
|
11100
11139
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>python-slugify</code> dependency to 8.0.3.</li>
|
|
11101
11140
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>pyuwsgi</code> dependency to 2.0.23.</li>
|
|
11102
11141
|
</ul>
|
|
11103
|
-
<h3 id="
|
|
11142
|
+
<h3 id="housekeeping-in-v213">Housekeeping in v2.1.3<a class="headerlink" href="#housekeeping-in-v213" title="Permanent link">¶</a></h3>
|
|
11104
11143
|
<ul>
|
|
11105
11144
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mkdocs-section-index</code> documentation dependency to 0.3.8.</li>
|
|
11106
11145
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>ruff</code> development dependency to 0.1.15.</li>
|
|
@@ -11112,30 +11151,30 @@
|
|
|
11112
11151
|
<li><a href="https://github.com/nautobot/nautobot/issues/5206">#5206</a> - Added q filter test for ExternalIntegration.</li>
|
|
11113
11152
|
</ul>
|
|
11114
11153
|
<h2 id="v212-2024-01-22">v2.1.2 (2024-01-22)<a class="headerlink" href="#v212-2024-01-22" title="Permanent link">¶</a></h2>
|
|
11115
|
-
<h3 id="
|
|
11154
|
+
<h3 id="security-in-v212">Security in v2.1.2<a class="headerlink" href="#security-in-v212" title="Permanent link">¶</a></h3>
|
|
11116
11155
|
<ul>
|
|
11117
11156
|
<li><a href="https://github.com/nautobot/nautobot/issues/5054">#5054</a> - Added validation of redirect URLs to the "Add a new IP Address" and "Assign an IP Address" views.</li>
|
|
11118
11157
|
<li><a href="https://github.com/nautobot/nautobot/issues/5109">#5109</a> - Removed <code>/files/get/</code> URL endpoint (for viewing FileAttachment files in the browser), as it was unused and could potentially pose security issues.</li>
|
|
11119
11158
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Fixed an XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a>) in the <code>render_markdown()</code> utility function used to render comments, notes, job log entries, etc.</li>
|
|
11120
11159
|
</ul>
|
|
11121
|
-
<h3 id="
|
|
11160
|
+
<h3 id="added-in-v212">Added in v2.1.2<a class="headerlink" href="#added-in-v212" title="Permanent link">¶</a></h3>
|
|
11122
11161
|
<ul>
|
|
11123
11162
|
<li><a href="https://github.com/nautobot/nautobot/issues/3877">#3877</a> - Added global filtering to Job Result log table, enabling search across all pages.</li>
|
|
11124
11163
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Enhanced the <code>sanitize</code> function to also handle sanitization of lists and tuples of strings.</li>
|
|
11125
11164
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Enhanced Markdown-supporting fields (<code>comments</code>, <code>description</code>, Notes, Job log entries, etc.) to also permit the use of a limited subset of "safe" HTML tags and attributes.</li>
|
|
11126
11165
|
</ul>
|
|
11127
|
-
<h3 id="
|
|
11166
|
+
<h3 id="changed-in-v212">Changed in v2.1.2<a class="headerlink" href="#changed-in-v212" title="Permanent link">¶</a></h3>
|
|
11128
11167
|
<ul>
|
|
11129
11168
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether the requested user has permission to run the requested job.</li>
|
|
11130
11169
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether the requested job is installed and enabled.</li>
|
|
11131
11170
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether a Celery worker is running when invoked without the <code>--local</code> flag.</li>
|
|
11132
11171
|
<li><a href="https://github.com/nautobot/nautobot/issues/5131">#5131</a> - Improved the performance of the <code>/api/dcim/locations/</code> REST API.</li>
|
|
11133
11172
|
</ul>
|
|
11134
|
-
<h3 id="
|
|
11173
|
+
<h3 id="removed-in-v212">Removed in v2.1.2<a class="headerlink" href="#removed-in-v212" title="Permanent link">¶</a></h3>
|
|
11135
11174
|
<ul>
|
|
11136
11175
|
<li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Removed <code>nautobot-server startplugin</code> management command.</li>
|
|
11137
11176
|
</ul>
|
|
11138
|
-
<h3 id="
|
|
11177
|
+
<h3 id="fixed-in-v212">Fixed in v2.1.2<a class="headerlink" href="#fixed-in-v212" title="Permanent link">¶</a></h3>
|
|
11139
11178
|
<ul>
|
|
11140
11179
|
<li><a href="https://github.com/nautobot/nautobot/issues/4075">#4075</a> - Fixed sorting of Device Bays list view by installed device status.</li>
|
|
11141
11180
|
<li><a href="https://github.com/nautobot/nautobot/issues/4444">#4444</a> - Fixed Sync Git Repository requires non-matching permissions for UI vs API.</li>
|
|
@@ -11161,17 +11200,17 @@
|
|
|
11161
11200
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Fixed incorrect JobResult data when using <code>nautobot-server runjob --local</code> or <code>JobResult.execute_job()</code>.</li>
|
|
11162
11201
|
<li><a href="https://github.com/nautobot/nautobot/issues/5111">#5111</a> - Fixed rack group and rack filtering by the location selected in the device bulk edit form.</li>
|
|
11163
11202
|
</ul>
|
|
11164
|
-
<h3 id="
|
|
11203
|
+
<h3 id="dependencies-in-v212">Dependencies in v2.1.2<a class="headerlink" href="#dependencies-in-v212" title="Permanent link">¶</a></h3>
|
|
11165
11204
|
<ul>
|
|
11166
11205
|
<li><a href="https://github.com/nautobot/nautobot/issues/5083">#5083</a> - Updated GitPython to version 3.1.41 to address Windows security vulnerability <a href="https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx">GHSA-2mqj-m65w-jghx</a>.</li>
|
|
11167
11206
|
<li><a href="https://github.com/nautobot/nautobot/issues/5086">#5086</a> - Updated Jinja2 to version 3.1.3 to address to address XSS security vulnerability <a href="https://github.com/pallets/jinja/security/advisories/GHSA-h5c8-rqwp-cp95">GHSA-h5c8-rqwp-cp95</a>.</li>
|
|
11168
11207
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
11169
11208
|
</ul>
|
|
11170
|
-
<h3 id="
|
|
11209
|
+
<h3 id="documentation-in-v212">Documentation in v2.1.2<a class="headerlink" href="#documentation-in-v212" title="Permanent link">¶</a></h3>
|
|
11171
11210
|
<ul>
|
|
11172
11211
|
<li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Added a link to the <code>cookiecutter-nautobot-app</code> project in the App developer documentation.</li>
|
|
11173
11212
|
</ul>
|
|
11174
|
-
<h3 id="
|
|
11213
|
+
<h3 id="housekeeping-in-v212">Housekeeping in v2.1.2<a class="headerlink" href="#housekeeping-in-v212" title="Permanent link">¶</a></h3>
|
|
11175
11214
|
<ul>
|
|
11176
11215
|
<li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Added automatic superuser creation environment variables to docker development environment.</li>
|
|
11177
11216
|
<li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Updated VS Code Dev Containers configuration and documentation.</li>
|
|
@@ -11181,20 +11220,20 @@
|
|
|
11181
11220
|
<li><a href="https://github.com/nautobot/nautobot/issues/5118">#5118</a> - Updated PR template to encourage inclusion of screenshots.</li>
|
|
11182
11221
|
</ul>
|
|
11183
11222
|
<h2 id="v211-2024-01-08">v2.1.1 (2024-01-08)<a class="headerlink" href="#v211-2024-01-08" title="Permanent link">¶</a></h2>
|
|
11184
|
-
<h3 id="
|
|
11223
|
+
<h3 id="added-in-v211">Added in v2.1.1<a class="headerlink" href="#added-in-v211" title="Permanent link">¶</a></h3>
|
|
11185
11224
|
<ul>
|
|
11186
11225
|
<li><a href="https://github.com/nautobot/nautobot/issues/5046">#5046</a> - Updated the LocationType clone process to pre-populate the original object's parent, nestable and content type fields.</li>
|
|
11187
11226
|
</ul>
|
|
11188
|
-
<h3 id="
|
|
11227
|
+
<h3 id="changed-in-v211">Changed in v2.1.1<a class="headerlink" href="#changed-in-v211" title="Permanent link">¶</a></h3>
|
|
11189
11228
|
<ul>
|
|
11190
11229
|
<li><a href="https://github.com/nautobot/nautobot/issues/4992">#4992</a> - Added change-logging (ObjectChange support) for the ObjectPermission model.</li>
|
|
11191
11230
|
</ul>
|
|
11192
|
-
<h3 id="
|
|
11231
|
+
<h3 id="removed-in-v211">Removed in v2.1.1<a class="headerlink" href="#removed-in-v211" title="Permanent link">¶</a></h3>
|
|
11193
11232
|
<ul>
|
|
11194
11233
|
<li><a href="https://github.com/nautobot/nautobot/issues/5033">#5033</a> - Removed alpha UI from the main code base for now (it still exists in a prototype branch) to reduce the burden of maintaining its dependencies in the meantime.</li>
|
|
11195
11234
|
<li><a href="https://github.com/nautobot/nautobot/issues/5035">#5035</a> - Removed nodesource apt repository from Dockerfile.</li>
|
|
11196
11235
|
</ul>
|
|
11197
|
-
<h3 id="
|
|
11236
|
+
<h3 id="fixed-in-v211">Fixed in v2.1.1<a class="headerlink" href="#fixed-in-v211" title="Permanent link">¶</a></h3>
|
|
11198
11237
|
<ul>
|
|
11199
11238
|
<li><a href="https://github.com/nautobot/nautobot/issues/4606">#4606</a> - Fixed an error when attempting to "Save Changes" to an existing GraphQL saved query via the GraphiQL UI.</li>
|
|
11200
11239
|
<li><a href="https://github.com/nautobot/nautobot/issues/4606">#4606</a> - Fixed incorrect positioning of the "Save Changes" button in the "Queries" menu in the GraphiQL UI.</li>
|
|
@@ -11203,14 +11242,14 @@
|
|
|
11203
11242
|
<li><a href="https://github.com/nautobot/nautobot/issues/5005">#5005</a> - Fixed missing schema field in config context create/edit forms.</li>
|
|
11204
11243
|
<li><a href="https://github.com/nautobot/nautobot/issues/5020">#5020</a> - Fixed display of secrets when editing a SecretsGroup.</li>
|
|
11205
11244
|
</ul>
|
|
11206
|
-
<h3 id="
|
|
11245
|
+
<h3 id="documentation-in-v211">Documentation in v2.1.1<a class="headerlink" href="#documentation-in-v211" title="Permanent link">¶</a></h3>
|
|
11207
11246
|
<ul>
|
|
11208
11247
|
<li><a href="https://github.com/nautobot/nautobot/issues/5019">#5019</a> - Updated the documentation on the usage of the <code>nautobot-server runjob</code> management command.</li>
|
|
11209
11248
|
<li><a href="https://github.com/nautobot/nautobot/issues/5023">#5023</a> - Fixed some typos in the 2.1.0 release notes.</li>
|
|
11210
11249
|
<li><a href="https://github.com/nautobot/nautobot/issues/5027">#5027</a> - Fixed typo in Device Redundancy Group docs.</li>
|
|
11211
11250
|
<li><a href="https://github.com/nautobot/nautobot/issues/5044">#5044</a> - Updated the documentation on <code>nautobot_database_ready</code> signal handlers with a warning.</li>
|
|
11212
11251
|
</ul>
|
|
11213
|
-
<h3 id="
|
|
11252
|
+
<h3 id="housekeeping-in-v211">Housekeeping in v2.1.1<a class="headerlink" href="#housekeeping-in-v211" title="Permanent link">¶</a></h3>
|
|
11214
11253
|
<ul>
|
|
11215
11254
|
<li><a href="https://github.com/nautobot/nautobot/issues/5039">#5039</a> - Updated <code>ruff</code> development dependency to <code>~0.1.10</code>.</li>
|
|
11216
11255
|
<li><a href="https://github.com/nautobot/nautobot/issues/5039">#5039</a> - Removed <code>black</code> and <code>flake8</code> as development dependencies as they're fully replaced by <code>ruff</code> now.</li>
|
|
@@ -11225,13 +11264,13 @@
|
|
|
11225
11264
|
<li><a href="https://github.com/nautobot/nautobot/issues/5055">#5055</a> - Removed <code>isort</code> as a development dependency as it's fully replaced by <code>ruff</code> now.</li>
|
|
11226
11265
|
</ul>
|
|
11227
11266
|
<h2 id="v210-2023-12-22">v2.1.0 (2023-12-22)<a class="headerlink" href="#v210-2023-12-22" title="Permanent link">¶</a></h2>
|
|
11228
|
-
<h3 id="
|
|
11267
|
+
<h3 id="security-in-v210">Security in v2.1.0<a class="headerlink" href="#security-in-v210" title="Permanent link">¶</a></h3>
|
|
11229
11268
|
<ul>
|
|
11230
11269
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed missing object-level permissions enforcement when running a JobButton (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-vf5m-xrhm-v999">GHSA-vf5m-xrhm-v999</a>).</li>
|
|
11231
11270
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed the requirement for users to have both <code>extras.run_job</code> and <code>extras.run_jobbutton</code> permissions to run a Job via a Job Button. Only <code>extras.run_job</code> permission is now required.</li>
|
|
11232
11271
|
<li><a href="https://github.com/nautobot/nautobot/issues/5002">#5002</a> - Updated <code>paramiko</code> to <code>3.4.0</code> due to CVE-2023-48795. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11233
11272
|
</ul>
|
|
11234
|
-
<h3 id="
|
|
11273
|
+
<h3 id="added-in-v210">Added in v2.1.0<a class="headerlink" href="#added-in-v210" title="Permanent link">¶</a></h3>
|
|
11235
11274
|
<ul>
|
|
11236
11275
|
<li><a href="https://github.com/nautobot/nautobot/issues/2149">#2149</a> - Added customizable panels on the homepage.</li>
|
|
11237
11276
|
<li><a href="https://github.com/nautobot/nautobot/issues/4708">#4708</a> - Added VRF to interface bulk edit form.</li>
|
|
@@ -11245,7 +11284,7 @@
|
|
|
11245
11284
|
<li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Added <code>JOB_CREATE_FILE_MAX_SIZE</code> setting.</li>
|
|
11246
11285
|
<li><a href="https://github.com/nautobot/nautobot/issues/4989">#4989</a> - Added a link to the Advanced tab on detail views to easily open the object in the API browser.</li>
|
|
11247
11286
|
</ul>
|
|
11248
|
-
<h3 id="
|
|
11287
|
+
<h3 id="changed-in-v210">Changed in v2.1.0<a class="headerlink" href="#changed-in-v210" title="Permanent link">¶</a></h3>
|
|
11249
11288
|
<ul>
|
|
11250
11289
|
<li><a href="https://github.com/nautobot/nautobot/issues/4884">#4884</a> - Added Bootstrap tooltips for all HTML elements with a <code>title</code> attribute.</li>
|
|
11251
11290
|
<li><a href="https://github.com/nautobot/nautobot/issues/4888">#4888</a> - Moved username and user actions menu from the top of the nav bar to the bottom.</li>
|
|
@@ -11256,12 +11295,12 @@
|
|
|
11256
11295
|
<li><a href="https://github.com/nautobot/nautobot/issues/4996">#4996</a> - Changed the order and help text of fields in the External Integration create and edit forms.</li>
|
|
11257
11296
|
<li><a href="https://github.com/nautobot/nautobot/issues/5003">#5003</a> - Updated gifs to showcase new Nautobot 2.1 interface.</li>
|
|
11258
11297
|
</ul>
|
|
11259
|
-
<h3 id="
|
|
11298
|
+
<h3 id="removed-in-v210">Removed in v2.1.0<a class="headerlink" href="#removed-in-v210" title="Permanent link">¶</a></h3>
|
|
11260
11299
|
<ul>
|
|
11261
11300
|
<li><a href="https://github.com/nautobot/nautobot/issues/4757">#4757</a> - Dropped support for PostgreSQL versions before 12.0.</li>
|
|
11262
11301
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed redundant <code>/extras/job-button/<uuid>/run/</code> URL endpoint; Job Buttons now use <code>/extras/jobs/<uuid>/run/</code> endpoint like any other job.</li>
|
|
11263
11302
|
</ul>
|
|
11264
|
-
<h3 id="
|
|
11303
|
+
<h3 id="fixed-in-v210">Fixed in v2.1.0<a class="headerlink" href="#fixed-in-v210" title="Permanent link">¶</a></h3>
|
|
11265
11304
|
<ul>
|
|
11266
11305
|
<li><a href="https://github.com/nautobot/nautobot/issues/4620">#4620</a> - Ensure UI build directory is created on init of nautobot-server.</li>
|
|
11267
11306
|
<li><a href="https://github.com/nautobot/nautobot/issues/4627">#4627</a> - Fixed JSON custom field being returned as a <code>repr()</code> string when using GraphQL.</li>
|
|
@@ -11274,14 +11313,14 @@
|
|
|
11274
11313
|
<li><a href="https://github.com/nautobot/nautobot/issues/4968">#4968</a> - Fixed some cases in which the <code>ipam.0025</code> data migration might throw an exception due to invalid data.</li>
|
|
11275
11314
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
11276
11315
|
</ul>
|
|
11277
|
-
<h3 id="
|
|
11316
|
+
<h3 id="documentation-in-v210">Documentation in v2.1.0<a class="headerlink" href="#documentation-in-v210" title="Permanent link">¶</a></h3>
|
|
11278
11317
|
<ul>
|
|
11279
11318
|
<li><a href="https://github.com/nautobot/nautobot/issues/4735">#4735</a> - Documented Django Admin Log Entries in v2.1 Release Overview.</li>
|
|
11280
11319
|
<li><a href="https://github.com/nautobot/nautobot/issues/4736">#4736</a> - Documented <code>isnull</code> filter expression in v2.1 Release Overview.</li>
|
|
11281
11320
|
<li><a href="https://github.com/nautobot/nautobot/issues/4766">#4766</a> - Updated documentation for registering tab views.</li>
|
|
11282
11321
|
<li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Fixed up docstrings for a number of Job-related classes and methods.</li>
|
|
11283
11322
|
</ul>
|
|
11284
|
-
<h3 id="
|
|
11323
|
+
<h3 id="housekeeping-in-v210">Housekeeping in v2.1.0<a class="headerlink" href="#housekeeping-in-v210" title="Permanent link">¶</a></h3>
|
|
11285
11324
|
<ul>
|
|
11286
11325
|
<li><a href="https://github.com/nautobot/nautobot/issues/4647">#4647</a> - Added DeviceFactory.</li>
|
|
11287
11326
|
<li><a href="https://github.com/nautobot/nautobot/issues/4896">#4896</a> - Added <code>/theme-preview/</code> view (only when <code>settings.DEBUG</code> is enabled) to preview various UI elements and layouts.</li>
|
|
@@ -11289,7 +11328,7 @@
|
|
|
11289
11328
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
11290
11329
|
</ul>
|
|
11291
11330
|
<h2 id="v210-beta1-2023-11-30">v2.1.0-beta.1 (2023-11-30)<a class="headerlink" href="#v210-beta1-2023-11-30" title="Permanent link">¶</a></h2>
|
|
11292
|
-
<h3 id="
|
|
11331
|
+
<h3 id="added-in-v210-beta1">Added in v2.1.0-beta.1<a class="headerlink" href="#added-in-v210-beta1" title="Permanent link">¶</a></h3>
|
|
11293
11332
|
<ul>
|
|
11294
11333
|
<li><a href="https://github.com/nautobot/nautobot/issues/1905">#1905</a> - Added the ability to automatically apply <code>isnull</code> filters when model field is nullable.</li>
|
|
11295
11334
|
<li><a href="https://github.com/nautobot/nautobot/issues/1905">#1905</a> - Enhanced <code>status</code> filters to support filtering by ID (UUID) as an alternative to filtering by <code>name</code>.</li>
|
|
@@ -11309,7 +11348,7 @@
|
|
|
11309
11348
|
<li><a href="https://github.com/nautobot/nautobot/issues/4820">#4820</a> - Added listing of related <code>files</code> to the <code>/api/extras/job-results/</code> REST API.</li>
|
|
11310
11349
|
<li><a href="https://github.com/nautobot/nautobot/issues/4820">#4820</a> - Added read-only REST API for the FileProxy model (files generated by a Job run), including a <code>/download/</code> endpoint for downloading the file content.</li>
|
|
11311
11350
|
</ul>
|
|
11312
|
-
<h3 id="
|
|
11351
|
+
<h3 id="changed-in-v210-beta1">Changed in v2.1.0-beta.1<a class="headerlink" href="#changed-in-v210-beta1" title="Permanent link">¶</a></h3>
|
|
11313
11352
|
<ul>
|
|
11314
11353
|
<li><a href="https://github.com/nautobot/nautobot/issues/4677">#4677</a> - Updated and customized nautobot UI bootstrap theme with LESS variables.</li>
|
|
11315
11354
|
<li><a href="https://github.com/nautobot/nautobot/issues/4745">#4745</a> - Changed object export (CSV, YAML, export-template) to run as a background task, avoiding HTTP timeouts when exporting thousands of objects in a single operation.</li>
|
|
@@ -11318,12 +11357,12 @@
|
|
|
11318
11357
|
<li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Lightened table row background color in dark mode.</li>
|
|
11319
11358
|
<li><a href="https://github.com/nautobot/nautobot/issues/4808">#4808</a> - Make NavItem link text margin-right slightly larger.</li>
|
|
11320
11359
|
</ul>
|
|
11321
|
-
<h3 id="
|
|
11360
|
+
<h3 id="removed-in-v210-beta1">Removed in v2.1.0-beta.1<a class="headerlink" href="#removed-in-v210-beta1" title="Permanent link">¶</a></h3>
|
|
11322
11361
|
<ul>
|
|
11323
11362
|
<li><a href="https://github.com/nautobot/nautobot/issues/4765">#4765</a> - Removed "Import" buttons from navbar dropdown menus.</li>
|
|
11324
11363
|
<li><a href="https://github.com/nautobot/nautobot/issues/4787">#4787</a> - Removed support for <code>HIDE_RESTRICTED_UI</code>. UI elements requiring specific permissions will now always be hidden from users lacking those permissions. Additionally, users not logged in will now be automatically redirected to the login page.</li>
|
|
11325
11364
|
</ul>
|
|
11326
|
-
<h3 id="
|
|
11365
|
+
<h3 id="fixed-in-v210-beta1">Fixed in v2.1.0-beta.1<a class="headerlink" href="#fixed-in-v210-beta1" title="Permanent link">¶</a></h3>
|
|
11327
11366
|
<ul>
|
|
11328
11367
|
<li><a href="https://github.com/nautobot/nautobot/issues/4646">#4646</a> - Fixed a bug in <code>ObjectPermission</code> where <code>users.user</code> permissions could not be created.</li>
|
|
11329
11368
|
<li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Fixed default button background color in dark mode.</li>
|
|
@@ -11331,7 +11370,7 @@
|
|
|
11331
11370
|
<li><a href="https://github.com/nautobot/nautobot/issues/4862">#4862</a> - Fixes issues with uninstalled apps & lingering contenttypes referenced in changelog.</li>
|
|
11332
11371
|
<li><a href="https://github.com/nautobot/nautobot/issues/4882">#4882</a> - Fixed a regression in the rendering of the Jobs table view.</li>
|
|
11333
11372
|
</ul>
|
|
11334
|
-
<h3 id="
|
|
11373
|
+
<h3 id="housekeeping-in-v210-beta1">Housekeeping in v2.1.0-beta.1<a class="headerlink" href="#housekeeping-in-v210-beta1" title="Permanent link">¶</a></h3>
|
|
11335
11374
|
<ul>
|
|
11336
11375
|
<li><a href="https://github.com/nautobot/nautobot/issues/3352">#3352</a> - Added a shared <code>media_root</code> volume to developer Docker Compose environment.</li>
|
|
11337
11376
|
<li><a href="https://github.com/nautobot/nautobot/issues/4781">#4781</a> - Added Gherkin writeups for "Locations" and "Prefixes" feature workflows.</li>
|
|
@@ -11482,7 +11521,7 @@
|
|
|
11482
11521
|
<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>
|
|
11483
11522
|
|
|
11484
11523
|
|
|
11485
|
-
<script src="../assets/javascripts/bundle.
|
|
11524
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
11486
11525
|
|
|
11487
11526
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11488
11527
|
|