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
|
|
|
@@ -8843,45 +8885,45 @@
|
|
|
8843
8885
|
<ul class="md-nav__list">
|
|
8844
8886
|
|
|
8845
8887
|
<li class="md-nav__item">
|
|
8846
|
-
<a href="#
|
|
8888
|
+
<a href="#added-in-v1211" class="md-nav__link">
|
|
8847
8889
|
<span class="md-ellipsis">
|
|
8848
|
-
Added
|
|
8890
|
+
Added in v1.2.11
|
|
8849
8891
|
</span>
|
|
8850
8892
|
</a>
|
|
8851
8893
|
|
|
8852
8894
|
</li>
|
|
8853
8895
|
|
|
8854
8896
|
<li class="md-nav__item">
|
|
8855
|
-
<a href="#
|
|
8897
|
+
<a href="#changed-in-v1211" class="md-nav__link">
|
|
8856
8898
|
<span class="md-ellipsis">
|
|
8857
|
-
Changed
|
|
8899
|
+
Changed in v1.2.11
|
|
8858
8900
|
</span>
|
|
8859
8901
|
</a>
|
|
8860
8902
|
|
|
8861
8903
|
</li>
|
|
8862
8904
|
|
|
8863
8905
|
<li class="md-nav__item">
|
|
8864
|
-
<a href="#fixed" class="md-nav__link">
|
|
8906
|
+
<a href="#fixed-in-v1211" class="md-nav__link">
|
|
8865
8907
|
<span class="md-ellipsis">
|
|
8866
|
-
Fixed
|
|
8908
|
+
Fixed in v1.2.11
|
|
8867
8909
|
</span>
|
|
8868
8910
|
</a>
|
|
8869
8911
|
|
|
8870
8912
|
</li>
|
|
8871
8913
|
|
|
8872
8914
|
<li class="md-nav__item">
|
|
8873
|
-
<a href="#documentation" class="md-nav__link">
|
|
8915
|
+
<a href="#documentation-in-v1211" class="md-nav__link">
|
|
8874
8916
|
<span class="md-ellipsis">
|
|
8875
|
-
Documentation
|
|
8917
|
+
Documentation in v1.2.11
|
|
8876
8918
|
</span>
|
|
8877
8919
|
</a>
|
|
8878
8920
|
|
|
8879
8921
|
</li>
|
|
8880
8922
|
|
|
8881
8923
|
<li class="md-nav__item">
|
|
8882
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8924
|
+
<a href="#housekeeping-in-v1211" class="md-nav__link">
|
|
8883
8925
|
<span class="md-ellipsis">
|
|
8884
|
-
Housekeeping
|
|
8926
|
+
Housekeeping in v1.2.11
|
|
8885
8927
|
</span>
|
|
8886
8928
|
</a>
|
|
8887
8929
|
|
|
@@ -8903,18 +8945,18 @@
|
|
|
8903
8945
|
<ul class="md-nav__list">
|
|
8904
8946
|
|
|
8905
8947
|
<li class="md-nav__item">
|
|
8906
|
-
<a href="#
|
|
8948
|
+
<a href="#documentation-in-v1210" class="md-nav__link">
|
|
8907
8949
|
<span class="md-ellipsis">
|
|
8908
|
-
Documentation
|
|
8950
|
+
Documentation in v1.2.10
|
|
8909
8951
|
</span>
|
|
8910
8952
|
</a>
|
|
8911
8953
|
|
|
8912
8954
|
</li>
|
|
8913
8955
|
|
|
8914
8956
|
<li class="md-nav__item">
|
|
8915
|
-
<a href="#
|
|
8957
|
+
<a href="#housekeeping-in-v1210" class="md-nav__link">
|
|
8916
8958
|
<span class="md-ellipsis">
|
|
8917
|
-
Housekeeping
|
|
8959
|
+
Housekeeping in v1.2.10
|
|
8918
8960
|
</span>
|
|
8919
8961
|
</a>
|
|
8920
8962
|
|
|
@@ -8936,18 +8978,18 @@
|
|
|
8936
8978
|
<ul class="md-nav__list">
|
|
8937
8979
|
|
|
8938
8980
|
<li class="md-nav__item">
|
|
8939
|
-
<a href="#security" class="md-nav__link">
|
|
8981
|
+
<a href="#security-in-v129" class="md-nav__link">
|
|
8940
8982
|
<span class="md-ellipsis">
|
|
8941
|
-
Security
|
|
8983
|
+
Security in v1.2.9
|
|
8942
8984
|
</span>
|
|
8943
8985
|
</a>
|
|
8944
8986
|
|
|
8945
8987
|
</li>
|
|
8946
8988
|
|
|
8947
8989
|
<li class="md-nav__item">
|
|
8948
|
-
<a href="#
|
|
8990
|
+
<a href="#fixed-in-v129" class="md-nav__link">
|
|
8949
8991
|
<span class="md-ellipsis">
|
|
8950
|
-
Fixed
|
|
8992
|
+
Fixed in v1.2.9
|
|
8951
8993
|
</span>
|
|
8952
8994
|
</a>
|
|
8953
8995
|
|
|
@@ -8969,54 +9011,54 @@
|
|
|
8969
9011
|
<ul class="md-nav__list">
|
|
8970
9012
|
|
|
8971
9013
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
9014
|
+
<a href="#added-in-v128" class="md-nav__link">
|
|
8973
9015
|
<span class="md-ellipsis">
|
|
8974
|
-
Added
|
|
9016
|
+
Added in v1.2.8
|
|
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="#changed-in-v128" class="md-nav__link">
|
|
8982
9024
|
<span class="md-ellipsis">
|
|
8983
|
-
Changed
|
|
9025
|
+
Changed in v1.2.8
|
|
8984
9026
|
</span>
|
|
8985
9027
|
</a>
|
|
8986
9028
|
|
|
8987
9029
|
</li>
|
|
8988
9030
|
|
|
8989
9031
|
<li class="md-nav__item">
|
|
8990
|
-
<a href="#
|
|
9032
|
+
<a href="#fixed-in-v128" class="md-nav__link">
|
|
8991
9033
|
<span class="md-ellipsis">
|
|
8992
|
-
Fixed
|
|
9034
|
+
Fixed in v1.2.8
|
|
8993
9035
|
</span>
|
|
8994
9036
|
</a>
|
|
8995
9037
|
|
|
8996
9038
|
</li>
|
|
8997
9039
|
|
|
8998
9040
|
<li class="md-nav__item">
|
|
8999
|
-
<a href="#dependencies" class="md-nav__link">
|
|
9041
|
+
<a href="#dependencies-in-v128" class="md-nav__link">
|
|
9000
9042
|
<span class="md-ellipsis">
|
|
9001
|
-
Dependencies
|
|
9043
|
+
Dependencies in v1.2.8
|
|
9002
9044
|
</span>
|
|
9003
9045
|
</a>
|
|
9004
9046
|
|
|
9005
9047
|
</li>
|
|
9006
9048
|
|
|
9007
9049
|
<li class="md-nav__item">
|
|
9008
|
-
<a href="#
|
|
9050
|
+
<a href="#documentation-in-v128" class="md-nav__link">
|
|
9009
9051
|
<span class="md-ellipsis">
|
|
9010
|
-
Documentation
|
|
9052
|
+
Documentation in v1.2.8
|
|
9011
9053
|
</span>
|
|
9012
9054
|
</a>
|
|
9013
9055
|
|
|
9014
9056
|
</li>
|
|
9015
9057
|
|
|
9016
9058
|
<li class="md-nav__item">
|
|
9017
|
-
<a href="#
|
|
9059
|
+
<a href="#housekeeping-in-v128" class="md-nav__link">
|
|
9018
9060
|
<span class="md-ellipsis">
|
|
9019
|
-
Housekeeping
|
|
9061
|
+
Housekeeping in v1.2.8
|
|
9020
9062
|
</span>
|
|
9021
9063
|
</a>
|
|
9022
9064
|
|
|
@@ -9038,9 +9080,9 @@
|
|
|
9038
9080
|
<ul class="md-nav__list">
|
|
9039
9081
|
|
|
9040
9082
|
<li class="md-nav__item">
|
|
9041
|
-
<a href="#
|
|
9083
|
+
<a href="#housekeeping-in-v127" class="md-nav__link">
|
|
9042
9084
|
<span class="md-ellipsis">
|
|
9043
|
-
Housekeeping
|
|
9085
|
+
Housekeeping in v1.2.7
|
|
9044
9086
|
</span>
|
|
9045
9087
|
</a>
|
|
9046
9088
|
|
|
@@ -9062,45 +9104,45 @@
|
|
|
9062
9104
|
<ul class="md-nav__list">
|
|
9063
9105
|
|
|
9064
9106
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9107
|
+
<a href="#added-in-v126" class="md-nav__link">
|
|
9066
9108
|
<span class="md-ellipsis">
|
|
9067
|
-
Added
|
|
9109
|
+
Added in v1.2.6
|
|
9068
9110
|
</span>
|
|
9069
9111
|
</a>
|
|
9070
9112
|
|
|
9071
9113
|
</li>
|
|
9072
9114
|
|
|
9073
9115
|
<li class="md-nav__item">
|
|
9074
|
-
<a href="#
|
|
9116
|
+
<a href="#fixed-in-v126" class="md-nav__link">
|
|
9075
9117
|
<span class="md-ellipsis">
|
|
9076
|
-
Fixed
|
|
9118
|
+
Fixed in v1.2.6
|
|
9077
9119
|
</span>
|
|
9078
9120
|
</a>
|
|
9079
9121
|
|
|
9080
9122
|
</li>
|
|
9081
9123
|
|
|
9082
9124
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9125
|
+
<a href="#dependencies-in-v126" class="md-nav__link">
|
|
9084
9126
|
<span class="md-ellipsis">
|
|
9085
|
-
Dependencies
|
|
9127
|
+
Dependencies in v1.2.6
|
|
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="#documentation-in-v126" class="md-nav__link">
|
|
9093
9135
|
<span class="md-ellipsis">
|
|
9094
|
-
Documentation
|
|
9136
|
+
Documentation in v1.2.6
|
|
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="#housekeeping-in-v126" class="md-nav__link">
|
|
9102
9144
|
<span class="md-ellipsis">
|
|
9103
|
-
Housekeeping
|
|
9145
|
+
Housekeeping in v1.2.6
|
|
9104
9146
|
</span>
|
|
9105
9147
|
</a>
|
|
9106
9148
|
|
|
@@ -9122,27 +9164,27 @@
|
|
|
9122
9164
|
<ul class="md-nav__list">
|
|
9123
9165
|
|
|
9124
9166
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9167
|
+
<a href="#fixed-in-v125" class="md-nav__link">
|
|
9126
9168
|
<span class="md-ellipsis">
|
|
9127
|
-
Fixed
|
|
9169
|
+
Fixed in v1.2.5
|
|
9128
9170
|
</span>
|
|
9129
9171
|
</a>
|
|
9130
9172
|
|
|
9131
9173
|
</li>
|
|
9132
9174
|
|
|
9133
9175
|
<li class="md-nav__item">
|
|
9134
|
-
<a href="#
|
|
9176
|
+
<a href="#documentation-in-v125" class="md-nav__link">
|
|
9135
9177
|
<span class="md-ellipsis">
|
|
9136
|
-
Documentation
|
|
9178
|
+
Documentation in v1.2.5
|
|
9137
9179
|
</span>
|
|
9138
9180
|
</a>
|
|
9139
9181
|
|
|
9140
9182
|
</li>
|
|
9141
9183
|
|
|
9142
9184
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
9185
|
+
<a href="#housekeeping-in-v125" class="md-nav__link">
|
|
9144
9186
|
<span class="md-ellipsis">
|
|
9145
|
-
Housekeeping
|
|
9187
|
+
Housekeeping in v1.2.5
|
|
9146
9188
|
</span>
|
|
9147
9189
|
</a>
|
|
9148
9190
|
|
|
@@ -9164,45 +9206,45 @@
|
|
|
9164
9206
|
<ul class="md-nav__list">
|
|
9165
9207
|
|
|
9166
9208
|
<li class="md-nav__item">
|
|
9167
|
-
<a href="#
|
|
9209
|
+
<a href="#security-in-v124" class="md-nav__link">
|
|
9168
9210
|
<span class="md-ellipsis">
|
|
9169
|
-
Security
|
|
9211
|
+
Security in v1.2.4
|
|
9170
9212
|
</span>
|
|
9171
9213
|
</a>
|
|
9172
9214
|
|
|
9173
9215
|
</li>
|
|
9174
9216
|
|
|
9175
9217
|
<li class="md-nav__item">
|
|
9176
|
-
<a href="#
|
|
9218
|
+
<a href="#changed-in-v124" class="md-nav__link">
|
|
9177
9219
|
<span class="md-ellipsis">
|
|
9178
|
-
Changed
|
|
9220
|
+
Changed in v1.2.4
|
|
9179
9221
|
</span>
|
|
9180
9222
|
</a>
|
|
9181
9223
|
|
|
9182
9224
|
</li>
|
|
9183
9225
|
|
|
9184
9226
|
<li class="md-nav__item">
|
|
9185
|
-
<a href="#
|
|
9227
|
+
<a href="#fixed-in-v124" class="md-nav__link">
|
|
9186
9228
|
<span class="md-ellipsis">
|
|
9187
|
-
Fixed
|
|
9229
|
+
Fixed in v1.2.4
|
|
9188
9230
|
</span>
|
|
9189
9231
|
</a>
|
|
9190
9232
|
|
|
9191
9233
|
</li>
|
|
9192
9234
|
|
|
9193
9235
|
<li class="md-nav__item">
|
|
9194
|
-
<a href="#
|
|
9236
|
+
<a href="#documentation-in-v124" class="md-nav__link">
|
|
9195
9237
|
<span class="md-ellipsis">
|
|
9196
|
-
Documentation
|
|
9238
|
+
Documentation in v1.2.4
|
|
9197
9239
|
</span>
|
|
9198
9240
|
</a>
|
|
9199
9241
|
|
|
9200
9242
|
</li>
|
|
9201
9243
|
|
|
9202
9244
|
<li class="md-nav__item">
|
|
9203
|
-
<a href="#
|
|
9245
|
+
<a href="#housekeeping-in-v124" class="md-nav__link">
|
|
9204
9246
|
<span class="md-ellipsis">
|
|
9205
|
-
Housekeeping
|
|
9247
|
+
Housekeeping in v1.2.4
|
|
9206
9248
|
</span>
|
|
9207
9249
|
</a>
|
|
9208
9250
|
|
|
@@ -9224,27 +9266,27 @@
|
|
|
9224
9266
|
<ul class="md-nav__list">
|
|
9225
9267
|
|
|
9226
9268
|
<li class="md-nav__item">
|
|
9227
|
-
<a href="#
|
|
9269
|
+
<a href="#security-in-v123" class="md-nav__link">
|
|
9228
9270
|
<span class="md-ellipsis">
|
|
9229
|
-
Security
|
|
9271
|
+
Security in v1.2.3
|
|
9230
9272
|
</span>
|
|
9231
9273
|
</a>
|
|
9232
9274
|
|
|
9233
9275
|
</li>
|
|
9234
9276
|
|
|
9235
9277
|
<li class="md-nav__item">
|
|
9236
|
-
<a href="#
|
|
9278
|
+
<a href="#fixed-in-v123" class="md-nav__link">
|
|
9237
9279
|
<span class="md-ellipsis">
|
|
9238
|
-
Fixed
|
|
9280
|
+
Fixed in v1.2.3
|
|
9239
9281
|
</span>
|
|
9240
9282
|
</a>
|
|
9241
9283
|
|
|
9242
9284
|
</li>
|
|
9243
9285
|
|
|
9244
9286
|
<li class="md-nav__item">
|
|
9245
|
-
<a href="#
|
|
9287
|
+
<a href="#documentation-in-v123" class="md-nav__link">
|
|
9246
9288
|
<span class="md-ellipsis">
|
|
9247
|
-
Documentation
|
|
9289
|
+
Documentation in v1.2.3
|
|
9248
9290
|
</span>
|
|
9249
9291
|
</a>
|
|
9250
9292
|
|
|
@@ -9266,36 +9308,36 @@
|
|
|
9266
9308
|
<ul class="md-nav__list">
|
|
9267
9309
|
|
|
9268
9310
|
<li class="md-nav__item">
|
|
9269
|
-
<a href="#
|
|
9311
|
+
<a href="#added-in-v122" class="md-nav__link">
|
|
9270
9312
|
<span class="md-ellipsis">
|
|
9271
|
-
Added
|
|
9313
|
+
Added in v1.2.2
|
|
9272
9314
|
</span>
|
|
9273
9315
|
</a>
|
|
9274
9316
|
|
|
9275
9317
|
</li>
|
|
9276
9318
|
|
|
9277
9319
|
<li class="md-nav__item">
|
|
9278
|
-
<a href="#
|
|
9320
|
+
<a href="#changed-in-v122" class="md-nav__link">
|
|
9279
9321
|
<span class="md-ellipsis">
|
|
9280
|
-
Changed
|
|
9322
|
+
Changed in v1.2.2
|
|
9281
9323
|
</span>
|
|
9282
9324
|
</a>
|
|
9283
9325
|
|
|
9284
9326
|
</li>
|
|
9285
9327
|
|
|
9286
9328
|
<li class="md-nav__item">
|
|
9287
|
-
<a href="#
|
|
9329
|
+
<a href="#fixed-in-v122" class="md-nav__link">
|
|
9288
9330
|
<span class="md-ellipsis">
|
|
9289
|
-
Fixed
|
|
9331
|
+
Fixed in v1.2.2
|
|
9290
9332
|
</span>
|
|
9291
9333
|
</a>
|
|
9292
9334
|
|
|
9293
9335
|
</li>
|
|
9294
9336
|
|
|
9295
9337
|
<li class="md-nav__item">
|
|
9296
|
-
<a href="#
|
|
9338
|
+
<a href="#documentation-in-v122" class="md-nav__link">
|
|
9297
9339
|
<span class="md-ellipsis">
|
|
9298
|
-
Documentation
|
|
9340
|
+
Documentation in v1.2.2
|
|
9299
9341
|
</span>
|
|
9300
9342
|
</a>
|
|
9301
9343
|
|
|
@@ -9317,36 +9359,36 @@
|
|
|
9317
9359
|
<ul class="md-nav__list">
|
|
9318
9360
|
|
|
9319
9361
|
<li class="md-nav__item">
|
|
9320
|
-
<a href="#
|
|
9362
|
+
<a href="#security-in-v121" class="md-nav__link">
|
|
9321
9363
|
<span class="md-ellipsis">
|
|
9322
|
-
Security
|
|
9364
|
+
Security in v1.2.1
|
|
9323
9365
|
</span>
|
|
9324
9366
|
</a>
|
|
9325
9367
|
|
|
9326
9368
|
</li>
|
|
9327
9369
|
|
|
9328
9370
|
<li class="md-nav__item">
|
|
9329
|
-
<a href="#
|
|
9371
|
+
<a href="#added-in-v121" class="md-nav__link">
|
|
9330
9372
|
<span class="md-ellipsis">
|
|
9331
|
-
Added
|
|
9373
|
+
Added in v1.2.1
|
|
9332
9374
|
</span>
|
|
9333
9375
|
</a>
|
|
9334
9376
|
|
|
9335
9377
|
</li>
|
|
9336
9378
|
|
|
9337
9379
|
<li class="md-nav__item">
|
|
9338
|
-
<a href="#
|
|
9380
|
+
<a href="#changed-in-v121" class="md-nav__link">
|
|
9339
9381
|
<span class="md-ellipsis">
|
|
9340
|
-
Changed
|
|
9382
|
+
Changed in v1.2.1
|
|
9341
9383
|
</span>
|
|
9342
9384
|
</a>
|
|
9343
9385
|
|
|
9344
9386
|
</li>
|
|
9345
9387
|
|
|
9346
9388
|
<li class="md-nav__item">
|
|
9347
|
-
<a href="#
|
|
9389
|
+
<a href="#fixed-in-v121" class="md-nav__link">
|
|
9348
9390
|
<span class="md-ellipsis">
|
|
9349
|
-
Fixed
|
|
9391
|
+
Fixed in v1.2.1
|
|
9350
9392
|
</span>
|
|
9351
9393
|
</a>
|
|
9352
9394
|
|
|
@@ -9368,54 +9410,54 @@
|
|
|
9368
9410
|
<ul class="md-nav__list">
|
|
9369
9411
|
|
|
9370
9412
|
<li class="md-nav__item">
|
|
9371
|
-
<a href="#
|
|
9413
|
+
<a href="#added-in-v120" class="md-nav__link">
|
|
9372
9414
|
<span class="md-ellipsis">
|
|
9373
|
-
Added
|
|
9415
|
+
Added in v1.2.0
|
|
9374
9416
|
</span>
|
|
9375
9417
|
</a>
|
|
9376
9418
|
|
|
9377
9419
|
</li>
|
|
9378
9420
|
|
|
9379
9421
|
<li class="md-nav__item">
|
|
9380
|
-
<a href="#
|
|
9422
|
+
<a href="#changed-in-v120" class="md-nav__link">
|
|
9381
9423
|
<span class="md-ellipsis">
|
|
9382
|
-
Changed
|
|
9424
|
+
Changed in v1.2.0
|
|
9383
9425
|
</span>
|
|
9384
9426
|
</a>
|
|
9385
9427
|
|
|
9386
9428
|
</li>
|
|
9387
9429
|
|
|
9388
9430
|
<li class="md-nav__item">
|
|
9389
|
-
<a href="#removed" class="md-nav__link">
|
|
9431
|
+
<a href="#removed-in-v120" class="md-nav__link">
|
|
9390
9432
|
<span class="md-ellipsis">
|
|
9391
|
-
Removed
|
|
9433
|
+
Removed in v1.2.0
|
|
9392
9434
|
</span>
|
|
9393
9435
|
</a>
|
|
9394
9436
|
|
|
9395
9437
|
</li>
|
|
9396
9438
|
|
|
9397
9439
|
<li class="md-nav__item">
|
|
9398
|
-
<a href="#
|
|
9440
|
+
<a href="#fixed-in-v120" class="md-nav__link">
|
|
9399
9441
|
<span class="md-ellipsis">
|
|
9400
|
-
Fixed
|
|
9442
|
+
Fixed in v1.2.0
|
|
9401
9443
|
</span>
|
|
9402
9444
|
</a>
|
|
9403
9445
|
|
|
9404
9446
|
</li>
|
|
9405
9447
|
|
|
9406
9448
|
<li class="md-nav__item">
|
|
9407
|
-
<a href="#
|
|
9449
|
+
<a href="#dependencies-in-v120" class="md-nav__link">
|
|
9408
9450
|
<span class="md-ellipsis">
|
|
9409
|
-
Dependencies
|
|
9451
|
+
Dependencies in v1.2.0
|
|
9410
9452
|
</span>
|
|
9411
9453
|
</a>
|
|
9412
9454
|
|
|
9413
9455
|
</li>
|
|
9414
9456
|
|
|
9415
9457
|
<li class="md-nav__item">
|
|
9416
|
-
<a href="#
|
|
9458
|
+
<a href="#documentation-in-v120" class="md-nav__link">
|
|
9417
9459
|
<span class="md-ellipsis">
|
|
9418
|
-
Documentation
|
|
9460
|
+
Documentation in v1.2.0
|
|
9419
9461
|
</span>
|
|
9420
9462
|
</a>
|
|
9421
9463
|
|
|
@@ -9437,54 +9479,54 @@
|
|
|
9437
9479
|
<ul class="md-nav__list">
|
|
9438
9480
|
|
|
9439
9481
|
<li class="md-nav__item">
|
|
9440
|
-
<a href="#
|
|
9482
|
+
<a href="#security-in-v120b1" class="md-nav__link">
|
|
9441
9483
|
<span class="md-ellipsis">
|
|
9442
|
-
Security
|
|
9484
|
+
Security in v1.2.0b1
|
|
9443
9485
|
</span>
|
|
9444
9486
|
</a>
|
|
9445
9487
|
|
|
9446
9488
|
</li>
|
|
9447
9489
|
|
|
9448
9490
|
<li class="md-nav__item">
|
|
9449
|
-
<a href="#
|
|
9491
|
+
<a href="#added-in-v120b1" class="md-nav__link">
|
|
9450
9492
|
<span class="md-ellipsis">
|
|
9451
|
-
Added
|
|
9493
|
+
Added in v1.2.0b1
|
|
9452
9494
|
</span>
|
|
9453
9495
|
</a>
|
|
9454
9496
|
|
|
9455
9497
|
</li>
|
|
9456
9498
|
|
|
9457
9499
|
<li class="md-nav__item">
|
|
9458
|
-
<a href="#
|
|
9500
|
+
<a href="#changed-in-v120b1" class="md-nav__link">
|
|
9459
9501
|
<span class="md-ellipsis">
|
|
9460
|
-
Changed
|
|
9502
|
+
Changed in v1.2.0b1
|
|
9461
9503
|
</span>
|
|
9462
9504
|
</a>
|
|
9463
9505
|
|
|
9464
9506
|
</li>
|
|
9465
9507
|
|
|
9466
9508
|
<li class="md-nav__item">
|
|
9467
|
-
<a href="#
|
|
9509
|
+
<a href="#fixed-in-v120b1" class="md-nav__link">
|
|
9468
9510
|
<span class="md-ellipsis">
|
|
9469
|
-
Fixed
|
|
9511
|
+
Fixed in v1.2.0b1
|
|
9470
9512
|
</span>
|
|
9471
9513
|
</a>
|
|
9472
9514
|
|
|
9473
9515
|
</li>
|
|
9474
9516
|
|
|
9475
9517
|
<li class="md-nav__item">
|
|
9476
|
-
<a href="#
|
|
9518
|
+
<a href="#documentation-in-v120b1" class="md-nav__link">
|
|
9477
9519
|
<span class="md-ellipsis">
|
|
9478
|
-
Documentation
|
|
9520
|
+
Documentation in v1.2.0b1
|
|
9479
9521
|
</span>
|
|
9480
9522
|
</a>
|
|
9481
9523
|
|
|
9482
9524
|
</li>
|
|
9483
9525
|
|
|
9484
9526
|
<li class="md-nav__item">
|
|
9485
|
-
<a href="#
|
|
9527
|
+
<a href="#housekeeping-in-v120b1" class="md-nav__link">
|
|
9486
9528
|
<span class="md-ellipsis">
|
|
9487
|
-
Housekeeping
|
|
9529
|
+
Housekeeping in v1.2.0b1
|
|
9488
9530
|
</span>
|
|
9489
9531
|
</a>
|
|
9490
9532
|
|
|
@@ -10144,45 +10186,45 @@
|
|
|
10144
10186
|
<ul class="md-nav__list">
|
|
10145
10187
|
|
|
10146
10188
|
<li class="md-nav__item">
|
|
10147
|
-
<a href="#
|
|
10189
|
+
<a href="#added-in-v1211" class="md-nav__link">
|
|
10148
10190
|
<span class="md-ellipsis">
|
|
10149
|
-
Added
|
|
10191
|
+
Added in v1.2.11
|
|
10150
10192
|
</span>
|
|
10151
10193
|
</a>
|
|
10152
10194
|
|
|
10153
10195
|
</li>
|
|
10154
10196
|
|
|
10155
10197
|
<li class="md-nav__item">
|
|
10156
|
-
<a href="#
|
|
10198
|
+
<a href="#changed-in-v1211" class="md-nav__link">
|
|
10157
10199
|
<span class="md-ellipsis">
|
|
10158
|
-
Changed
|
|
10200
|
+
Changed in v1.2.11
|
|
10159
10201
|
</span>
|
|
10160
10202
|
</a>
|
|
10161
10203
|
|
|
10162
10204
|
</li>
|
|
10163
10205
|
|
|
10164
10206
|
<li class="md-nav__item">
|
|
10165
|
-
<a href="#fixed" class="md-nav__link">
|
|
10207
|
+
<a href="#fixed-in-v1211" class="md-nav__link">
|
|
10166
10208
|
<span class="md-ellipsis">
|
|
10167
|
-
Fixed
|
|
10209
|
+
Fixed in v1.2.11
|
|
10168
10210
|
</span>
|
|
10169
10211
|
</a>
|
|
10170
10212
|
|
|
10171
10213
|
</li>
|
|
10172
10214
|
|
|
10173
10215
|
<li class="md-nav__item">
|
|
10174
|
-
<a href="#documentation" class="md-nav__link">
|
|
10216
|
+
<a href="#documentation-in-v1211" class="md-nav__link">
|
|
10175
10217
|
<span class="md-ellipsis">
|
|
10176
|
-
Documentation
|
|
10218
|
+
Documentation in v1.2.11
|
|
10177
10219
|
</span>
|
|
10178
10220
|
</a>
|
|
10179
10221
|
|
|
10180
10222
|
</li>
|
|
10181
10223
|
|
|
10182
10224
|
<li class="md-nav__item">
|
|
10183
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10225
|
+
<a href="#housekeeping-in-v1211" class="md-nav__link">
|
|
10184
10226
|
<span class="md-ellipsis">
|
|
10185
|
-
Housekeeping
|
|
10227
|
+
Housekeeping in v1.2.11
|
|
10186
10228
|
</span>
|
|
10187
10229
|
</a>
|
|
10188
10230
|
|
|
@@ -10204,18 +10246,18 @@
|
|
|
10204
10246
|
<ul class="md-nav__list">
|
|
10205
10247
|
|
|
10206
10248
|
<li class="md-nav__item">
|
|
10207
|
-
<a href="#
|
|
10249
|
+
<a href="#documentation-in-v1210" class="md-nav__link">
|
|
10208
10250
|
<span class="md-ellipsis">
|
|
10209
|
-
Documentation
|
|
10251
|
+
Documentation in v1.2.10
|
|
10210
10252
|
</span>
|
|
10211
10253
|
</a>
|
|
10212
10254
|
|
|
10213
10255
|
</li>
|
|
10214
10256
|
|
|
10215
10257
|
<li class="md-nav__item">
|
|
10216
|
-
<a href="#
|
|
10258
|
+
<a href="#housekeeping-in-v1210" class="md-nav__link">
|
|
10217
10259
|
<span class="md-ellipsis">
|
|
10218
|
-
Housekeeping
|
|
10260
|
+
Housekeeping in v1.2.10
|
|
10219
10261
|
</span>
|
|
10220
10262
|
</a>
|
|
10221
10263
|
|
|
@@ -10237,18 +10279,18 @@
|
|
|
10237
10279
|
<ul class="md-nav__list">
|
|
10238
10280
|
|
|
10239
10281
|
<li class="md-nav__item">
|
|
10240
|
-
<a href="#security" class="md-nav__link">
|
|
10282
|
+
<a href="#security-in-v129" class="md-nav__link">
|
|
10241
10283
|
<span class="md-ellipsis">
|
|
10242
|
-
Security
|
|
10284
|
+
Security in v1.2.9
|
|
10243
10285
|
</span>
|
|
10244
10286
|
</a>
|
|
10245
10287
|
|
|
10246
10288
|
</li>
|
|
10247
10289
|
|
|
10248
10290
|
<li class="md-nav__item">
|
|
10249
|
-
<a href="#
|
|
10291
|
+
<a href="#fixed-in-v129" class="md-nav__link">
|
|
10250
10292
|
<span class="md-ellipsis">
|
|
10251
|
-
Fixed
|
|
10293
|
+
Fixed in v1.2.9
|
|
10252
10294
|
</span>
|
|
10253
10295
|
</a>
|
|
10254
10296
|
|
|
@@ -10270,54 +10312,54 @@
|
|
|
10270
10312
|
<ul class="md-nav__list">
|
|
10271
10313
|
|
|
10272
10314
|
<li class="md-nav__item">
|
|
10273
|
-
<a href="#
|
|
10315
|
+
<a href="#added-in-v128" class="md-nav__link">
|
|
10274
10316
|
<span class="md-ellipsis">
|
|
10275
|
-
Added
|
|
10317
|
+
Added in v1.2.8
|
|
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="#changed-in-v128" class="md-nav__link">
|
|
10283
10325
|
<span class="md-ellipsis">
|
|
10284
|
-
Changed
|
|
10326
|
+
Changed in v1.2.8
|
|
10285
10327
|
</span>
|
|
10286
10328
|
</a>
|
|
10287
10329
|
|
|
10288
10330
|
</li>
|
|
10289
10331
|
|
|
10290
10332
|
<li class="md-nav__item">
|
|
10291
|
-
<a href="#
|
|
10333
|
+
<a href="#fixed-in-v128" class="md-nav__link">
|
|
10292
10334
|
<span class="md-ellipsis">
|
|
10293
|
-
Fixed
|
|
10335
|
+
Fixed in v1.2.8
|
|
10294
10336
|
</span>
|
|
10295
10337
|
</a>
|
|
10296
10338
|
|
|
10297
10339
|
</li>
|
|
10298
10340
|
|
|
10299
10341
|
<li class="md-nav__item">
|
|
10300
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10342
|
+
<a href="#dependencies-in-v128" class="md-nav__link">
|
|
10301
10343
|
<span class="md-ellipsis">
|
|
10302
|
-
Dependencies
|
|
10344
|
+
Dependencies in v1.2.8
|
|
10303
10345
|
</span>
|
|
10304
10346
|
</a>
|
|
10305
10347
|
|
|
10306
10348
|
</li>
|
|
10307
10349
|
|
|
10308
10350
|
<li class="md-nav__item">
|
|
10309
|
-
<a href="#
|
|
10351
|
+
<a href="#documentation-in-v128" class="md-nav__link">
|
|
10310
10352
|
<span class="md-ellipsis">
|
|
10311
|
-
Documentation
|
|
10353
|
+
Documentation in v1.2.8
|
|
10312
10354
|
</span>
|
|
10313
10355
|
</a>
|
|
10314
10356
|
|
|
10315
10357
|
</li>
|
|
10316
10358
|
|
|
10317
10359
|
<li class="md-nav__item">
|
|
10318
|
-
<a href="#
|
|
10360
|
+
<a href="#housekeeping-in-v128" class="md-nav__link">
|
|
10319
10361
|
<span class="md-ellipsis">
|
|
10320
|
-
Housekeeping
|
|
10362
|
+
Housekeeping in v1.2.8
|
|
10321
10363
|
</span>
|
|
10322
10364
|
</a>
|
|
10323
10365
|
|
|
@@ -10339,9 +10381,9 @@
|
|
|
10339
10381
|
<ul class="md-nav__list">
|
|
10340
10382
|
|
|
10341
10383
|
<li class="md-nav__item">
|
|
10342
|
-
<a href="#
|
|
10384
|
+
<a href="#housekeeping-in-v127" class="md-nav__link">
|
|
10343
10385
|
<span class="md-ellipsis">
|
|
10344
|
-
Housekeeping
|
|
10386
|
+
Housekeeping in v1.2.7
|
|
10345
10387
|
</span>
|
|
10346
10388
|
</a>
|
|
10347
10389
|
|
|
@@ -10363,45 +10405,45 @@
|
|
|
10363
10405
|
<ul class="md-nav__list">
|
|
10364
10406
|
|
|
10365
10407
|
<li class="md-nav__item">
|
|
10366
|
-
<a href="#
|
|
10408
|
+
<a href="#added-in-v126" class="md-nav__link">
|
|
10367
10409
|
<span class="md-ellipsis">
|
|
10368
|
-
Added
|
|
10410
|
+
Added in v1.2.6
|
|
10369
10411
|
</span>
|
|
10370
10412
|
</a>
|
|
10371
10413
|
|
|
10372
10414
|
</li>
|
|
10373
10415
|
|
|
10374
10416
|
<li class="md-nav__item">
|
|
10375
|
-
<a href="#
|
|
10417
|
+
<a href="#fixed-in-v126" class="md-nav__link">
|
|
10376
10418
|
<span class="md-ellipsis">
|
|
10377
|
-
Fixed
|
|
10419
|
+
Fixed in v1.2.6
|
|
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="#dependencies-in-v126" class="md-nav__link">
|
|
10385
10427
|
<span class="md-ellipsis">
|
|
10386
|
-
Dependencies
|
|
10428
|
+
Dependencies in v1.2.6
|
|
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-v126" class="md-nav__link">
|
|
10394
10436
|
<span class="md-ellipsis">
|
|
10395
|
-
Documentation
|
|
10437
|
+
Documentation in v1.2.6
|
|
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-v126" class="md-nav__link">
|
|
10403
10445
|
<span class="md-ellipsis">
|
|
10404
|
-
Housekeeping
|
|
10446
|
+
Housekeeping in v1.2.6
|
|
10405
10447
|
</span>
|
|
10406
10448
|
</a>
|
|
10407
10449
|
|
|
@@ -10423,27 +10465,27 @@
|
|
|
10423
10465
|
<ul class="md-nav__list">
|
|
10424
10466
|
|
|
10425
10467
|
<li class="md-nav__item">
|
|
10426
|
-
<a href="#
|
|
10468
|
+
<a href="#fixed-in-v125" class="md-nav__link">
|
|
10427
10469
|
<span class="md-ellipsis">
|
|
10428
|
-
Fixed
|
|
10470
|
+
Fixed in v1.2.5
|
|
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="#documentation-in-v125" class="md-nav__link">
|
|
10436
10478
|
<span class="md-ellipsis">
|
|
10437
|
-
Documentation
|
|
10479
|
+
Documentation in v1.2.5
|
|
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="#housekeeping-in-v125" class="md-nav__link">
|
|
10445
10487
|
<span class="md-ellipsis">
|
|
10446
|
-
Housekeeping
|
|
10488
|
+
Housekeeping in v1.2.5
|
|
10447
10489
|
</span>
|
|
10448
10490
|
</a>
|
|
10449
10491
|
|
|
@@ -10465,45 +10507,45 @@
|
|
|
10465
10507
|
<ul class="md-nav__list">
|
|
10466
10508
|
|
|
10467
10509
|
<li class="md-nav__item">
|
|
10468
|
-
<a href="#
|
|
10510
|
+
<a href="#security-in-v124" class="md-nav__link">
|
|
10469
10511
|
<span class="md-ellipsis">
|
|
10470
|
-
Security
|
|
10512
|
+
Security in v1.2.4
|
|
10471
10513
|
</span>
|
|
10472
10514
|
</a>
|
|
10473
10515
|
|
|
10474
10516
|
</li>
|
|
10475
10517
|
|
|
10476
10518
|
<li class="md-nav__item">
|
|
10477
|
-
<a href="#
|
|
10519
|
+
<a href="#changed-in-v124" class="md-nav__link">
|
|
10478
10520
|
<span class="md-ellipsis">
|
|
10479
|
-
Changed
|
|
10521
|
+
Changed in v1.2.4
|
|
10480
10522
|
</span>
|
|
10481
10523
|
</a>
|
|
10482
10524
|
|
|
10483
10525
|
</li>
|
|
10484
10526
|
|
|
10485
10527
|
<li class="md-nav__item">
|
|
10486
|
-
<a href="#
|
|
10528
|
+
<a href="#fixed-in-v124" class="md-nav__link">
|
|
10487
10529
|
<span class="md-ellipsis">
|
|
10488
|
-
Fixed
|
|
10530
|
+
Fixed in v1.2.4
|
|
10489
10531
|
</span>
|
|
10490
10532
|
</a>
|
|
10491
10533
|
|
|
10492
10534
|
</li>
|
|
10493
10535
|
|
|
10494
10536
|
<li class="md-nav__item">
|
|
10495
|
-
<a href="#
|
|
10537
|
+
<a href="#documentation-in-v124" class="md-nav__link">
|
|
10496
10538
|
<span class="md-ellipsis">
|
|
10497
|
-
Documentation
|
|
10539
|
+
Documentation in v1.2.4
|
|
10498
10540
|
</span>
|
|
10499
10541
|
</a>
|
|
10500
10542
|
|
|
10501
10543
|
</li>
|
|
10502
10544
|
|
|
10503
10545
|
<li class="md-nav__item">
|
|
10504
|
-
<a href="#
|
|
10546
|
+
<a href="#housekeeping-in-v124" class="md-nav__link">
|
|
10505
10547
|
<span class="md-ellipsis">
|
|
10506
|
-
Housekeeping
|
|
10548
|
+
Housekeeping in v1.2.4
|
|
10507
10549
|
</span>
|
|
10508
10550
|
</a>
|
|
10509
10551
|
|
|
@@ -10525,27 +10567,27 @@
|
|
|
10525
10567
|
<ul class="md-nav__list">
|
|
10526
10568
|
|
|
10527
10569
|
<li class="md-nav__item">
|
|
10528
|
-
<a href="#
|
|
10570
|
+
<a href="#security-in-v123" class="md-nav__link">
|
|
10529
10571
|
<span class="md-ellipsis">
|
|
10530
|
-
Security
|
|
10572
|
+
Security in v1.2.3
|
|
10531
10573
|
</span>
|
|
10532
10574
|
</a>
|
|
10533
10575
|
|
|
10534
10576
|
</li>
|
|
10535
10577
|
|
|
10536
10578
|
<li class="md-nav__item">
|
|
10537
|
-
<a href="#
|
|
10579
|
+
<a href="#fixed-in-v123" class="md-nav__link">
|
|
10538
10580
|
<span class="md-ellipsis">
|
|
10539
|
-
Fixed
|
|
10581
|
+
Fixed in v1.2.3
|
|
10540
10582
|
</span>
|
|
10541
10583
|
</a>
|
|
10542
10584
|
|
|
10543
10585
|
</li>
|
|
10544
10586
|
|
|
10545
10587
|
<li class="md-nav__item">
|
|
10546
|
-
<a href="#
|
|
10588
|
+
<a href="#documentation-in-v123" class="md-nav__link">
|
|
10547
10589
|
<span class="md-ellipsis">
|
|
10548
|
-
Documentation
|
|
10590
|
+
Documentation in v1.2.3
|
|
10549
10591
|
</span>
|
|
10550
10592
|
</a>
|
|
10551
10593
|
|
|
@@ -10567,36 +10609,36 @@
|
|
|
10567
10609
|
<ul class="md-nav__list">
|
|
10568
10610
|
|
|
10569
10611
|
<li class="md-nav__item">
|
|
10570
|
-
<a href="#
|
|
10612
|
+
<a href="#added-in-v122" class="md-nav__link">
|
|
10571
10613
|
<span class="md-ellipsis">
|
|
10572
|
-
Added
|
|
10614
|
+
Added in v1.2.2
|
|
10573
10615
|
</span>
|
|
10574
10616
|
</a>
|
|
10575
10617
|
|
|
10576
10618
|
</li>
|
|
10577
10619
|
|
|
10578
10620
|
<li class="md-nav__item">
|
|
10579
|
-
<a href="#
|
|
10621
|
+
<a href="#changed-in-v122" class="md-nav__link">
|
|
10580
10622
|
<span class="md-ellipsis">
|
|
10581
|
-
Changed
|
|
10623
|
+
Changed in v1.2.2
|
|
10582
10624
|
</span>
|
|
10583
10625
|
</a>
|
|
10584
10626
|
|
|
10585
10627
|
</li>
|
|
10586
10628
|
|
|
10587
10629
|
<li class="md-nav__item">
|
|
10588
|
-
<a href="#
|
|
10630
|
+
<a href="#fixed-in-v122" class="md-nav__link">
|
|
10589
10631
|
<span class="md-ellipsis">
|
|
10590
|
-
Fixed
|
|
10632
|
+
Fixed in v1.2.2
|
|
10591
10633
|
</span>
|
|
10592
10634
|
</a>
|
|
10593
10635
|
|
|
10594
10636
|
</li>
|
|
10595
10637
|
|
|
10596
10638
|
<li class="md-nav__item">
|
|
10597
|
-
<a href="#
|
|
10639
|
+
<a href="#documentation-in-v122" class="md-nav__link">
|
|
10598
10640
|
<span class="md-ellipsis">
|
|
10599
|
-
Documentation
|
|
10641
|
+
Documentation in v1.2.2
|
|
10600
10642
|
</span>
|
|
10601
10643
|
</a>
|
|
10602
10644
|
|
|
@@ -10618,36 +10660,36 @@
|
|
|
10618
10660
|
<ul class="md-nav__list">
|
|
10619
10661
|
|
|
10620
10662
|
<li class="md-nav__item">
|
|
10621
|
-
<a href="#
|
|
10663
|
+
<a href="#security-in-v121" class="md-nav__link">
|
|
10622
10664
|
<span class="md-ellipsis">
|
|
10623
|
-
Security
|
|
10665
|
+
Security in v1.2.1
|
|
10624
10666
|
</span>
|
|
10625
10667
|
</a>
|
|
10626
10668
|
|
|
10627
10669
|
</li>
|
|
10628
10670
|
|
|
10629
10671
|
<li class="md-nav__item">
|
|
10630
|
-
<a href="#
|
|
10672
|
+
<a href="#added-in-v121" class="md-nav__link">
|
|
10631
10673
|
<span class="md-ellipsis">
|
|
10632
|
-
Added
|
|
10674
|
+
Added in v1.2.1
|
|
10633
10675
|
</span>
|
|
10634
10676
|
</a>
|
|
10635
10677
|
|
|
10636
10678
|
</li>
|
|
10637
10679
|
|
|
10638
10680
|
<li class="md-nav__item">
|
|
10639
|
-
<a href="#
|
|
10681
|
+
<a href="#changed-in-v121" class="md-nav__link">
|
|
10640
10682
|
<span class="md-ellipsis">
|
|
10641
|
-
Changed
|
|
10683
|
+
Changed in v1.2.1
|
|
10642
10684
|
</span>
|
|
10643
10685
|
</a>
|
|
10644
10686
|
|
|
10645
10687
|
</li>
|
|
10646
10688
|
|
|
10647
10689
|
<li class="md-nav__item">
|
|
10648
|
-
<a href="#
|
|
10690
|
+
<a href="#fixed-in-v121" class="md-nav__link">
|
|
10649
10691
|
<span class="md-ellipsis">
|
|
10650
|
-
Fixed
|
|
10692
|
+
Fixed in v1.2.1
|
|
10651
10693
|
</span>
|
|
10652
10694
|
</a>
|
|
10653
10695
|
|
|
@@ -10669,54 +10711,54 @@
|
|
|
10669
10711
|
<ul class="md-nav__list">
|
|
10670
10712
|
|
|
10671
10713
|
<li class="md-nav__item">
|
|
10672
|
-
<a href="#
|
|
10714
|
+
<a href="#added-in-v120" class="md-nav__link">
|
|
10673
10715
|
<span class="md-ellipsis">
|
|
10674
|
-
Added
|
|
10716
|
+
Added in v1.2.0
|
|
10675
10717
|
</span>
|
|
10676
10718
|
</a>
|
|
10677
10719
|
|
|
10678
10720
|
</li>
|
|
10679
10721
|
|
|
10680
10722
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#
|
|
10723
|
+
<a href="#changed-in-v120" class="md-nav__link">
|
|
10682
10724
|
<span class="md-ellipsis">
|
|
10683
|
-
Changed
|
|
10725
|
+
Changed in v1.2.0
|
|
10684
10726
|
</span>
|
|
10685
10727
|
</a>
|
|
10686
10728
|
|
|
10687
10729
|
</li>
|
|
10688
10730
|
|
|
10689
10731
|
<li class="md-nav__item">
|
|
10690
|
-
<a href="#removed" class="md-nav__link">
|
|
10732
|
+
<a href="#removed-in-v120" class="md-nav__link">
|
|
10691
10733
|
<span class="md-ellipsis">
|
|
10692
|
-
Removed
|
|
10734
|
+
Removed in v1.2.0
|
|
10693
10735
|
</span>
|
|
10694
10736
|
</a>
|
|
10695
10737
|
|
|
10696
10738
|
</li>
|
|
10697
10739
|
|
|
10698
10740
|
<li class="md-nav__item">
|
|
10699
|
-
<a href="#
|
|
10741
|
+
<a href="#fixed-in-v120" class="md-nav__link">
|
|
10700
10742
|
<span class="md-ellipsis">
|
|
10701
|
-
Fixed
|
|
10743
|
+
Fixed in v1.2.0
|
|
10702
10744
|
</span>
|
|
10703
10745
|
</a>
|
|
10704
10746
|
|
|
10705
10747
|
</li>
|
|
10706
10748
|
|
|
10707
10749
|
<li class="md-nav__item">
|
|
10708
|
-
<a href="#
|
|
10750
|
+
<a href="#dependencies-in-v120" class="md-nav__link">
|
|
10709
10751
|
<span class="md-ellipsis">
|
|
10710
|
-
Dependencies
|
|
10752
|
+
Dependencies in v1.2.0
|
|
10711
10753
|
</span>
|
|
10712
10754
|
</a>
|
|
10713
10755
|
|
|
10714
10756
|
</li>
|
|
10715
10757
|
|
|
10716
10758
|
<li class="md-nav__item">
|
|
10717
|
-
<a href="#
|
|
10759
|
+
<a href="#documentation-in-v120" class="md-nav__link">
|
|
10718
10760
|
<span class="md-ellipsis">
|
|
10719
|
-
Documentation
|
|
10761
|
+
Documentation in v1.2.0
|
|
10720
10762
|
</span>
|
|
10721
10763
|
</a>
|
|
10722
10764
|
|
|
@@ -10738,54 +10780,54 @@
|
|
|
10738
10780
|
<ul class="md-nav__list">
|
|
10739
10781
|
|
|
10740
10782
|
<li class="md-nav__item">
|
|
10741
|
-
<a href="#
|
|
10783
|
+
<a href="#security-in-v120b1" class="md-nav__link">
|
|
10742
10784
|
<span class="md-ellipsis">
|
|
10743
|
-
Security
|
|
10785
|
+
Security in v1.2.0b1
|
|
10744
10786
|
</span>
|
|
10745
10787
|
</a>
|
|
10746
10788
|
|
|
10747
10789
|
</li>
|
|
10748
10790
|
|
|
10749
10791
|
<li class="md-nav__item">
|
|
10750
|
-
<a href="#
|
|
10792
|
+
<a href="#added-in-v120b1" class="md-nav__link">
|
|
10751
10793
|
<span class="md-ellipsis">
|
|
10752
|
-
Added
|
|
10794
|
+
Added in v1.2.0b1
|
|
10753
10795
|
</span>
|
|
10754
10796
|
</a>
|
|
10755
10797
|
|
|
10756
10798
|
</li>
|
|
10757
10799
|
|
|
10758
10800
|
<li class="md-nav__item">
|
|
10759
|
-
<a href="#
|
|
10801
|
+
<a href="#changed-in-v120b1" class="md-nav__link">
|
|
10760
10802
|
<span class="md-ellipsis">
|
|
10761
|
-
Changed
|
|
10803
|
+
Changed in v1.2.0b1
|
|
10762
10804
|
</span>
|
|
10763
10805
|
</a>
|
|
10764
10806
|
|
|
10765
10807
|
</li>
|
|
10766
10808
|
|
|
10767
10809
|
<li class="md-nav__item">
|
|
10768
|
-
<a href="#
|
|
10810
|
+
<a href="#fixed-in-v120b1" class="md-nav__link">
|
|
10769
10811
|
<span class="md-ellipsis">
|
|
10770
|
-
Fixed
|
|
10812
|
+
Fixed in v1.2.0b1
|
|
10771
10813
|
</span>
|
|
10772
10814
|
</a>
|
|
10773
10815
|
|
|
10774
10816
|
</li>
|
|
10775
10817
|
|
|
10776
10818
|
<li class="md-nav__item">
|
|
10777
|
-
<a href="#
|
|
10819
|
+
<a href="#documentation-in-v120b1" class="md-nav__link">
|
|
10778
10820
|
<span class="md-ellipsis">
|
|
10779
|
-
Documentation
|
|
10821
|
+
Documentation in v1.2.0b1
|
|
10780
10822
|
</span>
|
|
10781
10823
|
</a>
|
|
10782
10824
|
|
|
10783
10825
|
</li>
|
|
10784
10826
|
|
|
10785
10827
|
<li class="md-nav__item">
|
|
10786
|
-
<a href="#
|
|
10828
|
+
<a href="#housekeeping-in-v120b1" class="md-nav__link">
|
|
10787
10829
|
<span class="md-ellipsis">
|
|
10788
|
-
Housekeeping
|
|
10830
|
+
Housekeeping in v1.2.0b1
|
|
10789
10831
|
</span>
|
|
10790
10832
|
</a>
|
|
10791
10833
|
|
|
@@ -10814,7 +10856,6 @@
|
|
|
10814
10856
|
|
|
10815
10857
|
|
|
10816
10858
|
|
|
10817
|
-
<!-- markdownlint-disable MD024 -->
|
|
10818
10859
|
<h1 id="nautobot-v12">Nautobot v1.2<a class="headerlink" href="#nautobot-v12" title="Permanent link">¶</a></h1>
|
|
10819
10860
|
<p>This document describes all new features and changes in Nautobot 1.2.</p>
|
|
10820
10861
|
<p>If you are a user migrating from NetBox to Nautobot, please refer to the <a href="../user-guide/administration/migration/migrating-from-netbox.html">"Migrating from NetBox"</a> documentation.</p>
|
|
@@ -10902,51 +10943,51 @@
|
|
|
10902
10943
|
<p>All models that have <code>slug</code> fields now use <code>AutoSlugField</code> from the <code>django-extensions</code> package. This means that when creating a record via the REST API, CSV import, or direct ORM Python calls, the <code>slug</code> field is now fully optional; if unspecified, it will be automatically assigned a unique value, just as how a <code>slug</code> is auto-populated in the UI when creating a new record.</p>
|
|
10903
10944
|
<p>Just as with the UI, the <code>slug</code> can still always be explicitly set if desired.</p>
|
|
10904
10945
|
<h2 id="v1211-2022-04-04">v1.2.11 (2022-04-04)<a class="headerlink" href="#v1211-2022-04-04" title="Permanent link">¶</a></h2>
|
|
10905
|
-
<h3 id="
|
|
10946
|
+
<h3 id="added-in-v1211">Added in v1.2.11<a class="headerlink" href="#added-in-v1211" title="Permanent link">¶</a></h3>
|
|
10906
10947
|
<ul>
|
|
10907
10948
|
<li><a href="https://github.com/nautobot/nautobot/issues/1123">#1123</a> - Add validation for IPAddress <code>assigned_object_type</code> and <code>assigned_object_id</code>.</li>
|
|
10908
10949
|
<li><a href="https://github.com/nautobot/nautobot/issues/1146">#1146</a> - Added change date filtering lookup expressions to GraphQL.</li>
|
|
10909
10950
|
<li><a href="https://github.com/nautobot/nautobot/issues/1495">#1495</a> - Added full coverage of cable termination types to Graphene.</li>
|
|
10910
10951
|
<li><a href="https://github.com/nautobot/nautobot/issues/1501">#1501</a> - Add IP field to CSV export of device.</li>
|
|
10911
10952
|
</ul>
|
|
10912
|
-
<h3 id="
|
|
10953
|
+
<h3 id="changed-in-v1211">Changed in v1.2.11<a class="headerlink" href="#changed-in-v1211" title="Permanent link">¶</a></h3>
|
|
10913
10954
|
<ul>
|
|
10914
10955
|
<li><a href="https://github.com/nautobot/nautobot/pull/1536">#1536</a> - Removed the ServiceUnavailable exception when no <code>primary_ip</code> is available for a device, but other connection options are available.</li>
|
|
10915
10956
|
<li><a href="https://github.com/nautobot/nautobot/issues/1581">#1581</a> - Changed MultipleChoiceJSONField to accept choices as a callable, fixing Datasource Contents provided by plugins are not accepted as valid choice by REST API.</li>
|
|
10916
10957
|
</ul>
|
|
10917
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10958
|
+
<h3 id="fixed-in-v1211">Fixed in v1.2.11<a class="headerlink" href="#fixed-in-v1211" title="Permanent link">¶</a></h3>
|
|
10918
10959
|
<ul>
|
|
10919
10960
|
<li><a href="https://github.com/nautobot/nautobot/issues/1313">#1313</a> - Fixed GraphQL query error on OneToOneFields such as <code>IPAddress.primary_ip4_for</code></li>
|
|
10920
10961
|
<li><a href="https://github.com/nautobot/nautobot/issues/1408">#1408</a> - Fixed incorrect HTML in the Devices detail views.</li>
|
|
10921
10962
|
<li><a href="https://github.com/nautobot/nautobot/issues/1467">#1467</a> - Fixed an issue where at certain browser widths the nav bar would cover the top of the page content.</li>
|
|
10922
10963
|
<li><a href="https://github.com/nautobot/nautobot/issues/1523">#1523</a> - Fixed primary IP being unset after creating/updating different interface</li>
|
|
10923
10964
|
</ul>
|
|
10924
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10965
|
+
<h3 id="documentation-in-v1211">Documentation in v1.2.11<a class="headerlink" href="#documentation-in-v1211" title="Permanent link">¶</a></h3>
|
|
10925
10966
|
<ul>
|
|
10926
10967
|
<li><a href="https://github.com/nautobot/nautobot/pull/1529">#1529</a> - Added list of standard hex colors to the Tags documentation.</li>
|
|
10927
10968
|
<li><a href="https://github.com/nautobot/nautobot/issues/1583">#1583</a> - Fixed Nautobot service definition in PostgreSQL-backed development environment.</li>
|
|
10928
10969
|
<li><a href="https://github.com/nautobot/nautobot/issues/1584">#1584</a> - Replaced links in docs to celeryproject.org with celeryq.dev</li>
|
|
10929
10970
|
</ul>
|
|
10930
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10971
|
+
<h3 id="housekeeping-in-v1211">Housekeeping in v1.2.11<a class="headerlink" href="#housekeeping-in-v1211" title="Permanent link">¶</a></h3>
|
|
10931
10972
|
<ul>
|
|
10932
10973
|
<li><a href="https://github.com/nautobot/nautobot/issues/1548">#1548</a> - Pin Jinja2 version for mkdocs requirements to fix RTD docs builds related to API deprecation in Jinja2 >= 3.1.0</li>
|
|
10933
10974
|
<li><a href="https://github.com/nautobot/nautobot/pull/1599">#1599</a> - Bump mkdocs version for Snyk report.</li>
|
|
10934
10975
|
</ul>
|
|
10935
10976
|
<h2 id="v1210-2022-03-21">v1.2.10 (2022-03-21)<a class="headerlink" href="#v1210-2022-03-21" title="Permanent link">¶</a></h2>
|
|
10936
|
-
<h3 id="
|
|
10977
|
+
<h3 id="documentation-in-v1210">Documentation in v1.2.10<a class="headerlink" href="#documentation-in-v1210" title="Permanent link">¶</a></h3>
|
|
10937
10978
|
<ul>
|
|
10938
10979
|
<li><a href="https://github.com/nautobot/nautobot/pull/1492">#1492</a> - Added note in the Jobs documentation about the use of <code>AbortTransaction</code> to end the job and force rollback.</li>
|
|
10939
10980
|
<li><a href="https://github.com/nautobot/nautobot/issues/1511">#1511</a> - Fixed left column of Read The Docs being cut off.</li>
|
|
10940
10981
|
<li><a href="https://github.com/nautobot/nautobot/pull/1517">#1517</a> - Added password filtering example to advanced logging section in docs.</li>
|
|
10941
10982
|
<li><a href="https://github.com/nautobot/nautobot/pull/1522">#1522</a> - Fixed link name attribute name in developer docs.</li>
|
|
10942
10983
|
</ul>
|
|
10943
|
-
<h3 id="
|
|
10984
|
+
<h3 id="housekeeping-in-v1210">Housekeeping in v1.2.10<a class="headerlink" href="#housekeeping-in-v1210" title="Permanent link">¶</a></h3>
|
|
10944
10985
|
<ul>
|
|
10945
10986
|
<li><a href="https://github.com/nautobot/nautobot/pull/1514">#1514</a> - Simplified switching between PostgreSQL and MySQL database backends in the developer environment.</li>
|
|
10946
10987
|
<li><a href="https://github.com/nautobot/nautobot/pull/1518">#1518</a> - Updated GitHub Pull Request template to include detail section, todo list.</li>
|
|
10947
10988
|
</ul>
|
|
10948
10989
|
<h2 id="v129-2022-03-14">v1.2.9 (2022-03-14)<a class="headerlink" href="#v129-2022-03-14" title="Permanent link">¶</a></h2>
|
|
10949
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10990
|
+
<h3 id="security-in-v129">Security in v1.2.9<a class="headerlink" href="#security-in-v129" title="Permanent link">¶</a></h3>
|
|
10950
10991
|
<div class="admonition danger">
|
|
10951
10992
|
<p class="admonition-title">Danger</p>
|
|
10952
10993
|
<p>It is highly recommended that users of Python 3.6 prioritize upgrading to a newer version of Python. <strong>Nautobot will be removing support for Python 3.6 in a future update.</strong></p>
|
|
@@ -10958,23 +10999,23 @@
|
|
|
10958
10999
|
<ul>
|
|
10959
11000
|
<li><a href="https://github.com/nautobot/nautobot/issues/1487">#1487</a> - Implemented fixes for <a href="https://github.com/advisories/GHSA-8vj2-vxx3-667w">CVE-2022-22817</a>, <a href="https://github.com/advisories/GHSA-9j59-75qj-795w">CVE-2022-24303</a>, and <a href="https://github.com/advisories/GHSA-4fx9-vc88-q2xc">potential infinite loop</a> by requiring Pillow >=9.0.1 for Python version >=3.7. For Python version <3.7 (e.g. 3.6), it is recommended that you prioritize upgrading your environment to use Python 3.7 or higher. Support for Python 3.6 will be removed in a future update.</li>
|
|
10960
11001
|
</ul>
|
|
10961
|
-
<h3 id="
|
|
11002
|
+
<h3 id="fixed-in-v129">Fixed in v1.2.9<a class="headerlink" href="#fixed-in-v129" title="Permanent link">¶</a></h3>
|
|
10962
11003
|
<ul>
|
|
10963
11004
|
<li><a href="https://github.com/nautobot/nautobot/issues/1431">#1431</a> - Fixed potential failure of <code>extras.0017_joblog_data_migration</code> migration when the job logs contain messages mistakenly logged as object references.</li>
|
|
10964
11005
|
<li><a href="https://github.com/nautobot/nautobot/issues/1459">#1459</a> - Fixed incorrect display of related devices and VMs in the Cluster Type and Cluster Group detail views.</li>
|
|
10965
11006
|
<li><a href="https://github.com/nautobot/nautobot/issues/1469">#1469</a> - Fixed incorrect CSV export for devices</li>
|
|
10966
11007
|
</ul>
|
|
10967
11008
|
<h2 id="v128-2022-03-07">v1.2.8 (2022-03-07)<a class="headerlink" href="#v128-2022-03-07" title="Permanent link">¶</a></h2>
|
|
10968
|
-
<h3 id="
|
|
11009
|
+
<h3 id="added-in-v128">Added in v1.2.8<a class="headerlink" href="#added-in-v128" title="Permanent link">¶</a></h3>
|
|
10969
11010
|
<ul>
|
|
10970
11011
|
<li><a href="https://github.com/nautobot/nautobot/issues/1242">#1242</a> - Add MAJOR.MINOR tags to Docker images upon release.</li>
|
|
10971
11012
|
<li><a href="https://github.com/nautobot/nautobot/pull/1446">#1446</a> - Apply title labels to Docker images.</li>
|
|
10972
11013
|
</ul>
|
|
10973
|
-
<h3 id="
|
|
11014
|
+
<h3 id="changed-in-v128">Changed in v1.2.8<a class="headerlink" href="#changed-in-v128" title="Permanent link">¶</a></h3>
|
|
10974
11015
|
<ul>
|
|
10975
11016
|
<li><a href="https://github.com/nautobot/nautobot/pull/1452">#1452</a> - Changed GitHub release workflow to not run on prerelease releases.</li>
|
|
10976
11017
|
</ul>
|
|
10977
|
-
<h3 id="
|
|
11018
|
+
<h3 id="fixed-in-v128">Fixed in v1.2.8<a class="headerlink" href="#fixed-in-v128" title="Permanent link">¶</a></h3>
|
|
10978
11019
|
<ul>
|
|
10979
11020
|
<li><a href="https://github.com/nautobot/nautobot/issues/1301">#1301</a> - Fixed window history handling for views with tabs in Safari/Firefox.</li>
|
|
10980
11021
|
<li><a href="https://github.com/nautobot/nautobot/issues/1302">#1302</a> - Fixed missing Advanced tab on Virtual Machine detail view.</li>
|
|
@@ -10984,15 +11025,15 @@
|
|
|
10984
11025
|
<li><a href="https://github.com/nautobot/nautobot/issues/1412">#1412</a> - Fixed not being able to query for prefix family via GraphQL.</li>
|
|
10985
11026
|
<li><a href="https://github.com/nautobot/nautobot/issues/1442">#1442</a> - Fixed missing Advanced tab on Job Result, Git Repository, and Config Context Schema detail views.</li>
|
|
10986
11027
|
</ul>
|
|
10987
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11028
|
+
<h3 id="dependencies-in-v128">Dependencies in v1.2.8<a class="headerlink" href="#dependencies-in-v128" title="Permanent link">¶</a></h3>
|
|
10988
11029
|
<ul>
|
|
10989
11030
|
<li><a href="https://github.com/nautobot/nautobot/issues/1432">#1432</a> - Update django-redis to <code>5.2.x</code> to address <code>5.1.x</code> blocking redis <code>4.x</code> versions.</li>
|
|
10990
11031
|
</ul>
|
|
10991
|
-
<h3 id="
|
|
11032
|
+
<h3 id="documentation-in-v128">Documentation in v1.2.8<a class="headerlink" href="#documentation-in-v128" title="Permanent link">¶</a></h3>
|
|
10992
11033
|
<ul>
|
|
10993
11034
|
<li><a href="https://github.com/nautobot/nautobot/pull/1419">#1419</a> - Add documentation for specifying a CA cert file for LDAP authentication backend.</li>
|
|
10994
11035
|
</ul>
|
|
10995
|
-
<h3 id="
|
|
11036
|
+
<h3 id="housekeeping-in-v128">Housekeeping in v1.2.8<a class="headerlink" href="#housekeeping-in-v128" title="Permanent link">¶</a></h3>
|
|
10996
11037
|
<ul>
|
|
10997
11038
|
<li><a href="https://github.com/nautobot/nautobot/issues/839">#839</a> - Add CODE_OF_CONDUCT.md to repository.</li>
|
|
10998
11039
|
<li><a href="https://github.com/nautobot/nautobot/pull/1299">#1299</a> - Add SECURITY.md to repository.</li>
|
|
@@ -11002,17 +11043,17 @@
|
|
|
11002
11043
|
<li><a href="https://github.com/nautobot/nautobot/pull/1453">#1453</a> - Changed feature request to use GitHub Issue Form.</li>
|
|
11003
11044
|
</ul>
|
|
11004
11045
|
<h2 id="v127-2022-02-22">v1.2.7 (2022-02-22)<a class="headerlink" href="#v127-2022-02-22" title="Permanent link">¶</a></h2>
|
|
11005
|
-
<h3 id="
|
|
11046
|
+
<h3 id="housekeeping-in-v127">Housekeeping in v1.2.7<a class="headerlink" href="#housekeeping-in-v127" title="Permanent link">¶</a></h3>
|
|
11006
11047
|
<ul>
|
|
11007
11048
|
<li><a href="https://github.com/nautobot/nautobot/issues/1403">#1403</a> - Changes the GitHub Action on Release version template variable name.</li>
|
|
11008
11049
|
</ul>
|
|
11009
11050
|
<h2 id="v126-2022-02-22">v1.2.6 (2022-02-22)<a class="headerlink" href="#v126-2022-02-22" title="Permanent link">¶</a></h2>
|
|
11010
|
-
<h3 id="
|
|
11051
|
+
<h3 id="added-in-v126">Added in v1.2.6<a class="headerlink" href="#added-in-v126" title="Permanent link">¶</a></h3>
|
|
11011
11052
|
<ul>
|
|
11012
11053
|
<li><a href="https://github.com/nautobot/nautobot/issues/1279">#1279</a> - Circuit terminations now render custom relationships on the circuit detail page.</li>
|
|
11013
11054
|
<li><a href="https://github.com/nautobot/nautobot/issues/1353">#1353</a> - Added UI for deleting previously uploaded images when editing a DeviceType.</li>
|
|
11014
11055
|
</ul>
|
|
11015
|
-
<h3 id="
|
|
11056
|
+
<h3 id="fixed-in-v126">Fixed in v1.2.6<a class="headerlink" href="#fixed-in-v126" title="Permanent link">¶</a></h3>
|
|
11016
11057
|
<ul>
|
|
11017
11058
|
<li><a href="https://github.com/nautobot/nautobot/issues/1249">#1249</a> - Fixed a timing issue where after creating a custom field with a default value and immediately assigning values to this custom field on individual objects, the custom field values could be automatically reverted to the default value.</li>
|
|
11018
11059
|
<li><a href="https://github.com/nautobot/nautobot/pull/1280">#1280</a> - Added missing <code>get_absolute_url</code> method to the <code>CircuitTermination</code> model, fixing a UI error that could occur when relationships involve CircuitTerminations.</li>
|
|
@@ -11021,23 +11062,23 @@
|
|
|
11021
11062
|
<li><a href="https://github.com/nautobot/nautobot/issues/1335">#1335</a> - Fixed an issue with the Secret create/edit form that caused problems when defining AWS secrets using the <code>nautobot-secrets-providers</code> plugin.</li>
|
|
11022
11063
|
<li><a href="https://github.com/nautobot/nautobot/issues/1346">#1346</a> - Fixed an error in the periodic execution of Celery's built-in <code>celery.backend_cleanup</code> task.</li>
|
|
11023
11064
|
</ul>
|
|
11024
|
-
<h3 id="
|
|
11065
|
+
<h3 id="dependencies-in-v126">Dependencies in v1.2.6<a class="headerlink" href="#dependencies-in-v126" title="Permanent link">¶</a></h3>
|
|
11025
11066
|
<ul>
|
|
11026
11067
|
<li><a href="https://github.com/nautobot/nautobot/issues/1390">#1390</a> - Pinned transitive dependency <code>MarkupSafe</code> to version 2.0.1 as later versions are incompatible with Nautobot's current <code>Jinja2</code> dependency.</li>
|
|
11027
11068
|
</ul>
|
|
11028
|
-
<h3 id="
|
|
11069
|
+
<h3 id="documentation-in-v126">Documentation in v1.2.6<a class="headerlink" href="#documentation-in-v126" title="Permanent link">¶</a></h3>
|
|
11029
11070
|
<ul>
|
|
11030
11071
|
<li><a href="https://github.com/nautobot/nautobot/pull/1283">#1283</a> - Update Sentinel docs to have 3 hosts (minimum per Redis docs), and change <code>CELERY_BROKER_URL</code> to a multiline string instead of a Tuple (tuple is invalid, and raises an exception when job completes).</li>
|
|
11031
11072
|
<li><a href="https://github.com/nautobot/nautobot/pull/1328">#1328</a> - Fixed an error in the <a href="../user-guide/platform-functionality/jobs/index.html#jobs-and-class_path">Job class-path documentation</a>.</li>
|
|
11032
11073
|
<li><a href="https://github.com/nautobot/nautobot/issues/1386">#1386</a> - Updated release schedule in docs for patch releases, now every two weeks.</li>
|
|
11033
11074
|
</ul>
|
|
11034
|
-
<h3 id="
|
|
11075
|
+
<h3 id="housekeeping-in-v126">Housekeeping in v1.2.6<a class="headerlink" href="#housekeeping-in-v126" title="Permanent link">¶</a></h3>
|
|
11035
11076
|
<ul>
|
|
11036
11077
|
<li><a href="https://github.com/nautobot/nautobot/pull/1327">#1327</a> - Fixes the broken dependencies from the Release action.</li>
|
|
11037
11078
|
<li><a href="https://github.com/nautobot/nautobot/issues/1360">#1360</a> - Fixed an issue in the development environment that could cause Selenium integration tests to error out.</li>
|
|
11038
11079
|
</ul>
|
|
11039
11080
|
<h2 id="v125-2022-02-02">v1.2.5 (2022-02-02)<a class="headerlink" href="#v125-2022-02-02" title="Permanent link">¶</a></h2>
|
|
11040
|
-
<h3 id="
|
|
11081
|
+
<h3 id="fixed-in-v125">Fixed in v1.2.5<a class="headerlink" href="#fixed-in-v125" title="Permanent link">¶</a></h3>
|
|
11041
11082
|
<ul>
|
|
11042
11083
|
<li><a href="https://github.com/nautobot/nautobot/issues/371">#371</a> - Fixed a server error that could occur when importing cables via CSV.</li>
|
|
11043
11084
|
<li><a href="https://github.com/nautobot/nautobot/issues/1161">#1161</a> - The <code>description</code> field for device component templates is now correctly propagated to device components created from these templates.</li>
|
|
@@ -11045,16 +11086,16 @@
|
|
|
11045
11086
|
<li><a href="https://github.com/nautobot/nautobot/issues/1282">#1282</a> - Fixed a server error when editing User accounts.</li>
|
|
11046
11087
|
<li><a href="https://github.com/nautobot/nautobot/pull/1308">#1308</a> - Fixed another server error that could occur when importing cables via CSV.</li>
|
|
11047
11088
|
</ul>
|
|
11048
|
-
<h3 id="
|
|
11089
|
+
<h3 id="documentation-in-v125">Documentation in v1.2.5<a class="headerlink" href="#documentation-in-v125" title="Permanent link">¶</a></h3>
|
|
11049
11090
|
<ul>
|
|
11050
11091
|
<li><a href="https://github.com/nautobot/nautobot/pull/1293">#1293</a> - Reorganized the developer documents somewhat to reduce duplication of information, added diagrams for issue intake process.</li>
|
|
11051
11092
|
</ul>
|
|
11052
|
-
<h3 id="
|
|
11093
|
+
<h3 id="housekeeping-in-v125">Housekeeping in v1.2.5<a class="headerlink" href="#housekeeping-in-v125" title="Permanent link">¶</a></h3>
|
|
11053
11094
|
<ul>
|
|
11054
11095
|
<li><a href="https://github.com/nautobot/nautobot/pull/1272">#1272</a> - Fixed GitHub Actions syntax and Slack payload for <code>release</code> CI workflow</li>
|
|
11055
11096
|
</ul>
|
|
11056
11097
|
<h2 id="v124-2022-01-13">v1.2.4 (2022-01-13)<a class="headerlink" href="#v124-2022-01-13" title="Permanent link">¶</a></h2>
|
|
11057
|
-
<h3 id="
|
|
11098
|
+
<h3 id="security-in-v124">Security in v1.2.4<a class="headerlink" href="#security-in-v124" title="Permanent link">¶</a></h3>
|
|
11058
11099
|
<div class="admonition danger">
|
|
11059
11100
|
<p class="admonition-title">Danger</p>
|
|
11060
11101
|
<p>It is highly recommended that users of Python 3.6 prioritize upgrading to a newer version of Python. <strong>Nautobot will be removing support for Python 3.6 in a future update.</strong></p>
|
|
@@ -11066,27 +11107,27 @@
|
|
|
11066
11107
|
<ul>
|
|
11067
11108
|
<li><a href="https://github.com/nautobot/nautobot/issues/1267">#1267</a> - Implemented fixes for <a href="https://github.com/advisories/GHSA-xrcv-f9gm-v42c">CVE-2022-22815</a>, <a href="https://github.com/advisories/GHSA-xrcv-f9gm-v42c">CVE-2022-22816</a>, and <a href="https://github.com/advisories/GHSA-8vj2-vxx3-667w">CVE-2022-22817</a> to require Pillow >=9.0.0 for Python version >=3.7. For Python version <3.7 (e.g. 3.6), it is recommended that you prioritize upgrading your environment to use Python 3.7 or higher. Support for Python 3.6 will be removed in a future update.</li>
|
|
11068
11109
|
</ul>
|
|
11069
|
-
<h3 id="
|
|
11110
|
+
<h3 id="changed-in-v124">Changed in v1.2.4<a class="headerlink" href="#changed-in-v124" title="Permanent link">¶</a></h3>
|
|
11070
11111
|
<ul>
|
|
11071
11112
|
<li><a href="https://github.com/nautobot/nautobot/issues/616">#616</a> - The REST API now no longer permits setting non-string values for text-type custom fields.</li>
|
|
11072
11113
|
</ul>
|
|
11073
|
-
<h3 id="
|
|
11114
|
+
<h3 id="fixed-in-v124">Fixed in v1.2.4<a class="headerlink" href="#fixed-in-v124" title="Permanent link">¶</a></h3>
|
|
11074
11115
|
<ul>
|
|
11075
11116
|
<li><a href="https://github.com/nautobot/nautobot/issues/1053">#1053</a> - Fixed error when removing an IP address from an interface when it was previously the parent device's primary IP.</li>
|
|
11076
11117
|
<li><a href="https://github.com/nautobot/nautobot/issues/1140">#1140</a> - Fixed incorrect UI widgets in the updated Admin UI.</li>
|
|
11077
11118
|
<li><a href="https://github.com/nautobot/nautobot/issues/1253">#1253</a> - Fixed missing code that prevented switching between tabs in the device-type detail view.</li>
|
|
11078
11119
|
</ul>
|
|
11079
|
-
<h3 id="
|
|
11120
|
+
<h3 id="documentation-in-v124">Documentation in v1.2.4<a class="headerlink" href="#documentation-in-v124" title="Permanent link">¶</a></h3>
|
|
11080
11121
|
<ul>
|
|
11081
11122
|
<li><a href="https://github.com/nautobot/nautobot/issues/1113">#1113</a> - Added <a href="../user-guide/administration/configuration/redis.html#high-availability-using-redis-sentinel">documentation</a> about using Redis Sentinel with Nautobot.</li>
|
|
11082
11123
|
</ul>
|
|
11083
|
-
<h3 id="
|
|
11124
|
+
<h3 id="housekeeping-in-v124">Housekeeping in v1.2.4<a class="headerlink" href="#housekeeping-in-v124" title="Permanent link">¶</a></h3>
|
|
11084
11125
|
<ul>
|
|
11085
11126
|
<li><a href="https://github.com/nautobot/nautobot/pull/1251">#1251</a> - Added <code>workflow_call</code> to the GitHub Actions CI workflow so that it may be called by other GHA workflows.</li>
|
|
11086
11127
|
<li><a href="https://github.com/nautobot/nautobot/pull/1243">#1243</a> - Github CI action no longer runs for pull requests that don't impact Nautobot code, such as documentation, examples, etc.</li>
|
|
11087
11128
|
</ul>
|
|
11088
11129
|
<h2 id="v123-2022-01-07">v1.2.3 (2022-01-07)<a class="headerlink" href="#v123-2022-01-07" title="Permanent link">¶</a></h2>
|
|
11089
|
-
<h3 id="
|
|
11130
|
+
<h3 id="security-in-v123">Security in v1.2.3<a class="headerlink" href="#security-in-v123" title="Permanent link">¶</a></h3>
|
|
11090
11131
|
<div class="admonition danger">
|
|
11091
11132
|
<p class="admonition-title">Danger</p>
|
|
11092
11133
|
<p>It is highly recommended that users of Python 3.6 prioritize upgrading to a newer version of Python. <strong>Nautobot will be removing support for Python 3.6 in a future update.</strong></p>
|
|
@@ -11098,7 +11139,7 @@
|
|
|
11098
11139
|
<ul>
|
|
11099
11140
|
<li><a href="https://github.com/nautobot/nautobot/issues/1238">#1238</a> - Implemented fix for <a href="https://github.com/advisories/GHSA-q4xr-rc97-m4xx">CVE-2021-23727</a> to require Celery >=5.2.2 for Python version >=3.7. For Python version <3.7 (e.g. 3.6), it is recommended that you prioritize upgrading your environment to use Python 3.7 or higher. Support for Python 3.6 will be removed in a future update.</li>
|
|
11100
11141
|
</ul>
|
|
11101
|
-
<h3 id="
|
|
11142
|
+
<h3 id="fixed-in-v123">Fixed in v1.2.3<a class="headerlink" href="#fixed-in-v123" title="Permanent link">¶</a></h3>
|
|
11102
11143
|
<ul>
|
|
11103
11144
|
<li><a href="https://github.com/nautobot/nautobot/issues/313">#313</a> - REST API documentation now correctly shows that <code>status</code> is a required field.</li>
|
|
11104
11145
|
<li><a href="https://github.com/nautobot/nautobot/issues/477">#477</a> - Model <code>TextField</code>s are now correctly mapped to <code>MultiValueCharFilter</code> in filter classes.</li>
|
|
@@ -11110,50 +11151,50 @@
|
|
|
11110
11151
|
<li><a href="https://github.com/nautobot/nautobot/pull/1229">#1229</a> - Fixed a template rendering error in the login page.</li>
|
|
11111
11152
|
<li><a href="https://github.com/nautobot/nautobot/issues/1234">#1234</a> - Fixed missing changelog support for Custom Fields.</li>
|
|
11112
11153
|
</ul>
|
|
11113
|
-
<h3 id="
|
|
11154
|
+
<h3 id="documentation-in-v123">Documentation in v1.2.3<a class="headerlink" href="#documentation-in-v123" title="Permanent link">¶</a></h3>
|
|
11114
11155
|
<ul>
|
|
11115
11156
|
<li><a href="https://github.com/nautobot/nautobot/issues/1037">#1037</a> - Added documentation about how to successfully use the <code>nautobot-server dumpdata</code> and <code>nautobot-server loaddata</code> commands.</li>
|
|
11116
11157
|
</ul>
|
|
11117
11158
|
<h2 id="v122-2021-12-27">v1.2.2 (2021-12-27)<a class="headerlink" href="#v122-2021-12-27" title="Permanent link">¶</a></h2>
|
|
11118
|
-
<h3 id="
|
|
11159
|
+
<h3 id="added-in-v122">Added in v1.2.2<a class="headerlink" href="#added-in-v122" title="Permanent link">¶</a></h3>
|
|
11119
11160
|
<ul>
|
|
11120
11161
|
<li><a href="https://github.com/nautobot/nautobot/pull/1152">#1152</a> - Added REST API and GraphQL for <code>JobLogEntry</code> objects.</li>
|
|
11121
11162
|
</ul>
|
|
11122
|
-
<h3 id="
|
|
11163
|
+
<h3 id="changed-in-v122">Changed in v1.2.2<a class="headerlink" href="#changed-in-v122" title="Permanent link">¶</a></h3>
|
|
11123
11164
|
<ul>
|
|
11124
11165
|
<li><a href="https://github.com/nautobot/nautobot/issues/650">#650</a> - Job Results UI now render job log messages immediately</li>
|
|
11125
11166
|
</ul>
|
|
11126
|
-
<h3 id="
|
|
11167
|
+
<h3 id="fixed-in-v122">Fixed in v1.2.2<a class="headerlink" href="#fixed-in-v122" title="Permanent link">¶</a></h3>
|
|
11127
11168
|
<ul>
|
|
11128
11169
|
<li><a href="https://github.com/nautobot/nautobot/pull/1181">#1181</a> - Avoid throwing a 500 error in the case where users have deleted a required Status value. (Preventing the user from doing this will need to be a later fix.)</li>
|
|
11129
11170
|
<li><a href="https://github.com/nautobot/nautobot/issues/1193">#1193</a> - Fixed <code>JobResult</code> page may fail to list <code>JobLogEntries</code> in chronological order</li>
|
|
11130
11171
|
<li><a href="https://github.com/nautobot/nautobot/issues/1195">#1195</a> - Job log entries now again correctly render inline Markdown formatting.</li>
|
|
11131
11172
|
</ul>
|
|
11132
|
-
<h3 id="
|
|
11173
|
+
<h3 id="documentation-in-v122">Documentation in v1.2.2<a class="headerlink" href="#documentation-in-v122" title="Permanent link">¶</a></h3>
|
|
11133
11174
|
<ul>
|
|
11134
11175
|
<li><a href="https://github.com/nautobot/nautobot/pull/1186">#1186</a> - Corrected an error in the docs regarding developing secrets providers in plugins.</li>
|
|
11135
11176
|
<li><a href="https://github.com/nautobot/nautobot/pull/1188">#1188</a> - Corrected some errors in the developer documentation about our branch management approach.</li>
|
|
11136
11177
|
</ul>
|
|
11137
11178
|
<h2 id="v121-2021-12-16">v1.2.1 (2021-12-16)<a class="headerlink" href="#v121-2021-12-16" title="Permanent link">¶</a></h2>
|
|
11138
|
-
<h3 id="
|
|
11179
|
+
<h3 id="security-in-v121">Security in v1.2.1<a class="headerlink" href="#security-in-v121" title="Permanent link">¶</a></h3>
|
|
11139
11180
|
<ul>
|
|
11140
11181
|
<li><a href="https://github.com/nautobot/nautobot/issues/1077">#1077</a> - Updated <code>graphiql</code> to 1.5.16 as well as updating the associated Javascript libraries used in the GraphiQL UI to address a reported security flaw in older versions of GraphiQL. To the best of our understanding, the Nautobot implementation of GraphiQL was not vulnerable to said flaw.</li>
|
|
11141
11182
|
</ul>
|
|
11142
|
-
<h3 id="
|
|
11183
|
+
<h3 id="added-in-v121">Added in v1.2.1<a class="headerlink" href="#added-in-v121" title="Permanent link">¶</a></h3>
|
|
11143
11184
|
<ul>
|
|
11144
11185
|
<li><a href="https://github.com/nautobot/nautobot/issues/1110">#1110</a> - Added GraphQL support for the <code>ObjectChange</code> model.</li>
|
|
11145
11186
|
</ul>
|
|
11146
|
-
<h3 id="
|
|
11187
|
+
<h3 id="changed-in-v121">Changed in v1.2.1<a class="headerlink" href="#changed-in-v121" title="Permanent link">¶</a></h3>
|
|
11147
11188
|
<ul>
|
|
11148
11189
|
<li><a href="https://github.com/nautobot/nautobot/issues/1106">#1106</a> - Updating Docker health checks to be more robust and greatly reduce performance impact.</li>
|
|
11149
11190
|
</ul>
|
|
11150
|
-
<h3 id="
|
|
11191
|
+
<h3 id="fixed-in-v121">Fixed in v1.2.1<a class="headerlink" href="#fixed-in-v121" title="Permanent link">¶</a></h3>
|
|
11151
11192
|
<ul>
|
|
11152
11193
|
<li><a href="https://github.com/nautobot/nautobot/pull/1170">#1170</a> - Fixed bug in renamed column of <code>JobResultTable</code> where rename was not made to the <code>Meta</code>.</li>
|
|
11153
11194
|
<li><a href="https://github.com/nautobot/nautobot/issues/1173">#1173</a> - Fixed official Docker image: v1.2.0 tagged images fail to load with <code>ImportError: libxml2.so.2</code>.</li>
|
|
11154
11195
|
</ul>
|
|
11155
11196
|
<h2 id="v120-2021-12-15">v1.2.0 (2021-12-15)<a class="headerlink" href="#v120-2021-12-15" title="Permanent link">¶</a></h2>
|
|
11156
|
-
<h3 id="
|
|
11197
|
+
<h3 id="added-in-v120">Added in v1.2.0<a class="headerlink" href="#added-in-v120" title="Permanent link">¶</a></h3>
|
|
11157
11198
|
<ul>
|
|
11158
11199
|
<li><a href="https://github.com/nautobot/nautobot/issues/876">#876</a> - Added option to apply a validation regex when defining CustomFieldChoices.</li>
|
|
11159
11200
|
<li><a href="https://github.com/nautobot/nautobot/issues/982">#982</a> - Added IPAM custom lookup database functions.</li>
|
|
@@ -11162,16 +11203,16 @@
|
|
|
11162
11203
|
<li><a href="https://github.com/nautobot/nautobot/issues/1082">#1082</a> - Added <code>netutils</code> template filters for both Django and Jinja2 template rendering.</li>
|
|
11163
11204
|
<li><a href="https://github.com/nautobot/nautobot/pull/1159">#1159</a> - Add <code>family</code> field to <code>IPAddressType</code> for GraphQL API enable filtering of <code>IPAddress</code> objects by <code>family</code>.</li>
|
|
11164
11205
|
</ul>
|
|
11165
|
-
<h3 id="
|
|
11206
|
+
<h3 id="changed-in-v120">Changed in v1.2.0<a class="headerlink" href="#changed-in-v120" title="Permanent link">¶</a></h3>
|
|
11166
11207
|
<ul>
|
|
11167
11208
|
<li><a href="https://github.com/nautobot/nautobot/issues/1068">#1068</a> - Docker images now include optional Nautobot dependencies by default.</li>
|
|
11168
11209
|
<li><a href="https://github.com/nautobot/nautobot/issues/1095">#1095</a> - Refined Admin Configuration UI.</li>
|
|
11169
11210
|
</ul>
|
|
11170
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
11211
|
+
<h3 id="removed-in-v120">Removed in v1.2.0<a class="headerlink" href="#removed-in-v120" title="Permanent link">¶</a></h3>
|
|
11171
11212
|
<ul>
|
|
11172
11213
|
<li><a href="https://github.com/nautobot/nautobot/issues/1094">#1094</a> - Removed leftover custom field management views from Admin UI</li>
|
|
11173
11214
|
</ul>
|
|
11174
|
-
<h3 id="
|
|
11215
|
+
<h3 id="fixed-in-v120">Fixed in v1.2.0<a class="headerlink" href="#fixed-in-v120" title="Permanent link">¶</a></h3>
|
|
11175
11216
|
<ul>
|
|
11176
11217
|
<li><a href="https://github.com/nautobot/nautobot/issues/453">#453</a> - Fixed potential <code>ValueError</code> when rendering <code>JobResult</code> detail view with non-standard <code>JobResult.data</code> contents.</li>
|
|
11177
11218
|
<li><a href="https://github.com/nautobot/nautobot/issues/864">#864</a> - Fixed inconsistent <code>JobResult</code> detail view page templates.</li>
|
|
@@ -11189,11 +11230,11 @@
|
|
|
11189
11230
|
<li><a href="https://github.com/nautobot/nautobot/issues/1154">#1154</a> - Fixed inability to save changes in Admin Configuration UI.</li>
|
|
11190
11231
|
<li><a href="https://github.com/nautobot/nautobot/issues/1162">#1162</a> - Fixed error when creating a <code>NavMenuItem</code> without specifying the <code>buttons</code> argument.</li>
|
|
11191
11232
|
</ul>
|
|
11192
|
-
<h3 id="
|
|
11233
|
+
<h3 id="dependencies-in-v120">Dependencies in v1.2.0<a class="headerlink" href="#dependencies-in-v120" title="Permanent link">¶</a></h3>
|
|
11193
11234
|
<ul>
|
|
11194
11235
|
<li><a href="https://github.com/nautobot/nautobot/pull/1105">#1105</a> - Reverted minimum Python 3.6 version to 3.6.0 rather than 3.6.2.</li>
|
|
11195
11236
|
</ul>
|
|
11196
|
-
<h3 id="
|
|
11237
|
+
<h3 id="documentation-in-v120">Documentation in v1.2.0<a class="headerlink" href="#documentation-in-v120" title="Permanent link">¶</a></h3>
|
|
11197
11238
|
<ul>
|
|
11198
11239
|
<li><a href="https://github.com/nautobot/nautobot/issues/843">#843</a> - Added more information about Celery in the Upgrading Nautobot docs.</li>
|
|
11199
11240
|
<li><a href="https://github.com/nautobot/nautobot/issues/888">#888</a> - Addressed FIXME comment in LDAP documentation.</li>
|
|
@@ -11205,11 +11246,11 @@
|
|
|
11205
11246
|
<li><a href="https://github.com/nautobot/nautobot/pull/1143">#1143</a> - Added documentation on using LDAP with multiple LDAP servers.</li>
|
|
11206
11247
|
</ul>
|
|
11207
11248
|
<h2 id="v120b1-2021-11-19">v1.2.0b1 (2021-11-19)<a class="headerlink" href="#v120b1-2021-11-19" title="Permanent link">¶</a></h2>
|
|
11208
|
-
<h3 id="
|
|
11249
|
+
<h3 id="security-in-v120b1">Security in v1.2.0b1<a class="headerlink" href="#security-in-v120b1" title="Permanent link">¶</a></h3>
|
|
11209
11250
|
<ul>
|
|
11210
11251
|
<li><a href="https://github.com/nautobot/nautobot/issues/1017">#1017</a> - Custom field descriptions no longer potentially render as arbitrary HTML in object edit forms; Markdown format is now supported as a less dangerous option.</li>
|
|
11211
11252
|
</ul>
|
|
11212
|
-
<h3 id="
|
|
11253
|
+
<h3 id="added-in-v120b1">Added in v1.2.0b1<a class="headerlink" href="#added-in-v120b1" title="Permanent link">¶</a></h3>
|
|
11213
11254
|
<ul>
|
|
11214
11255
|
<li><a href="https://github.com/nautobot/nautobot/issues/13">#13</a> - Added <code>nautobot_database_ready</code> signal</li>
|
|
11215
11256
|
<li><a href="https://github.com/nautobot/nautobot/issues/125">#125</a> - Added support for <code>approval_required = True</code> on Jobs</li>
|
|
@@ -11235,7 +11276,7 @@
|
|
|
11235
11276
|
<li><a href="https://github.com/nautobot/nautobot/pull/947">#947</a> - Added <code>DISABLE_PREFIX_LIST_HIERARCHY</code> setting to render IPAM Prefix list view as a flat list</li>
|
|
11236
11277
|
<li><a href="https://github.com/nautobot/nautobot/pull/953">#953</a> - Added option to use MySQL in docker-compose development environment</li>
|
|
11237
11278
|
</ul>
|
|
11238
|
-
<h3 id="
|
|
11279
|
+
<h3 id="changed-in-v120b1">Changed in v1.2.0b1<a class="headerlink" href="#changed-in-v120b1" title="Permanent link">¶</a></h3>
|
|
11239
11280
|
<ul>
|
|
11240
11281
|
<li><a href="https://github.com/nautobot/nautobot/issues/222">#222</a> - Changed wildcard imports to explicitly enumerated imports and enabled associated Flake8 linter rules.</li>
|
|
11241
11282
|
<li><a href="https://github.com/nautobot/nautobot/issues/472">#472</a> - <code>JobResult</code> lists now show the associated Job's name (if available) instead of the Job's <code>class_path</code>.</li>
|
|
@@ -11243,20 +11284,20 @@
|
|
|
11243
11284
|
<li><a href="https://github.com/nautobot/nautobot/pull/877">#877</a> - Hid unused "Social Auth" section from Django admin page.</li>
|
|
11244
11285
|
<li><a href="https://github.com/nautobot/nautobot/pull/900">#900</a> - Admin site has been revised and re-skinned to more closely match the core Nautobot UI.</li>
|
|
11245
11286
|
</ul>
|
|
11246
|
-
<h3 id="
|
|
11287
|
+
<h3 id="fixed-in-v120b1">Fixed in v1.2.0b1<a class="headerlink" href="#fixed-in-v120b1" title="Permanent link">¶</a></h3>
|
|
11247
11288
|
<ul>
|
|
11248
11289
|
<li><a href="https://github.com/nautobot/nautobot/issues/852">#852</a> - Fixed missing "Change Log" tab on certain object detail views</li>
|
|
11249
11290
|
<li><a href="https://github.com/nautobot/nautobot/issues/853">#853</a> - Fixed <code>AttributeError</code> on certain object detail views</li>
|
|
11250
11291
|
<li><a href="https://github.com/nautobot/nautobot/issues/891">#891</a> - Fixed custom field select/multiselect not handled by new UI and added integration tests</li>
|
|
11251
11292
|
<li><a href="https://github.com/nautobot/nautobot/issues/966">#966</a> - Fixed missing "Advanced" tab on Device detail views</li>
|
|
11252
11293
|
</ul>
|
|
11253
|
-
<h3 id="
|
|
11294
|
+
<h3 id="documentation-in-v120b1">Documentation in v1.2.0b1<a class="headerlink" href="#documentation-in-v120b1" title="Permanent link">¶</a></h3>
|
|
11254
11295
|
<ul>
|
|
11255
11296
|
<li><a href="https://github.com/nautobot/nautobot/issues/642">#642</a> - Added documentation of the <code>GIT_SSL_NO_VERIFY</code> environment variable for using self-signed Git repositories</li>
|
|
11256
11297
|
<li><a href="https://github.com/nautobot/nautobot/pull/866">#866</a> - Added documentation for job scheduling and approvals</li>
|
|
11257
11298
|
<li><a href="https://github.com/nautobot/nautobot/issues/1060">#1060</a> - Fixed documentation incorrectly indicating that the Admin UI was the only way to manage custom field definitions.</li>
|
|
11258
11299
|
</ul>
|
|
11259
|
-
<h3 id="
|
|
11300
|
+
<h3 id="housekeeping-in-v120b1">Housekeeping in v1.2.0b1<a class="headerlink" href="#housekeeping-in-v120b1" title="Permanent link">¶</a></h3>
|
|
11260
11301
|
<ul>
|
|
11261
11302
|
<li><a href="https://github.com/nautobot/nautobot/pull/879">#879</a> - Added API testing for job scheduling and approvals</li>
|
|
11262
11303
|
<li><a href="https://github.com/nautobot/nautobot/pull/908">#908</a> - Added UI testing for job scheduling and approvals</li>
|
|
@@ -11407,7 +11448,7 @@
|
|
|
11407
11448
|
<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>
|
|
11408
11449
|
|
|
11409
11450
|
|
|
11410
|
-
<script src="../assets/javascripts/bundle.
|
|
11451
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
11411
11452
|
|
|
11412
11453
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11413
11454
|
|