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
|
|
|
@@ -8801,18 +8843,18 @@
|
|
|
8801
8843
|
<ul class="md-nav__list">
|
|
8802
8844
|
|
|
8803
8845
|
<li class="md-nav__item">
|
|
8804
|
-
<a href="#
|
|
8846
|
+
<a href="#changed-in-v1410" class="md-nav__link">
|
|
8805
8847
|
<span class="md-ellipsis">
|
|
8806
|
-
Changed
|
|
8848
|
+
Changed in v1.4.10
|
|
8807
8849
|
</span>
|
|
8808
8850
|
</a>
|
|
8809
8851
|
|
|
8810
8852
|
</li>
|
|
8811
8853
|
|
|
8812
8854
|
<li class="md-nav__item">
|
|
8813
|
-
<a href="#fixed" class="md-nav__link">
|
|
8855
|
+
<a href="#fixed-in-v1410" class="md-nav__link">
|
|
8814
8856
|
<span class="md-ellipsis">
|
|
8815
|
-
Fixed
|
|
8857
|
+
Fixed in v1.4.10
|
|
8816
8858
|
</span>
|
|
8817
8859
|
</a>
|
|
8818
8860
|
|
|
@@ -8834,45 +8876,45 @@
|
|
|
8834
8876
|
<ul class="md-nav__list">
|
|
8835
8877
|
|
|
8836
8878
|
<li class="md-nav__item">
|
|
8837
|
-
<a href="#
|
|
8879
|
+
<a href="#added-in-v149" class="md-nav__link">
|
|
8838
8880
|
<span class="md-ellipsis">
|
|
8839
|
-
Added
|
|
8881
|
+
Added in v1.4.9
|
|
8840
8882
|
</span>
|
|
8841
8883
|
</a>
|
|
8842
8884
|
|
|
8843
8885
|
</li>
|
|
8844
8886
|
|
|
8845
8887
|
<li class="md-nav__item">
|
|
8846
|
-
<a href="#
|
|
8888
|
+
<a href="#changed-in-v149" class="md-nav__link">
|
|
8847
8889
|
<span class="md-ellipsis">
|
|
8848
|
-
Changed
|
|
8890
|
+
Changed in v1.4.9
|
|
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="#fixed-in-v149" class="md-nav__link">
|
|
8856
8898
|
<span class="md-ellipsis">
|
|
8857
|
-
Fixed
|
|
8899
|
+
Fixed in v1.4.9
|
|
8858
8900
|
</span>
|
|
8859
8901
|
</a>
|
|
8860
8902
|
|
|
8861
8903
|
</li>
|
|
8862
8904
|
|
|
8863
8905
|
<li class="md-nav__item">
|
|
8864
|
-
<a href="#documentation" class="md-nav__link">
|
|
8906
|
+
<a href="#documentation-in-v149" class="md-nav__link">
|
|
8865
8907
|
<span class="md-ellipsis">
|
|
8866
|
-
Documentation
|
|
8908
|
+
Documentation in v1.4.9
|
|
8867
8909
|
</span>
|
|
8868
8910
|
</a>
|
|
8869
8911
|
|
|
8870
8912
|
</li>
|
|
8871
8913
|
|
|
8872
8914
|
<li class="md-nav__item">
|
|
8873
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8915
|
+
<a href="#housekeeping-in-v149" class="md-nav__link">
|
|
8874
8916
|
<span class="md-ellipsis">
|
|
8875
|
-
Housekeeping
|
|
8917
|
+
Housekeeping in v1.4.9
|
|
8876
8918
|
</span>
|
|
8877
8919
|
</a>
|
|
8878
8920
|
|
|
@@ -8894,63 +8936,63 @@
|
|
|
8894
8936
|
<ul class="md-nav__list">
|
|
8895
8937
|
|
|
8896
8938
|
<li class="md-nav__item">
|
|
8897
|
-
<a href="#security" class="md-nav__link">
|
|
8939
|
+
<a href="#security-in-v148" class="md-nav__link">
|
|
8898
8940
|
<span class="md-ellipsis">
|
|
8899
|
-
Security
|
|
8941
|
+
Security in v1.4.8
|
|
8900
8942
|
</span>
|
|
8901
8943
|
</a>
|
|
8902
8944
|
|
|
8903
8945
|
</li>
|
|
8904
8946
|
|
|
8905
8947
|
<li class="md-nav__item">
|
|
8906
|
-
<a href="#
|
|
8948
|
+
<a href="#added-in-v148" class="md-nav__link">
|
|
8907
8949
|
<span class="md-ellipsis">
|
|
8908
|
-
Added
|
|
8950
|
+
Added in v1.4.8
|
|
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="#changed-in-v148" class="md-nav__link">
|
|
8916
8958
|
<span class="md-ellipsis">
|
|
8917
|
-
Changed
|
|
8959
|
+
Changed in v1.4.8
|
|
8918
8960
|
</span>
|
|
8919
8961
|
</a>
|
|
8920
8962
|
|
|
8921
8963
|
</li>
|
|
8922
8964
|
|
|
8923
8965
|
<li class="md-nav__item">
|
|
8924
|
-
<a href="#
|
|
8966
|
+
<a href="#fixed-in-v148" class="md-nav__link">
|
|
8925
8967
|
<span class="md-ellipsis">
|
|
8926
|
-
Fixed
|
|
8968
|
+
Fixed in v1.4.8
|
|
8927
8969
|
</span>
|
|
8928
8970
|
</a>
|
|
8929
8971
|
|
|
8930
8972
|
</li>
|
|
8931
8973
|
|
|
8932
8974
|
<li class="md-nav__item">
|
|
8933
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8975
|
+
<a href="#dependencies-in-v148" class="md-nav__link">
|
|
8934
8976
|
<span class="md-ellipsis">
|
|
8935
|
-
Dependencies
|
|
8977
|
+
Dependencies in v1.4.8
|
|
8936
8978
|
</span>
|
|
8937
8979
|
</a>
|
|
8938
8980
|
|
|
8939
8981
|
</li>
|
|
8940
8982
|
|
|
8941
8983
|
<li class="md-nav__item">
|
|
8942
|
-
<a href="#
|
|
8984
|
+
<a href="#documentation-in-v148" class="md-nav__link">
|
|
8943
8985
|
<span class="md-ellipsis">
|
|
8944
|
-
Documentation
|
|
8986
|
+
Documentation in v1.4.8
|
|
8945
8987
|
</span>
|
|
8946
8988
|
</a>
|
|
8947
8989
|
|
|
8948
8990
|
</li>
|
|
8949
8991
|
|
|
8950
8992
|
<li class="md-nav__item">
|
|
8951
|
-
<a href="#
|
|
8993
|
+
<a href="#housekeeping-in-v148" class="md-nav__link">
|
|
8952
8994
|
<span class="md-ellipsis">
|
|
8953
|
-
Housekeeping
|
|
8995
|
+
Housekeeping in v1.4.8
|
|
8954
8996
|
</span>
|
|
8955
8997
|
</a>
|
|
8956
8998
|
|
|
@@ -8972,9 +9014,9 @@
|
|
|
8972
9014
|
<ul class="md-nav__list">
|
|
8973
9015
|
|
|
8974
9016
|
<li class="md-nav__item">
|
|
8975
|
-
<a href="#
|
|
9017
|
+
<a href="#fixed-in-v147" class="md-nav__link">
|
|
8976
9018
|
<span class="md-ellipsis">
|
|
8977
|
-
Fixed
|
|
9019
|
+
Fixed in v1.4.7
|
|
8978
9020
|
</span>
|
|
8979
9021
|
</a>
|
|
8980
9022
|
|
|
@@ -8996,54 +9038,54 @@
|
|
|
8996
9038
|
<ul class="md-nav__list">
|
|
8997
9039
|
|
|
8998
9040
|
<li class="md-nav__item">
|
|
8999
|
-
<a href="#
|
|
9041
|
+
<a href="#security-in-v146" class="md-nav__link">
|
|
9000
9042
|
<span class="md-ellipsis">
|
|
9001
|
-
Security
|
|
9043
|
+
Security in v1.4.6
|
|
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="#added-in-v146" class="md-nav__link">
|
|
9009
9051
|
<span class="md-ellipsis">
|
|
9010
|
-
Added
|
|
9052
|
+
Added in v1.4.6
|
|
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="#changed-in-v146" class="md-nav__link">
|
|
9018
9060
|
<span class="md-ellipsis">
|
|
9019
|
-
Changed
|
|
9061
|
+
Changed in v1.4.6
|
|
9020
9062
|
</span>
|
|
9021
9063
|
</a>
|
|
9022
9064
|
|
|
9023
9065
|
</li>
|
|
9024
9066
|
|
|
9025
9067
|
<li class="md-nav__item">
|
|
9026
|
-
<a href="#
|
|
9068
|
+
<a href="#fixed-in-v146" class="md-nav__link">
|
|
9027
9069
|
<span class="md-ellipsis">
|
|
9028
|
-
Fixed
|
|
9070
|
+
Fixed in v1.4.6
|
|
9029
9071
|
</span>
|
|
9030
9072
|
</a>
|
|
9031
9073
|
|
|
9032
9074
|
</li>
|
|
9033
9075
|
|
|
9034
9076
|
<li class="md-nav__item">
|
|
9035
|
-
<a href="#
|
|
9077
|
+
<a href="#documentation-in-v146" class="md-nav__link">
|
|
9036
9078
|
<span class="md-ellipsis">
|
|
9037
|
-
Documentation
|
|
9079
|
+
Documentation in v1.4.6
|
|
9038
9080
|
</span>
|
|
9039
9081
|
</a>
|
|
9040
9082
|
|
|
9041
9083
|
</li>
|
|
9042
9084
|
|
|
9043
9085
|
<li class="md-nav__item">
|
|
9044
|
-
<a href="#
|
|
9086
|
+
<a href="#housekeeping-in-v146" class="md-nav__link">
|
|
9045
9087
|
<span class="md-ellipsis">
|
|
9046
|
-
Housekeeping
|
|
9088
|
+
Housekeeping in v1.4.6
|
|
9047
9089
|
</span>
|
|
9048
9090
|
</a>
|
|
9049
9091
|
|
|
@@ -9065,54 +9107,54 @@
|
|
|
9065
9107
|
<ul class="md-nav__list">
|
|
9066
9108
|
|
|
9067
9109
|
<li class="md-nav__item">
|
|
9068
|
-
<a href="#
|
|
9110
|
+
<a href="#added-in-v145" class="md-nav__link">
|
|
9069
9111
|
<span class="md-ellipsis">
|
|
9070
|
-
Added
|
|
9112
|
+
Added in v1.4.5
|
|
9071
9113
|
</span>
|
|
9072
9114
|
</a>
|
|
9073
9115
|
|
|
9074
9116
|
</li>
|
|
9075
9117
|
|
|
9076
9118
|
<li class="md-nav__item">
|
|
9077
|
-
<a href="#
|
|
9119
|
+
<a href="#changed-in-v145" class="md-nav__link">
|
|
9078
9120
|
<span class="md-ellipsis">
|
|
9079
|
-
Changed
|
|
9121
|
+
Changed in v1.4.5
|
|
9080
9122
|
</span>
|
|
9081
9123
|
</a>
|
|
9082
9124
|
|
|
9083
9125
|
</li>
|
|
9084
9126
|
|
|
9085
9127
|
<li class="md-nav__item">
|
|
9086
|
-
<a href="#
|
|
9128
|
+
<a href="#fixed-in-v145" class="md-nav__link">
|
|
9087
9129
|
<span class="md-ellipsis">
|
|
9088
|
-
Fixed
|
|
9130
|
+
Fixed in v1.4.5
|
|
9089
9131
|
</span>
|
|
9090
9132
|
</a>
|
|
9091
9133
|
|
|
9092
9134
|
</li>
|
|
9093
9135
|
|
|
9094
9136
|
<li class="md-nav__item">
|
|
9095
|
-
<a href="#
|
|
9137
|
+
<a href="#dependencies-in-v145" class="md-nav__link">
|
|
9096
9138
|
<span class="md-ellipsis">
|
|
9097
|
-
Dependencies
|
|
9139
|
+
Dependencies in v1.4.5
|
|
9098
9140
|
</span>
|
|
9099
9141
|
</a>
|
|
9100
9142
|
|
|
9101
9143
|
</li>
|
|
9102
9144
|
|
|
9103
9145
|
<li class="md-nav__item">
|
|
9104
|
-
<a href="#
|
|
9146
|
+
<a href="#documentation-in-v145" class="md-nav__link">
|
|
9105
9147
|
<span class="md-ellipsis">
|
|
9106
|
-
Documentation
|
|
9148
|
+
Documentation in v1.4.5
|
|
9107
9149
|
</span>
|
|
9108
9150
|
</a>
|
|
9109
9151
|
|
|
9110
9152
|
</li>
|
|
9111
9153
|
|
|
9112
9154
|
<li class="md-nav__item">
|
|
9113
|
-
<a href="#
|
|
9155
|
+
<a href="#housekeeping-in-v145" class="md-nav__link">
|
|
9114
9156
|
<span class="md-ellipsis">
|
|
9115
|
-
Housekeeping
|
|
9157
|
+
Housekeeping in v1.4.5
|
|
9116
9158
|
</span>
|
|
9117
9159
|
</a>
|
|
9118
9160
|
|
|
@@ -9134,45 +9176,45 @@
|
|
|
9134
9176
|
<ul class="md-nav__list">
|
|
9135
9177
|
|
|
9136
9178
|
<li class="md-nav__item">
|
|
9137
|
-
<a href="#
|
|
9179
|
+
<a href="#added-in-v144" class="md-nav__link">
|
|
9138
9180
|
<span class="md-ellipsis">
|
|
9139
|
-
Added
|
|
9181
|
+
Added in v1.4.4
|
|
9140
9182
|
</span>
|
|
9141
9183
|
</a>
|
|
9142
9184
|
|
|
9143
9185
|
</li>
|
|
9144
9186
|
|
|
9145
9187
|
<li class="md-nav__item">
|
|
9146
|
-
<a href="#
|
|
9188
|
+
<a href="#changed-in-v144" class="md-nav__link">
|
|
9147
9189
|
<span class="md-ellipsis">
|
|
9148
|
-
Changed
|
|
9190
|
+
Changed in v1.4.4
|
|
9149
9191
|
</span>
|
|
9150
9192
|
</a>
|
|
9151
9193
|
|
|
9152
9194
|
</li>
|
|
9153
9195
|
|
|
9154
9196
|
<li class="md-nav__item">
|
|
9155
|
-
<a href="#
|
|
9197
|
+
<a href="#fixed-in-v144" class="md-nav__link">
|
|
9156
9198
|
<span class="md-ellipsis">
|
|
9157
|
-
Fixed
|
|
9199
|
+
Fixed in v1.4.4
|
|
9158
9200
|
</span>
|
|
9159
9201
|
</a>
|
|
9160
9202
|
|
|
9161
9203
|
</li>
|
|
9162
9204
|
|
|
9163
9205
|
<li class="md-nav__item">
|
|
9164
|
-
<a href="#
|
|
9206
|
+
<a href="#documentation-in-v144" class="md-nav__link">
|
|
9165
9207
|
<span class="md-ellipsis">
|
|
9166
|
-
Documentation
|
|
9208
|
+
Documentation in v1.4.4
|
|
9167
9209
|
</span>
|
|
9168
9210
|
</a>
|
|
9169
9211
|
|
|
9170
9212
|
</li>
|
|
9171
9213
|
|
|
9172
9214
|
<li class="md-nav__item">
|
|
9173
|
-
<a href="#
|
|
9215
|
+
<a href="#housekeeping-in-v144" class="md-nav__link">
|
|
9174
9216
|
<span class="md-ellipsis">
|
|
9175
|
-
Housekeeping
|
|
9217
|
+
Housekeeping in v1.4.4
|
|
9176
9218
|
</span>
|
|
9177
9219
|
</a>
|
|
9178
9220
|
|
|
@@ -9194,54 +9236,54 @@
|
|
|
9194
9236
|
<ul class="md-nav__list">
|
|
9195
9237
|
|
|
9196
9238
|
<li class="md-nav__item">
|
|
9197
|
-
<a href="#
|
|
9239
|
+
<a href="#added-in-v143" class="md-nav__link">
|
|
9198
9240
|
<span class="md-ellipsis">
|
|
9199
|
-
Added
|
|
9241
|
+
Added in v1.4.3
|
|
9200
9242
|
</span>
|
|
9201
9243
|
</a>
|
|
9202
9244
|
|
|
9203
9245
|
</li>
|
|
9204
9246
|
|
|
9205
9247
|
<li class="md-nav__item">
|
|
9206
|
-
<a href="#
|
|
9248
|
+
<a href="#changed-in-v143" class="md-nav__link">
|
|
9207
9249
|
<span class="md-ellipsis">
|
|
9208
|
-
Changed
|
|
9250
|
+
Changed in v1.4.3
|
|
9209
9251
|
</span>
|
|
9210
9252
|
</a>
|
|
9211
9253
|
|
|
9212
9254
|
</li>
|
|
9213
9255
|
|
|
9214
9256
|
<li class="md-nav__item">
|
|
9215
|
-
<a href="#
|
|
9257
|
+
<a href="#fixed-in-v143" class="md-nav__link">
|
|
9216
9258
|
<span class="md-ellipsis">
|
|
9217
|
-
Fixed
|
|
9259
|
+
Fixed in v1.4.3
|
|
9218
9260
|
</span>
|
|
9219
9261
|
</a>
|
|
9220
9262
|
|
|
9221
9263
|
</li>
|
|
9222
9264
|
|
|
9223
9265
|
<li class="md-nav__item">
|
|
9224
|
-
<a href="#
|
|
9266
|
+
<a href="#dependencies-in-v143" class="md-nav__link">
|
|
9225
9267
|
<span class="md-ellipsis">
|
|
9226
|
-
Dependencies
|
|
9268
|
+
Dependencies in v1.4.3
|
|
9227
9269
|
</span>
|
|
9228
9270
|
</a>
|
|
9229
9271
|
|
|
9230
9272
|
</li>
|
|
9231
9273
|
|
|
9232
9274
|
<li class="md-nav__item">
|
|
9233
|
-
<a href="#
|
|
9275
|
+
<a href="#documentation-in-v143" class="md-nav__link">
|
|
9234
9276
|
<span class="md-ellipsis">
|
|
9235
|
-
Documentation
|
|
9277
|
+
Documentation in v1.4.3
|
|
9236
9278
|
</span>
|
|
9237
9279
|
</a>
|
|
9238
9280
|
|
|
9239
9281
|
</li>
|
|
9240
9282
|
|
|
9241
9283
|
<li class="md-nav__item">
|
|
9242
|
-
<a href="#
|
|
9284
|
+
<a href="#housekeeping-in-v143" class="md-nav__link">
|
|
9243
9285
|
<span class="md-ellipsis">
|
|
9244
|
-
Housekeeping
|
|
9286
|
+
Housekeeping in v1.4.3
|
|
9245
9287
|
</span>
|
|
9246
9288
|
</a>
|
|
9247
9289
|
|
|
@@ -9263,54 +9305,54 @@
|
|
|
9263
9305
|
<ul class="md-nav__list">
|
|
9264
9306
|
|
|
9265
9307
|
<li class="md-nav__item">
|
|
9266
|
-
<a href="#
|
|
9308
|
+
<a href="#added-in-v142" class="md-nav__link">
|
|
9267
9309
|
<span class="md-ellipsis">
|
|
9268
|
-
Added
|
|
9310
|
+
Added in v1.4.2
|
|
9269
9311
|
</span>
|
|
9270
9312
|
</a>
|
|
9271
9313
|
|
|
9272
9314
|
</li>
|
|
9273
9315
|
|
|
9274
9316
|
<li class="md-nav__item">
|
|
9275
|
-
<a href="#
|
|
9317
|
+
<a href="#changed-in-v142" class="md-nav__link">
|
|
9276
9318
|
<span class="md-ellipsis">
|
|
9277
|
-
Changed
|
|
9319
|
+
Changed in v1.4.2
|
|
9278
9320
|
</span>
|
|
9279
9321
|
</a>
|
|
9280
9322
|
|
|
9281
9323
|
</li>
|
|
9282
9324
|
|
|
9283
9325
|
<li class="md-nav__item">
|
|
9284
|
-
<a href="#
|
|
9326
|
+
<a href="#fixed-in-v142" class="md-nav__link">
|
|
9285
9327
|
<span class="md-ellipsis">
|
|
9286
|
-
Fixed
|
|
9328
|
+
Fixed in v1.4.2
|
|
9287
9329
|
</span>
|
|
9288
9330
|
</a>
|
|
9289
9331
|
|
|
9290
9332
|
</li>
|
|
9291
9333
|
|
|
9292
9334
|
<li class="md-nav__item">
|
|
9293
|
-
<a href="#
|
|
9335
|
+
<a href="#dependencies-in-v142" class="md-nav__link">
|
|
9294
9336
|
<span class="md-ellipsis">
|
|
9295
|
-
Dependencies
|
|
9337
|
+
Dependencies in v1.4.2
|
|
9296
9338
|
</span>
|
|
9297
9339
|
</a>
|
|
9298
9340
|
|
|
9299
9341
|
</li>
|
|
9300
9342
|
|
|
9301
9343
|
<li class="md-nav__item">
|
|
9302
|
-
<a href="#
|
|
9344
|
+
<a href="#documentation-in-v142" class="md-nav__link">
|
|
9303
9345
|
<span class="md-ellipsis">
|
|
9304
|
-
Documentation
|
|
9346
|
+
Documentation in v1.4.2
|
|
9305
9347
|
</span>
|
|
9306
9348
|
</a>
|
|
9307
9349
|
|
|
9308
9350
|
</li>
|
|
9309
9351
|
|
|
9310
9352
|
<li class="md-nav__item">
|
|
9311
|
-
<a href="#
|
|
9353
|
+
<a href="#housekeeping-in-v142" class="md-nav__link">
|
|
9312
9354
|
<span class="md-ellipsis">
|
|
9313
|
-
Housekeeping
|
|
9355
|
+
Housekeeping in v1.4.2
|
|
9314
9356
|
</span>
|
|
9315
9357
|
</a>
|
|
9316
9358
|
|
|
@@ -9332,45 +9374,45 @@
|
|
|
9332
9374
|
<ul class="md-nav__list">
|
|
9333
9375
|
|
|
9334
9376
|
<li class="md-nav__item">
|
|
9335
|
-
<a href="#
|
|
9377
|
+
<a href="#added-in-v141" class="md-nav__link">
|
|
9336
9378
|
<span class="md-ellipsis">
|
|
9337
|
-
Added
|
|
9379
|
+
Added in v1.4.1
|
|
9338
9380
|
</span>
|
|
9339
9381
|
</a>
|
|
9340
9382
|
|
|
9341
9383
|
</li>
|
|
9342
9384
|
|
|
9343
9385
|
<li class="md-nav__item">
|
|
9344
|
-
<a href="#
|
|
9386
|
+
<a href="#changed-in-v141" class="md-nav__link">
|
|
9345
9387
|
<span class="md-ellipsis">
|
|
9346
|
-
Changed
|
|
9388
|
+
Changed in v1.4.1
|
|
9347
9389
|
</span>
|
|
9348
9390
|
</a>
|
|
9349
9391
|
|
|
9350
9392
|
</li>
|
|
9351
9393
|
|
|
9352
9394
|
<li class="md-nav__item">
|
|
9353
|
-
<a href="#
|
|
9395
|
+
<a href="#fixed-in-v141" class="md-nav__link">
|
|
9354
9396
|
<span class="md-ellipsis">
|
|
9355
|
-
Fixed
|
|
9397
|
+
Fixed in v1.4.1
|
|
9356
9398
|
</span>
|
|
9357
9399
|
</a>
|
|
9358
9400
|
|
|
9359
9401
|
</li>
|
|
9360
9402
|
|
|
9361
9403
|
<li class="md-nav__item">
|
|
9362
|
-
<a href="#
|
|
9404
|
+
<a href="#documentation-in-v141" class="md-nav__link">
|
|
9363
9405
|
<span class="md-ellipsis">
|
|
9364
|
-
Documentation
|
|
9406
|
+
Documentation in v1.4.1
|
|
9365
9407
|
</span>
|
|
9366
9408
|
</a>
|
|
9367
9409
|
|
|
9368
9410
|
</li>
|
|
9369
9411
|
|
|
9370
9412
|
<li class="md-nav__item">
|
|
9371
|
-
<a href="#
|
|
9413
|
+
<a href="#housekeeping-in-v141" class="md-nav__link">
|
|
9372
9414
|
<span class="md-ellipsis">
|
|
9373
|
-
Housekeeping
|
|
9415
|
+
Housekeeping in v1.4.1
|
|
9374
9416
|
</span>
|
|
9375
9417
|
</a>
|
|
9376
9418
|
|
|
@@ -9392,54 +9434,54 @@
|
|
|
9392
9434
|
<ul class="md-nav__list">
|
|
9393
9435
|
|
|
9394
9436
|
<li class="md-nav__item">
|
|
9395
|
-
<a href="#
|
|
9437
|
+
<a href="#added-in-v140" class="md-nav__link">
|
|
9396
9438
|
<span class="md-ellipsis">
|
|
9397
|
-
Added
|
|
9439
|
+
Added in v1.4.0
|
|
9398
9440
|
</span>
|
|
9399
9441
|
</a>
|
|
9400
9442
|
|
|
9401
9443
|
</li>
|
|
9402
9444
|
|
|
9403
9445
|
<li class="md-nav__item">
|
|
9404
|
-
<a href="#
|
|
9446
|
+
<a href="#changed-in-v140" class="md-nav__link">
|
|
9405
9447
|
<span class="md-ellipsis">
|
|
9406
|
-
Changed
|
|
9448
|
+
Changed in v1.4.0
|
|
9407
9449
|
</span>
|
|
9408
9450
|
</a>
|
|
9409
9451
|
|
|
9410
9452
|
</li>
|
|
9411
9453
|
|
|
9412
9454
|
<li class="md-nav__item">
|
|
9413
|
-
<a href="#
|
|
9455
|
+
<a href="#fixed-in-v140" class="md-nav__link">
|
|
9414
9456
|
<span class="md-ellipsis">
|
|
9415
|
-
Fixed
|
|
9457
|
+
Fixed in v1.4.0
|
|
9416
9458
|
</span>
|
|
9417
9459
|
</a>
|
|
9418
9460
|
|
|
9419
9461
|
</li>
|
|
9420
9462
|
|
|
9421
9463
|
<li class="md-nav__item">
|
|
9422
|
-
<a href="#
|
|
9464
|
+
<a href="#dependencies-in-v140" class="md-nav__link">
|
|
9423
9465
|
<span class="md-ellipsis">
|
|
9424
|
-
Dependencies
|
|
9466
|
+
Dependencies in v1.4.0
|
|
9425
9467
|
</span>
|
|
9426
9468
|
</a>
|
|
9427
9469
|
|
|
9428
9470
|
</li>
|
|
9429
9471
|
|
|
9430
9472
|
<li class="md-nav__item">
|
|
9431
|
-
<a href="#
|
|
9473
|
+
<a href="#documentation-in-v140" class="md-nav__link">
|
|
9432
9474
|
<span class="md-ellipsis">
|
|
9433
|
-
Documentation
|
|
9475
|
+
Documentation in v1.4.0
|
|
9434
9476
|
</span>
|
|
9435
9477
|
</a>
|
|
9436
9478
|
|
|
9437
9479
|
</li>
|
|
9438
9480
|
|
|
9439
9481
|
<li class="md-nav__item">
|
|
9440
|
-
<a href="#
|
|
9482
|
+
<a href="#housekeeping-in-v140" class="md-nav__link">
|
|
9441
9483
|
<span class="md-ellipsis">
|
|
9442
|
-
Housekeeping
|
|
9484
|
+
Housekeeping in v1.4.0
|
|
9443
9485
|
</span>
|
|
9444
9486
|
</a>
|
|
9445
9487
|
|
|
@@ -9461,45 +9503,45 @@
|
|
|
9461
9503
|
<ul class="md-nav__list">
|
|
9462
9504
|
|
|
9463
9505
|
<li class="md-nav__item">
|
|
9464
|
-
<a href="#
|
|
9506
|
+
<a href="#added-in-v140rc1" class="md-nav__link">
|
|
9465
9507
|
<span class="md-ellipsis">
|
|
9466
|
-
Added
|
|
9508
|
+
Added in v1.4.0rc1
|
|
9467
9509
|
</span>
|
|
9468
9510
|
</a>
|
|
9469
9511
|
|
|
9470
9512
|
</li>
|
|
9471
9513
|
|
|
9472
9514
|
<li class="md-nav__item">
|
|
9473
|
-
<a href="#
|
|
9515
|
+
<a href="#changed-in-v140rc1" class="md-nav__link">
|
|
9474
9516
|
<span class="md-ellipsis">
|
|
9475
|
-
Changed
|
|
9517
|
+
Changed in v1.4.0rc1
|
|
9476
9518
|
</span>
|
|
9477
9519
|
</a>
|
|
9478
9520
|
|
|
9479
9521
|
</li>
|
|
9480
9522
|
|
|
9481
9523
|
<li class="md-nav__item">
|
|
9482
|
-
<a href="#
|
|
9524
|
+
<a href="#fixed-in-v140rc1" class="md-nav__link">
|
|
9483
9525
|
<span class="md-ellipsis">
|
|
9484
|
-
Fixed
|
|
9526
|
+
Fixed in v1.4.0rc1
|
|
9485
9527
|
</span>
|
|
9486
9528
|
</a>
|
|
9487
9529
|
|
|
9488
9530
|
</li>
|
|
9489
9531
|
|
|
9490
9532
|
<li class="md-nav__item">
|
|
9491
|
-
<a href="#
|
|
9533
|
+
<a href="#documentation-in-v140rc1" class="md-nav__link">
|
|
9492
9534
|
<span class="md-ellipsis">
|
|
9493
|
-
Documentation
|
|
9535
|
+
Documentation in v1.4.0rc1
|
|
9494
9536
|
</span>
|
|
9495
9537
|
</a>
|
|
9496
9538
|
|
|
9497
9539
|
</li>
|
|
9498
9540
|
|
|
9499
9541
|
<li class="md-nav__item">
|
|
9500
|
-
<a href="#
|
|
9542
|
+
<a href="#housekeeping-in-v140rc1" class="md-nav__link">
|
|
9501
9543
|
<span class="md-ellipsis">
|
|
9502
|
-
Housekeeping
|
|
9544
|
+
Housekeeping in v1.4.0rc1
|
|
9503
9545
|
</span>
|
|
9504
9546
|
</a>
|
|
9505
9547
|
|
|
@@ -9521,45 +9563,45 @@
|
|
|
9521
9563
|
<ul class="md-nav__list">
|
|
9522
9564
|
|
|
9523
9565
|
<li class="md-nav__item">
|
|
9524
|
-
<a href="#
|
|
9566
|
+
<a href="#added-in-v140b1" class="md-nav__link">
|
|
9525
9567
|
<span class="md-ellipsis">
|
|
9526
|
-
Added
|
|
9568
|
+
Added in v1.4.0b1
|
|
9527
9569
|
</span>
|
|
9528
9570
|
</a>
|
|
9529
9571
|
|
|
9530
9572
|
</li>
|
|
9531
9573
|
|
|
9532
9574
|
<li class="md-nav__item">
|
|
9533
|
-
<a href="#
|
|
9575
|
+
<a href="#changed-in-v140b1" class="md-nav__link">
|
|
9534
9576
|
<span class="md-ellipsis">
|
|
9535
|
-
Changed
|
|
9577
|
+
Changed in v1.4.0b1
|
|
9536
9578
|
</span>
|
|
9537
9579
|
</a>
|
|
9538
9580
|
|
|
9539
9581
|
</li>
|
|
9540
9582
|
|
|
9541
9583
|
<li class="md-nav__item">
|
|
9542
|
-
<a href="#
|
|
9584
|
+
<a href="#fixed-in-v140b1" class="md-nav__link">
|
|
9543
9585
|
<span class="md-ellipsis">
|
|
9544
|
-
Fixed
|
|
9586
|
+
Fixed in v1.4.0b1
|
|
9545
9587
|
</span>
|
|
9546
9588
|
</a>
|
|
9547
9589
|
|
|
9548
9590
|
</li>
|
|
9549
9591
|
|
|
9550
9592
|
<li class="md-nav__item">
|
|
9551
|
-
<a href="#
|
|
9593
|
+
<a href="#dependencies-in-v140b1" class="md-nav__link">
|
|
9552
9594
|
<span class="md-ellipsis">
|
|
9553
|
-
Dependencies
|
|
9595
|
+
Dependencies in v1.4.0b1
|
|
9554
9596
|
</span>
|
|
9555
9597
|
</a>
|
|
9556
9598
|
|
|
9557
9599
|
</li>
|
|
9558
9600
|
|
|
9559
9601
|
<li class="md-nav__item">
|
|
9560
|
-
<a href="#
|
|
9602
|
+
<a href="#documentation-in-v140b1" class="md-nav__link">
|
|
9561
9603
|
<span class="md-ellipsis">
|
|
9562
|
-
Documentation
|
|
9604
|
+
Documentation in v1.4.0b1
|
|
9563
9605
|
</span>
|
|
9564
9606
|
</a>
|
|
9565
9607
|
|
|
@@ -9581,54 +9623,54 @@
|
|
|
9581
9623
|
<ul class="md-nav__list">
|
|
9582
9624
|
|
|
9583
9625
|
<li class="md-nav__item">
|
|
9584
|
-
<a href="#
|
|
9626
|
+
<a href="#added-in-v140a2" class="md-nav__link">
|
|
9585
9627
|
<span class="md-ellipsis">
|
|
9586
|
-
Added
|
|
9628
|
+
Added in v1.4.0a2
|
|
9587
9629
|
</span>
|
|
9588
9630
|
</a>
|
|
9589
9631
|
|
|
9590
9632
|
</li>
|
|
9591
9633
|
|
|
9592
9634
|
<li class="md-nav__item">
|
|
9593
|
-
<a href="#
|
|
9635
|
+
<a href="#changed-in-v140a2" class="md-nav__link">
|
|
9594
9636
|
<span class="md-ellipsis">
|
|
9595
|
-
Changed
|
|
9637
|
+
Changed in v1.4.0a2
|
|
9596
9638
|
</span>
|
|
9597
9639
|
</a>
|
|
9598
9640
|
|
|
9599
9641
|
</li>
|
|
9600
9642
|
|
|
9601
9643
|
<li class="md-nav__item">
|
|
9602
|
-
<a href="#removed" class="md-nav__link">
|
|
9644
|
+
<a href="#removed-in-v140a2" class="md-nav__link">
|
|
9603
9645
|
<span class="md-ellipsis">
|
|
9604
|
-
Removed
|
|
9646
|
+
Removed in v1.4.0a2
|
|
9605
9647
|
</span>
|
|
9606
9648
|
</a>
|
|
9607
9649
|
|
|
9608
9650
|
</li>
|
|
9609
9651
|
|
|
9610
9652
|
<li class="md-nav__item">
|
|
9611
|
-
<a href="#
|
|
9653
|
+
<a href="#fixed-in-v140a2" class="md-nav__link">
|
|
9612
9654
|
<span class="md-ellipsis">
|
|
9613
|
-
Fixed
|
|
9655
|
+
Fixed in v1.4.0a2
|
|
9614
9656
|
</span>
|
|
9615
9657
|
</a>
|
|
9616
9658
|
|
|
9617
9659
|
</li>
|
|
9618
9660
|
|
|
9619
9661
|
<li class="md-nav__item">
|
|
9620
|
-
<a href="#
|
|
9662
|
+
<a href="#dependencies-in-v140a2" class="md-nav__link">
|
|
9621
9663
|
<span class="md-ellipsis">
|
|
9622
|
-
Dependencies
|
|
9664
|
+
Dependencies in v1.4.0a2
|
|
9623
9665
|
</span>
|
|
9624
9666
|
</a>
|
|
9625
9667
|
|
|
9626
9668
|
</li>
|
|
9627
9669
|
|
|
9628
9670
|
<li class="md-nav__item">
|
|
9629
|
-
<a href="#
|
|
9671
|
+
<a href="#housekeeping-in-v140a2" class="md-nav__link">
|
|
9630
9672
|
<span class="md-ellipsis">
|
|
9631
|
-
Housekeeping
|
|
9673
|
+
Housekeeping in v1.4.0a2
|
|
9632
9674
|
</span>
|
|
9633
9675
|
</a>
|
|
9634
9676
|
|
|
@@ -9650,27 +9692,27 @@
|
|
|
9650
9692
|
<ul class="md-nav__list">
|
|
9651
9693
|
|
|
9652
9694
|
<li class="md-nav__item">
|
|
9653
|
-
<a href="#
|
|
9695
|
+
<a href="#added-in-v140a1" class="md-nav__link">
|
|
9654
9696
|
<span class="md-ellipsis">
|
|
9655
|
-
Added
|
|
9697
|
+
Added in v1.4.0a1
|
|
9656
9698
|
</span>
|
|
9657
9699
|
</a>
|
|
9658
9700
|
|
|
9659
9701
|
</li>
|
|
9660
9702
|
|
|
9661
9703
|
<li class="md-nav__item">
|
|
9662
|
-
<a href="#
|
|
9704
|
+
<a href="#changed-in-v140a1" class="md-nav__link">
|
|
9663
9705
|
<span class="md-ellipsis">
|
|
9664
|
-
Changed
|
|
9706
|
+
Changed in v1.4.0a1
|
|
9665
9707
|
</span>
|
|
9666
9708
|
</a>
|
|
9667
9709
|
|
|
9668
9710
|
</li>
|
|
9669
9711
|
|
|
9670
9712
|
<li class="md-nav__item">
|
|
9671
|
-
<a href="#
|
|
9713
|
+
<a href="#fixed-in-v140a1" class="md-nav__link">
|
|
9672
9714
|
<span class="md-ellipsis">
|
|
9673
|
-
Fixed
|
|
9715
|
+
Fixed in v1.4.0a1
|
|
9674
9716
|
</span>
|
|
9675
9717
|
</a>
|
|
9676
9718
|
|
|
@@ -10372,18 +10414,18 @@
|
|
|
10372
10414
|
<ul class="md-nav__list">
|
|
10373
10415
|
|
|
10374
10416
|
<li class="md-nav__item">
|
|
10375
|
-
<a href="#
|
|
10417
|
+
<a href="#changed-in-v1410" class="md-nav__link">
|
|
10376
10418
|
<span class="md-ellipsis">
|
|
10377
|
-
Changed
|
|
10419
|
+
Changed in v1.4.10
|
|
10378
10420
|
</span>
|
|
10379
10421
|
</a>
|
|
10380
10422
|
|
|
10381
10423
|
</li>
|
|
10382
10424
|
|
|
10383
10425
|
<li class="md-nav__item">
|
|
10384
|
-
<a href="#fixed" class="md-nav__link">
|
|
10426
|
+
<a href="#fixed-in-v1410" class="md-nav__link">
|
|
10385
10427
|
<span class="md-ellipsis">
|
|
10386
|
-
Fixed
|
|
10428
|
+
Fixed in v1.4.10
|
|
10387
10429
|
</span>
|
|
10388
10430
|
</a>
|
|
10389
10431
|
|
|
@@ -10405,45 +10447,45 @@
|
|
|
10405
10447
|
<ul class="md-nav__list">
|
|
10406
10448
|
|
|
10407
10449
|
<li class="md-nav__item">
|
|
10408
|
-
<a href="#
|
|
10450
|
+
<a href="#added-in-v149" class="md-nav__link">
|
|
10409
10451
|
<span class="md-ellipsis">
|
|
10410
|
-
Added
|
|
10452
|
+
Added in v1.4.9
|
|
10411
10453
|
</span>
|
|
10412
10454
|
</a>
|
|
10413
10455
|
|
|
10414
10456
|
</li>
|
|
10415
10457
|
|
|
10416
10458
|
<li class="md-nav__item">
|
|
10417
|
-
<a href="#
|
|
10459
|
+
<a href="#changed-in-v149" class="md-nav__link">
|
|
10418
10460
|
<span class="md-ellipsis">
|
|
10419
|
-
Changed
|
|
10461
|
+
Changed in v1.4.9
|
|
10420
10462
|
</span>
|
|
10421
10463
|
</a>
|
|
10422
10464
|
|
|
10423
10465
|
</li>
|
|
10424
10466
|
|
|
10425
10467
|
<li class="md-nav__item">
|
|
10426
|
-
<a href="#
|
|
10468
|
+
<a href="#fixed-in-v149" class="md-nav__link">
|
|
10427
10469
|
<span class="md-ellipsis">
|
|
10428
|
-
Fixed
|
|
10470
|
+
Fixed in v1.4.9
|
|
10429
10471
|
</span>
|
|
10430
10472
|
</a>
|
|
10431
10473
|
|
|
10432
10474
|
</li>
|
|
10433
10475
|
|
|
10434
10476
|
<li class="md-nav__item">
|
|
10435
|
-
<a href="#documentation" class="md-nav__link">
|
|
10477
|
+
<a href="#documentation-in-v149" class="md-nav__link">
|
|
10436
10478
|
<span class="md-ellipsis">
|
|
10437
|
-
Documentation
|
|
10479
|
+
Documentation in v1.4.9
|
|
10438
10480
|
</span>
|
|
10439
10481
|
</a>
|
|
10440
10482
|
|
|
10441
10483
|
</li>
|
|
10442
10484
|
|
|
10443
10485
|
<li class="md-nav__item">
|
|
10444
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10486
|
+
<a href="#housekeeping-in-v149" class="md-nav__link">
|
|
10445
10487
|
<span class="md-ellipsis">
|
|
10446
|
-
Housekeeping
|
|
10488
|
+
Housekeeping in v1.4.9
|
|
10447
10489
|
</span>
|
|
10448
10490
|
</a>
|
|
10449
10491
|
|
|
@@ -10465,63 +10507,63 @@
|
|
|
10465
10507
|
<ul class="md-nav__list">
|
|
10466
10508
|
|
|
10467
10509
|
<li class="md-nav__item">
|
|
10468
|
-
<a href="#security" class="md-nav__link">
|
|
10510
|
+
<a href="#security-in-v148" class="md-nav__link">
|
|
10469
10511
|
<span class="md-ellipsis">
|
|
10470
|
-
Security
|
|
10512
|
+
Security in v1.4.8
|
|
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="#added-in-v148" class="md-nav__link">
|
|
10478
10520
|
<span class="md-ellipsis">
|
|
10479
|
-
Added
|
|
10521
|
+
Added in v1.4.8
|
|
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="#changed-in-v148" class="md-nav__link">
|
|
10487
10529
|
<span class="md-ellipsis">
|
|
10488
|
-
Changed
|
|
10530
|
+
Changed in v1.4.8
|
|
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="#fixed-in-v148" class="md-nav__link">
|
|
10496
10538
|
<span class="md-ellipsis">
|
|
10497
|
-
Fixed
|
|
10539
|
+
Fixed in v1.4.8
|
|
10498
10540
|
</span>
|
|
10499
10541
|
</a>
|
|
10500
10542
|
|
|
10501
10543
|
</li>
|
|
10502
10544
|
|
|
10503
10545
|
<li class="md-nav__item">
|
|
10504
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10546
|
+
<a href="#dependencies-in-v148" class="md-nav__link">
|
|
10505
10547
|
<span class="md-ellipsis">
|
|
10506
|
-
Dependencies
|
|
10548
|
+
Dependencies in v1.4.8
|
|
10507
10549
|
</span>
|
|
10508
10550
|
</a>
|
|
10509
10551
|
|
|
10510
10552
|
</li>
|
|
10511
10553
|
|
|
10512
10554
|
<li class="md-nav__item">
|
|
10513
|
-
<a href="#
|
|
10555
|
+
<a href="#documentation-in-v148" class="md-nav__link">
|
|
10514
10556
|
<span class="md-ellipsis">
|
|
10515
|
-
Documentation
|
|
10557
|
+
Documentation in v1.4.8
|
|
10516
10558
|
</span>
|
|
10517
10559
|
</a>
|
|
10518
10560
|
|
|
10519
10561
|
</li>
|
|
10520
10562
|
|
|
10521
10563
|
<li class="md-nav__item">
|
|
10522
|
-
<a href="#
|
|
10564
|
+
<a href="#housekeeping-in-v148" class="md-nav__link">
|
|
10523
10565
|
<span class="md-ellipsis">
|
|
10524
|
-
Housekeeping
|
|
10566
|
+
Housekeeping in v1.4.8
|
|
10525
10567
|
</span>
|
|
10526
10568
|
</a>
|
|
10527
10569
|
|
|
@@ -10543,9 +10585,9 @@
|
|
|
10543
10585
|
<ul class="md-nav__list">
|
|
10544
10586
|
|
|
10545
10587
|
<li class="md-nav__item">
|
|
10546
|
-
<a href="#
|
|
10588
|
+
<a href="#fixed-in-v147" class="md-nav__link">
|
|
10547
10589
|
<span class="md-ellipsis">
|
|
10548
|
-
Fixed
|
|
10590
|
+
Fixed in v1.4.7
|
|
10549
10591
|
</span>
|
|
10550
10592
|
</a>
|
|
10551
10593
|
|
|
@@ -10567,54 +10609,54 @@
|
|
|
10567
10609
|
<ul class="md-nav__list">
|
|
10568
10610
|
|
|
10569
10611
|
<li class="md-nav__item">
|
|
10570
|
-
<a href="#
|
|
10612
|
+
<a href="#security-in-v146" class="md-nav__link">
|
|
10571
10613
|
<span class="md-ellipsis">
|
|
10572
|
-
Security
|
|
10614
|
+
Security in v1.4.6
|
|
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="#added-in-v146" class="md-nav__link">
|
|
10580
10622
|
<span class="md-ellipsis">
|
|
10581
|
-
Added
|
|
10623
|
+
Added in v1.4.6
|
|
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="#changed-in-v146" class="md-nav__link">
|
|
10589
10631
|
<span class="md-ellipsis">
|
|
10590
|
-
Changed
|
|
10632
|
+
Changed in v1.4.6
|
|
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="#fixed-in-v146" class="md-nav__link">
|
|
10598
10640
|
<span class="md-ellipsis">
|
|
10599
|
-
Fixed
|
|
10641
|
+
Fixed in v1.4.6
|
|
10600
10642
|
</span>
|
|
10601
10643
|
</a>
|
|
10602
10644
|
|
|
10603
10645
|
</li>
|
|
10604
10646
|
|
|
10605
10647
|
<li class="md-nav__item">
|
|
10606
|
-
<a href="#
|
|
10648
|
+
<a href="#documentation-in-v146" class="md-nav__link">
|
|
10607
10649
|
<span class="md-ellipsis">
|
|
10608
|
-
Documentation
|
|
10650
|
+
Documentation in v1.4.6
|
|
10609
10651
|
</span>
|
|
10610
10652
|
</a>
|
|
10611
10653
|
|
|
10612
10654
|
</li>
|
|
10613
10655
|
|
|
10614
10656
|
<li class="md-nav__item">
|
|
10615
|
-
<a href="#
|
|
10657
|
+
<a href="#housekeeping-in-v146" class="md-nav__link">
|
|
10616
10658
|
<span class="md-ellipsis">
|
|
10617
|
-
Housekeeping
|
|
10659
|
+
Housekeeping in v1.4.6
|
|
10618
10660
|
</span>
|
|
10619
10661
|
</a>
|
|
10620
10662
|
|
|
@@ -10636,54 +10678,54 @@
|
|
|
10636
10678
|
<ul class="md-nav__list">
|
|
10637
10679
|
|
|
10638
10680
|
<li class="md-nav__item">
|
|
10639
|
-
<a href="#
|
|
10681
|
+
<a href="#added-in-v145" class="md-nav__link">
|
|
10640
10682
|
<span class="md-ellipsis">
|
|
10641
|
-
Added
|
|
10683
|
+
Added in v1.4.5
|
|
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="#changed-in-v145" class="md-nav__link">
|
|
10649
10691
|
<span class="md-ellipsis">
|
|
10650
|
-
Changed
|
|
10692
|
+
Changed in v1.4.5
|
|
10651
10693
|
</span>
|
|
10652
10694
|
</a>
|
|
10653
10695
|
|
|
10654
10696
|
</li>
|
|
10655
10697
|
|
|
10656
10698
|
<li class="md-nav__item">
|
|
10657
|
-
<a href="#
|
|
10699
|
+
<a href="#fixed-in-v145" class="md-nav__link">
|
|
10658
10700
|
<span class="md-ellipsis">
|
|
10659
|
-
Fixed
|
|
10701
|
+
Fixed in v1.4.5
|
|
10660
10702
|
</span>
|
|
10661
10703
|
</a>
|
|
10662
10704
|
|
|
10663
10705
|
</li>
|
|
10664
10706
|
|
|
10665
10707
|
<li class="md-nav__item">
|
|
10666
|
-
<a href="#
|
|
10708
|
+
<a href="#dependencies-in-v145" class="md-nav__link">
|
|
10667
10709
|
<span class="md-ellipsis">
|
|
10668
|
-
Dependencies
|
|
10710
|
+
Dependencies in v1.4.5
|
|
10669
10711
|
</span>
|
|
10670
10712
|
</a>
|
|
10671
10713
|
|
|
10672
10714
|
</li>
|
|
10673
10715
|
|
|
10674
10716
|
<li class="md-nav__item">
|
|
10675
|
-
<a href="#
|
|
10717
|
+
<a href="#documentation-in-v145" class="md-nav__link">
|
|
10676
10718
|
<span class="md-ellipsis">
|
|
10677
|
-
Documentation
|
|
10719
|
+
Documentation in v1.4.5
|
|
10678
10720
|
</span>
|
|
10679
10721
|
</a>
|
|
10680
10722
|
|
|
10681
10723
|
</li>
|
|
10682
10724
|
|
|
10683
10725
|
<li class="md-nav__item">
|
|
10684
|
-
<a href="#
|
|
10726
|
+
<a href="#housekeeping-in-v145" class="md-nav__link">
|
|
10685
10727
|
<span class="md-ellipsis">
|
|
10686
|
-
Housekeeping
|
|
10728
|
+
Housekeeping in v1.4.5
|
|
10687
10729
|
</span>
|
|
10688
10730
|
</a>
|
|
10689
10731
|
|
|
@@ -10705,45 +10747,45 @@
|
|
|
10705
10747
|
<ul class="md-nav__list">
|
|
10706
10748
|
|
|
10707
10749
|
<li class="md-nav__item">
|
|
10708
|
-
<a href="#
|
|
10750
|
+
<a href="#added-in-v144" class="md-nav__link">
|
|
10709
10751
|
<span class="md-ellipsis">
|
|
10710
|
-
Added
|
|
10752
|
+
Added in v1.4.4
|
|
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="#changed-in-v144" class="md-nav__link">
|
|
10718
10760
|
<span class="md-ellipsis">
|
|
10719
|
-
Changed
|
|
10761
|
+
Changed in v1.4.4
|
|
10720
10762
|
</span>
|
|
10721
10763
|
</a>
|
|
10722
10764
|
|
|
10723
10765
|
</li>
|
|
10724
10766
|
|
|
10725
10767
|
<li class="md-nav__item">
|
|
10726
|
-
<a href="#
|
|
10768
|
+
<a href="#fixed-in-v144" class="md-nav__link">
|
|
10727
10769
|
<span class="md-ellipsis">
|
|
10728
|
-
Fixed
|
|
10770
|
+
Fixed in v1.4.4
|
|
10729
10771
|
</span>
|
|
10730
10772
|
</a>
|
|
10731
10773
|
|
|
10732
10774
|
</li>
|
|
10733
10775
|
|
|
10734
10776
|
<li class="md-nav__item">
|
|
10735
|
-
<a href="#
|
|
10777
|
+
<a href="#documentation-in-v144" class="md-nav__link">
|
|
10736
10778
|
<span class="md-ellipsis">
|
|
10737
|
-
Documentation
|
|
10779
|
+
Documentation in v1.4.4
|
|
10738
10780
|
</span>
|
|
10739
10781
|
</a>
|
|
10740
10782
|
|
|
10741
10783
|
</li>
|
|
10742
10784
|
|
|
10743
10785
|
<li class="md-nav__item">
|
|
10744
|
-
<a href="#
|
|
10786
|
+
<a href="#housekeeping-in-v144" class="md-nav__link">
|
|
10745
10787
|
<span class="md-ellipsis">
|
|
10746
|
-
Housekeeping
|
|
10788
|
+
Housekeeping in v1.4.4
|
|
10747
10789
|
</span>
|
|
10748
10790
|
</a>
|
|
10749
10791
|
|
|
@@ -10765,54 +10807,54 @@
|
|
|
10765
10807
|
<ul class="md-nav__list">
|
|
10766
10808
|
|
|
10767
10809
|
<li class="md-nav__item">
|
|
10768
|
-
<a href="#
|
|
10810
|
+
<a href="#added-in-v143" class="md-nav__link">
|
|
10769
10811
|
<span class="md-ellipsis">
|
|
10770
|
-
Added
|
|
10812
|
+
Added in v1.4.3
|
|
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="#changed-in-v143" class="md-nav__link">
|
|
10778
10820
|
<span class="md-ellipsis">
|
|
10779
|
-
Changed
|
|
10821
|
+
Changed in v1.4.3
|
|
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="#fixed-in-v143" class="md-nav__link">
|
|
10787
10829
|
<span class="md-ellipsis">
|
|
10788
|
-
Fixed
|
|
10830
|
+
Fixed in v1.4.3
|
|
10789
10831
|
</span>
|
|
10790
10832
|
</a>
|
|
10791
10833
|
|
|
10792
10834
|
</li>
|
|
10793
10835
|
|
|
10794
10836
|
<li class="md-nav__item">
|
|
10795
|
-
<a href="#
|
|
10837
|
+
<a href="#dependencies-in-v143" class="md-nav__link">
|
|
10796
10838
|
<span class="md-ellipsis">
|
|
10797
|
-
Dependencies
|
|
10839
|
+
Dependencies in v1.4.3
|
|
10798
10840
|
</span>
|
|
10799
10841
|
</a>
|
|
10800
10842
|
|
|
10801
10843
|
</li>
|
|
10802
10844
|
|
|
10803
10845
|
<li class="md-nav__item">
|
|
10804
|
-
<a href="#
|
|
10846
|
+
<a href="#documentation-in-v143" class="md-nav__link">
|
|
10805
10847
|
<span class="md-ellipsis">
|
|
10806
|
-
Documentation
|
|
10848
|
+
Documentation in v1.4.3
|
|
10807
10849
|
</span>
|
|
10808
10850
|
</a>
|
|
10809
10851
|
|
|
10810
10852
|
</li>
|
|
10811
10853
|
|
|
10812
10854
|
<li class="md-nav__item">
|
|
10813
|
-
<a href="#
|
|
10855
|
+
<a href="#housekeeping-in-v143" class="md-nav__link">
|
|
10814
10856
|
<span class="md-ellipsis">
|
|
10815
|
-
Housekeeping
|
|
10857
|
+
Housekeeping in v1.4.3
|
|
10816
10858
|
</span>
|
|
10817
10859
|
</a>
|
|
10818
10860
|
|
|
@@ -10834,54 +10876,54 @@
|
|
|
10834
10876
|
<ul class="md-nav__list">
|
|
10835
10877
|
|
|
10836
10878
|
<li class="md-nav__item">
|
|
10837
|
-
<a href="#
|
|
10879
|
+
<a href="#added-in-v142" class="md-nav__link">
|
|
10838
10880
|
<span class="md-ellipsis">
|
|
10839
|
-
Added
|
|
10881
|
+
Added in v1.4.2
|
|
10840
10882
|
</span>
|
|
10841
10883
|
</a>
|
|
10842
10884
|
|
|
10843
10885
|
</li>
|
|
10844
10886
|
|
|
10845
10887
|
<li class="md-nav__item">
|
|
10846
|
-
<a href="#
|
|
10888
|
+
<a href="#changed-in-v142" class="md-nav__link">
|
|
10847
10889
|
<span class="md-ellipsis">
|
|
10848
|
-
Changed
|
|
10890
|
+
Changed in v1.4.2
|
|
10849
10891
|
</span>
|
|
10850
10892
|
</a>
|
|
10851
10893
|
|
|
10852
10894
|
</li>
|
|
10853
10895
|
|
|
10854
10896
|
<li class="md-nav__item">
|
|
10855
|
-
<a href="#
|
|
10897
|
+
<a href="#fixed-in-v142" class="md-nav__link">
|
|
10856
10898
|
<span class="md-ellipsis">
|
|
10857
|
-
Fixed
|
|
10899
|
+
Fixed in v1.4.2
|
|
10858
10900
|
</span>
|
|
10859
10901
|
</a>
|
|
10860
10902
|
|
|
10861
10903
|
</li>
|
|
10862
10904
|
|
|
10863
10905
|
<li class="md-nav__item">
|
|
10864
|
-
<a href="#
|
|
10906
|
+
<a href="#dependencies-in-v142" class="md-nav__link">
|
|
10865
10907
|
<span class="md-ellipsis">
|
|
10866
|
-
Dependencies
|
|
10908
|
+
Dependencies in v1.4.2
|
|
10867
10909
|
</span>
|
|
10868
10910
|
</a>
|
|
10869
10911
|
|
|
10870
10912
|
</li>
|
|
10871
10913
|
|
|
10872
10914
|
<li class="md-nav__item">
|
|
10873
|
-
<a href="#
|
|
10915
|
+
<a href="#documentation-in-v142" class="md-nav__link">
|
|
10874
10916
|
<span class="md-ellipsis">
|
|
10875
|
-
Documentation
|
|
10917
|
+
Documentation in v1.4.2
|
|
10876
10918
|
</span>
|
|
10877
10919
|
</a>
|
|
10878
10920
|
|
|
10879
10921
|
</li>
|
|
10880
10922
|
|
|
10881
10923
|
<li class="md-nav__item">
|
|
10882
|
-
<a href="#
|
|
10924
|
+
<a href="#housekeeping-in-v142" class="md-nav__link">
|
|
10883
10925
|
<span class="md-ellipsis">
|
|
10884
|
-
Housekeeping
|
|
10926
|
+
Housekeeping in v1.4.2
|
|
10885
10927
|
</span>
|
|
10886
10928
|
</a>
|
|
10887
10929
|
|
|
@@ -10903,45 +10945,45 @@
|
|
|
10903
10945
|
<ul class="md-nav__list">
|
|
10904
10946
|
|
|
10905
10947
|
<li class="md-nav__item">
|
|
10906
|
-
<a href="#
|
|
10948
|
+
<a href="#added-in-v141" class="md-nav__link">
|
|
10907
10949
|
<span class="md-ellipsis">
|
|
10908
|
-
Added
|
|
10950
|
+
Added in v1.4.1
|
|
10909
10951
|
</span>
|
|
10910
10952
|
</a>
|
|
10911
10953
|
|
|
10912
10954
|
</li>
|
|
10913
10955
|
|
|
10914
10956
|
<li class="md-nav__item">
|
|
10915
|
-
<a href="#
|
|
10957
|
+
<a href="#changed-in-v141" class="md-nav__link">
|
|
10916
10958
|
<span class="md-ellipsis">
|
|
10917
|
-
Changed
|
|
10959
|
+
Changed in v1.4.1
|
|
10918
10960
|
</span>
|
|
10919
10961
|
</a>
|
|
10920
10962
|
|
|
10921
10963
|
</li>
|
|
10922
10964
|
|
|
10923
10965
|
<li class="md-nav__item">
|
|
10924
|
-
<a href="#
|
|
10966
|
+
<a href="#fixed-in-v141" class="md-nav__link">
|
|
10925
10967
|
<span class="md-ellipsis">
|
|
10926
|
-
Fixed
|
|
10968
|
+
Fixed in v1.4.1
|
|
10927
10969
|
</span>
|
|
10928
10970
|
</a>
|
|
10929
10971
|
|
|
10930
10972
|
</li>
|
|
10931
10973
|
|
|
10932
10974
|
<li class="md-nav__item">
|
|
10933
|
-
<a href="#
|
|
10975
|
+
<a href="#documentation-in-v141" class="md-nav__link">
|
|
10934
10976
|
<span class="md-ellipsis">
|
|
10935
|
-
Documentation
|
|
10977
|
+
Documentation in v1.4.1
|
|
10936
10978
|
</span>
|
|
10937
10979
|
</a>
|
|
10938
10980
|
|
|
10939
10981
|
</li>
|
|
10940
10982
|
|
|
10941
10983
|
<li class="md-nav__item">
|
|
10942
|
-
<a href="#
|
|
10984
|
+
<a href="#housekeeping-in-v141" class="md-nav__link">
|
|
10943
10985
|
<span class="md-ellipsis">
|
|
10944
|
-
Housekeeping
|
|
10986
|
+
Housekeeping in v1.4.1
|
|
10945
10987
|
</span>
|
|
10946
10988
|
</a>
|
|
10947
10989
|
|
|
@@ -10963,54 +11005,54 @@
|
|
|
10963
11005
|
<ul class="md-nav__list">
|
|
10964
11006
|
|
|
10965
11007
|
<li class="md-nav__item">
|
|
10966
|
-
<a href="#
|
|
11008
|
+
<a href="#added-in-v140" class="md-nav__link">
|
|
10967
11009
|
<span class="md-ellipsis">
|
|
10968
|
-
Added
|
|
11010
|
+
Added in v1.4.0
|
|
10969
11011
|
</span>
|
|
10970
11012
|
</a>
|
|
10971
11013
|
|
|
10972
11014
|
</li>
|
|
10973
11015
|
|
|
10974
11016
|
<li class="md-nav__item">
|
|
10975
|
-
<a href="#
|
|
11017
|
+
<a href="#changed-in-v140" class="md-nav__link">
|
|
10976
11018
|
<span class="md-ellipsis">
|
|
10977
|
-
Changed
|
|
11019
|
+
Changed in v1.4.0
|
|
10978
11020
|
</span>
|
|
10979
11021
|
</a>
|
|
10980
11022
|
|
|
10981
11023
|
</li>
|
|
10982
11024
|
|
|
10983
11025
|
<li class="md-nav__item">
|
|
10984
|
-
<a href="#
|
|
11026
|
+
<a href="#fixed-in-v140" class="md-nav__link">
|
|
10985
11027
|
<span class="md-ellipsis">
|
|
10986
|
-
Fixed
|
|
11028
|
+
Fixed in v1.4.0
|
|
10987
11029
|
</span>
|
|
10988
11030
|
</a>
|
|
10989
11031
|
|
|
10990
11032
|
</li>
|
|
10991
11033
|
|
|
10992
11034
|
<li class="md-nav__item">
|
|
10993
|
-
<a href="#
|
|
11035
|
+
<a href="#dependencies-in-v140" class="md-nav__link">
|
|
10994
11036
|
<span class="md-ellipsis">
|
|
10995
|
-
Dependencies
|
|
11037
|
+
Dependencies in v1.4.0
|
|
10996
11038
|
</span>
|
|
10997
11039
|
</a>
|
|
10998
11040
|
|
|
10999
11041
|
</li>
|
|
11000
11042
|
|
|
11001
11043
|
<li class="md-nav__item">
|
|
11002
|
-
<a href="#
|
|
11044
|
+
<a href="#documentation-in-v140" class="md-nav__link">
|
|
11003
11045
|
<span class="md-ellipsis">
|
|
11004
|
-
Documentation
|
|
11046
|
+
Documentation in v1.4.0
|
|
11005
11047
|
</span>
|
|
11006
11048
|
</a>
|
|
11007
11049
|
|
|
11008
11050
|
</li>
|
|
11009
11051
|
|
|
11010
11052
|
<li class="md-nav__item">
|
|
11011
|
-
<a href="#
|
|
11053
|
+
<a href="#housekeeping-in-v140" class="md-nav__link">
|
|
11012
11054
|
<span class="md-ellipsis">
|
|
11013
|
-
Housekeeping
|
|
11055
|
+
Housekeeping in v1.4.0
|
|
11014
11056
|
</span>
|
|
11015
11057
|
</a>
|
|
11016
11058
|
|
|
@@ -11032,45 +11074,45 @@
|
|
|
11032
11074
|
<ul class="md-nav__list">
|
|
11033
11075
|
|
|
11034
11076
|
<li class="md-nav__item">
|
|
11035
|
-
<a href="#
|
|
11077
|
+
<a href="#added-in-v140rc1" class="md-nav__link">
|
|
11036
11078
|
<span class="md-ellipsis">
|
|
11037
|
-
Added
|
|
11079
|
+
Added in v1.4.0rc1
|
|
11038
11080
|
</span>
|
|
11039
11081
|
</a>
|
|
11040
11082
|
|
|
11041
11083
|
</li>
|
|
11042
11084
|
|
|
11043
11085
|
<li class="md-nav__item">
|
|
11044
|
-
<a href="#
|
|
11086
|
+
<a href="#changed-in-v140rc1" class="md-nav__link">
|
|
11045
11087
|
<span class="md-ellipsis">
|
|
11046
|
-
Changed
|
|
11088
|
+
Changed in v1.4.0rc1
|
|
11047
11089
|
</span>
|
|
11048
11090
|
</a>
|
|
11049
11091
|
|
|
11050
11092
|
</li>
|
|
11051
11093
|
|
|
11052
11094
|
<li class="md-nav__item">
|
|
11053
|
-
<a href="#
|
|
11095
|
+
<a href="#fixed-in-v140rc1" class="md-nav__link">
|
|
11054
11096
|
<span class="md-ellipsis">
|
|
11055
|
-
Fixed
|
|
11097
|
+
Fixed in v1.4.0rc1
|
|
11056
11098
|
</span>
|
|
11057
11099
|
</a>
|
|
11058
11100
|
|
|
11059
11101
|
</li>
|
|
11060
11102
|
|
|
11061
11103
|
<li class="md-nav__item">
|
|
11062
|
-
<a href="#
|
|
11104
|
+
<a href="#documentation-in-v140rc1" class="md-nav__link">
|
|
11063
11105
|
<span class="md-ellipsis">
|
|
11064
|
-
Documentation
|
|
11106
|
+
Documentation in v1.4.0rc1
|
|
11065
11107
|
</span>
|
|
11066
11108
|
</a>
|
|
11067
11109
|
|
|
11068
11110
|
</li>
|
|
11069
11111
|
|
|
11070
11112
|
<li class="md-nav__item">
|
|
11071
|
-
<a href="#
|
|
11113
|
+
<a href="#housekeeping-in-v140rc1" class="md-nav__link">
|
|
11072
11114
|
<span class="md-ellipsis">
|
|
11073
|
-
Housekeeping
|
|
11115
|
+
Housekeeping in v1.4.0rc1
|
|
11074
11116
|
</span>
|
|
11075
11117
|
</a>
|
|
11076
11118
|
|
|
@@ -11092,45 +11134,45 @@
|
|
|
11092
11134
|
<ul class="md-nav__list">
|
|
11093
11135
|
|
|
11094
11136
|
<li class="md-nav__item">
|
|
11095
|
-
<a href="#
|
|
11137
|
+
<a href="#added-in-v140b1" class="md-nav__link">
|
|
11096
11138
|
<span class="md-ellipsis">
|
|
11097
|
-
Added
|
|
11139
|
+
Added in v1.4.0b1
|
|
11098
11140
|
</span>
|
|
11099
11141
|
</a>
|
|
11100
11142
|
|
|
11101
11143
|
</li>
|
|
11102
11144
|
|
|
11103
11145
|
<li class="md-nav__item">
|
|
11104
|
-
<a href="#
|
|
11146
|
+
<a href="#changed-in-v140b1" class="md-nav__link">
|
|
11105
11147
|
<span class="md-ellipsis">
|
|
11106
|
-
Changed
|
|
11148
|
+
Changed in v1.4.0b1
|
|
11107
11149
|
</span>
|
|
11108
11150
|
</a>
|
|
11109
11151
|
|
|
11110
11152
|
</li>
|
|
11111
11153
|
|
|
11112
11154
|
<li class="md-nav__item">
|
|
11113
|
-
<a href="#
|
|
11155
|
+
<a href="#fixed-in-v140b1" class="md-nav__link">
|
|
11114
11156
|
<span class="md-ellipsis">
|
|
11115
|
-
Fixed
|
|
11157
|
+
Fixed in v1.4.0b1
|
|
11116
11158
|
</span>
|
|
11117
11159
|
</a>
|
|
11118
11160
|
|
|
11119
11161
|
</li>
|
|
11120
11162
|
|
|
11121
11163
|
<li class="md-nav__item">
|
|
11122
|
-
<a href="#
|
|
11164
|
+
<a href="#dependencies-in-v140b1" class="md-nav__link">
|
|
11123
11165
|
<span class="md-ellipsis">
|
|
11124
|
-
Dependencies
|
|
11166
|
+
Dependencies in v1.4.0b1
|
|
11125
11167
|
</span>
|
|
11126
11168
|
</a>
|
|
11127
11169
|
|
|
11128
11170
|
</li>
|
|
11129
11171
|
|
|
11130
11172
|
<li class="md-nav__item">
|
|
11131
|
-
<a href="#
|
|
11173
|
+
<a href="#documentation-in-v140b1" class="md-nav__link">
|
|
11132
11174
|
<span class="md-ellipsis">
|
|
11133
|
-
Documentation
|
|
11175
|
+
Documentation in v1.4.0b1
|
|
11134
11176
|
</span>
|
|
11135
11177
|
</a>
|
|
11136
11178
|
|
|
@@ -11152,54 +11194,54 @@
|
|
|
11152
11194
|
<ul class="md-nav__list">
|
|
11153
11195
|
|
|
11154
11196
|
<li class="md-nav__item">
|
|
11155
|
-
<a href="#
|
|
11197
|
+
<a href="#added-in-v140a2" class="md-nav__link">
|
|
11156
11198
|
<span class="md-ellipsis">
|
|
11157
|
-
Added
|
|
11199
|
+
Added in v1.4.0a2
|
|
11158
11200
|
</span>
|
|
11159
11201
|
</a>
|
|
11160
11202
|
|
|
11161
11203
|
</li>
|
|
11162
11204
|
|
|
11163
11205
|
<li class="md-nav__item">
|
|
11164
|
-
<a href="#
|
|
11206
|
+
<a href="#changed-in-v140a2" class="md-nav__link">
|
|
11165
11207
|
<span class="md-ellipsis">
|
|
11166
|
-
Changed
|
|
11208
|
+
Changed in v1.4.0a2
|
|
11167
11209
|
</span>
|
|
11168
11210
|
</a>
|
|
11169
11211
|
|
|
11170
11212
|
</li>
|
|
11171
11213
|
|
|
11172
11214
|
<li class="md-nav__item">
|
|
11173
|
-
<a href="#removed" class="md-nav__link">
|
|
11215
|
+
<a href="#removed-in-v140a2" class="md-nav__link">
|
|
11174
11216
|
<span class="md-ellipsis">
|
|
11175
|
-
Removed
|
|
11217
|
+
Removed in v1.4.0a2
|
|
11176
11218
|
</span>
|
|
11177
11219
|
</a>
|
|
11178
11220
|
|
|
11179
11221
|
</li>
|
|
11180
11222
|
|
|
11181
11223
|
<li class="md-nav__item">
|
|
11182
|
-
<a href="#
|
|
11224
|
+
<a href="#fixed-in-v140a2" class="md-nav__link">
|
|
11183
11225
|
<span class="md-ellipsis">
|
|
11184
|
-
Fixed
|
|
11226
|
+
Fixed in v1.4.0a2
|
|
11185
11227
|
</span>
|
|
11186
11228
|
</a>
|
|
11187
11229
|
|
|
11188
11230
|
</li>
|
|
11189
11231
|
|
|
11190
11232
|
<li class="md-nav__item">
|
|
11191
|
-
<a href="#
|
|
11233
|
+
<a href="#dependencies-in-v140a2" class="md-nav__link">
|
|
11192
11234
|
<span class="md-ellipsis">
|
|
11193
|
-
Dependencies
|
|
11235
|
+
Dependencies in v1.4.0a2
|
|
11194
11236
|
</span>
|
|
11195
11237
|
</a>
|
|
11196
11238
|
|
|
11197
11239
|
</li>
|
|
11198
11240
|
|
|
11199
11241
|
<li class="md-nav__item">
|
|
11200
|
-
<a href="#
|
|
11242
|
+
<a href="#housekeeping-in-v140a2" class="md-nav__link">
|
|
11201
11243
|
<span class="md-ellipsis">
|
|
11202
|
-
Housekeeping
|
|
11244
|
+
Housekeeping in v1.4.0a2
|
|
11203
11245
|
</span>
|
|
11204
11246
|
</a>
|
|
11205
11247
|
|
|
@@ -11221,27 +11263,27 @@
|
|
|
11221
11263
|
<ul class="md-nav__list">
|
|
11222
11264
|
|
|
11223
11265
|
<li class="md-nav__item">
|
|
11224
|
-
<a href="#
|
|
11266
|
+
<a href="#added-in-v140a1" class="md-nav__link">
|
|
11225
11267
|
<span class="md-ellipsis">
|
|
11226
|
-
Added
|
|
11268
|
+
Added in v1.4.0a1
|
|
11227
11269
|
</span>
|
|
11228
11270
|
</a>
|
|
11229
11271
|
|
|
11230
11272
|
</li>
|
|
11231
11273
|
|
|
11232
11274
|
<li class="md-nav__item">
|
|
11233
|
-
<a href="#
|
|
11275
|
+
<a href="#changed-in-v140a1" class="md-nav__link">
|
|
11234
11276
|
<span class="md-ellipsis">
|
|
11235
|
-
Changed
|
|
11277
|
+
Changed in v1.4.0a1
|
|
11236
11278
|
</span>
|
|
11237
11279
|
</a>
|
|
11238
11280
|
|
|
11239
11281
|
</li>
|
|
11240
11282
|
|
|
11241
11283
|
<li class="md-nav__item">
|
|
11242
|
-
<a href="#
|
|
11284
|
+
<a href="#fixed-in-v140a1" class="md-nav__link">
|
|
11243
11285
|
<span class="md-ellipsis">
|
|
11244
|
-
Fixed
|
|
11286
|
+
Fixed in v1.4.0a1
|
|
11245
11287
|
</span>
|
|
11246
11288
|
</a>
|
|
11247
11289
|
|
|
@@ -11270,8 +11312,6 @@
|
|
|
11270
11312
|
|
|
11271
11313
|
|
|
11272
11314
|
|
|
11273
|
-
<!-- markdownlint-disable MD012 MD024 -->
|
|
11274
|
-
|
|
11275
11315
|
<h1 id="nautobot-v14">Nautobot v1.4<a class="headerlink" href="#nautobot-v14" title="Permanent link">¶</a></h1>
|
|
11276
11316
|
<p>This document describes all new features and changes in Nautobot 1.4.</p>
|
|
11277
11317
|
<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>
|
|
@@ -11408,28 +11448,28 @@
|
|
|
11408
11448
|
<h4 id="moved-registry-template-context-1945">Moved Registry Template Context (<a href="https://github.com/nautobot/nautobot/issues/1945">#1945</a>)<a class="headerlink" href="#moved-registry-template-context-1945" title="Permanent link">¶</a></h4>
|
|
11409
11449
|
<p>The <code>settings_and_registry</code> default context processor was changed to purely <code>settings</code> - the (large) Nautobot application registry dictionary is no longer provided as part of the render context for all templates by default. Added a new <code>registry</code> template tag that can be invoked by specific templates to provide this variable where needed.</p>
|
|
11410
11450
|
<h2 id="v1410-2022-11-07">v1.4.10 (2022-11-07)<a class="headerlink" href="#v1410-2022-11-07" title="Permanent link">¶</a></h2>
|
|
11411
|
-
<h3 id="
|
|
11451
|
+
<h3 id="changed-in-v1410">Changed in v1.4.10<a class="headerlink" href="#changed-in-v1410" title="Permanent link">¶</a></h3>
|
|
11412
11452
|
<ul>
|
|
11413
11453
|
<li><a href="https://github.com/nautobot/nautobot/issues/2758">#2758</a> - Changed console logging back to disabled by default when running <code>nautobot-server test ...</code>.</li>
|
|
11414
11454
|
</ul>
|
|
11415
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11455
|
+
<h3 id="fixed-in-v1410">Fixed in v1.4.10<a class="headerlink" href="#fixed-in-v1410" title="Permanent link">¶</a></h3>
|
|
11416
11456
|
<ul>
|
|
11417
11457
|
<li><a href="https://github.com/nautobot/nautobot/issues/2755">#2755</a> - Fixed incorrect file permissions on <code>/opt/nautobot/nautobot_config.py</code> in <code>final</code> Docker images.</li>
|
|
11418
11458
|
</ul>
|
|
11419
11459
|
<h2 id="v149-2022-11-04">v1.4.9 (2022-11-04)<a class="headerlink" href="#v149-2022-11-04" title="Permanent link">¶</a></h2>
|
|
11420
|
-
<h3 id="
|
|
11460
|
+
<h3 id="added-in-v149">Added in v1.4.9<a class="headerlink" href="#added-in-v149" title="Permanent link">¶</a></h3>
|
|
11421
11461
|
<ul>
|
|
11422
11462
|
<li><a href="https://github.com/nautobot/nautobot/issues/1720">#1720</a> - Added NullableDateField to enable Date Type CustomField to filter on null value.</li>
|
|
11423
11463
|
</ul>
|
|
11424
|
-
<h3 id="
|
|
11464
|
+
<h3 id="changed-in-v149">Changed in v1.4.9<a class="headerlink" href="#changed-in-v149" title="Permanent link">¶</a></h3>
|
|
11425
11465
|
<ul>
|
|
11426
11466
|
<li><a href="https://github.com/nautobot/nautobot/issues/2669">#2669</a> - Blocked changing the parent of a LocationType when it already has Locations using it.</li>
|
|
11427
11467
|
<li><a href="https://github.com/nautobot/nautobot/issues/2671">#2671</a> - Changed the published <code>nautobot-dev</code> images to use the same default <code>nautobot_config.py</code> as the published <code>nautobot</code> images, instead of using the Nautobot core development <code>nautobot_config.py</code> file.</li>
|
|
11428
11468
|
</ul>
|
|
11429
|
-
<h3 id="
|
|
11469
|
+
<h3 id="fixed-in-v149">Fixed in v1.4.9<a class="headerlink" href="#fixed-in-v149" title="Permanent link">¶</a></h3>
|
|
11430
11470
|
<ul>
|
|
11431
11471
|
<li><a href="https://github.com/nautobot/nautobot/issues/2406">#2406</a> - Fixed missing HTML element ID for hyperlinks.</li>
|
|
11432
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/2419">#2419</a> - Fixed the null device interface status when a device is created with a device_role associated to an InterfaceTemplate.</li>
|
|
11472
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/2419">#2419</a> - Fixed the null device interface status when a device is created with a <code>device_role</code> associated to an InterfaceTemplate.</li>
|
|
11433
11473
|
<li><a href="https://github.com/nautobot/nautobot/issues/2552">#2552</a> - Updated CSS to better account for footer resizing.</li>
|
|
11434
11474
|
<li><a href="https://github.com/nautobot/nautobot/issues/2601">#2601</a> - Fixed an issue where a Git repository could provide Jobs even if not marked as a provider of Jobs.</li>
|
|
11435
11475
|
<li><a href="https://github.com/nautobot/nautobot/issues/2683">#2683</a> - Fixed so that unauthenticated users don't see the version number for Nautobot in the footer.</li>
|
|
@@ -11440,12 +11480,12 @@
|
|
|
11440
11480
|
<li><a href="https://github.com/nautobot/nautobot/issues/2717">#2717</a> - Fixed backwards-compatibility with changes made to <code>TreeNodeMultipleChoiceFilter</code>.</li>
|
|
11441
11481
|
<li><a href="https://github.com/nautobot/nautobot/issues/2733">#2733</a> - Fixed bug in <code>run_job_for_testing</code> when no request is provided.</li>
|
|
11442
11482
|
</ul>
|
|
11443
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11483
|
+
<h3 id="documentation-in-v149">Documentation in v1.4.9<a class="headerlink" href="#documentation-in-v149" title="Permanent link">¶</a></h3>
|
|
11444
11484
|
<ul>
|
|
11445
11485
|
<li><a href="https://github.com/nautobot/nautobot/issues/2658">#2658</a> - Updated plugin development documentation to introduce <code>NautobotUIViewSet</code> as the first approach for the <code>Adding Web UI Views</code> section.</li>
|
|
11446
11486
|
<li><a href="https://github.com/nautobot/nautobot/issues/2712">#2712</a> - Updated docs links to include the <code>/projects/core</code> in the url path to link correctly.</li>
|
|
11447
11487
|
</ul>
|
|
11448
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11488
|
+
<h3 id="housekeeping-in-v149">Housekeeping in v1.4.9<a class="headerlink" href="#housekeeping-in-v149" title="Permanent link">¶</a></h3>
|
|
11449
11489
|
<ul>
|
|
11450
11490
|
<li><a href="https://github.com/nautobot/nautobot/issues/2671">#2671</a> - Renamed <code>development/docker-compose.build.yml</code> to <code>development/docker-compose.final.yml</code> to better reflect its meaning.</li>
|
|
11451
11491
|
<li><a href="https://github.com/nautobot/nautobot/issues/2671">#2671</a> - Changed the image labels used in the docker-compose development workflow to reduce ambiguity.</li>
|
|
@@ -11455,24 +11495,24 @@
|
|
|
11455
11495
|
<li><a href="https://github.com/nautobot/nautobot/issues/2736">#2736</a> - Fixed incorrect <code>site_url</code> setting for MkDocs.</li>
|
|
11456
11496
|
</ul>
|
|
11457
11497
|
<h2 id="v148-2022-10-31">v1.4.8 (2022-10-31)<a class="headerlink" href="#v148-2022-10-31" title="Permanent link">¶</a></h2>
|
|
11458
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11498
|
+
<h3 id="security-in-v148">Security in v1.4.8<a class="headerlink" href="#security-in-v148" title="Permanent link">¶</a></h3>
|
|
11459
11499
|
<ul>
|
|
11460
11500
|
<li><a href="https://github.com/nautobot/nautobot/issues/2651">#2651</a> - Updated <code>Django</code> minimum version to 3.2.16 due to CVE-2022-41323.</li>
|
|
11461
11501
|
</ul>
|
|
11462
|
-
<h3 id="
|
|
11502
|
+
<h3 id="added-in-v148">Added in v1.4.8<a class="headerlink" href="#added-in-v148" title="Permanent link">¶</a></h3>
|
|
11463
11503
|
<ul>
|
|
11464
11504
|
<li><a href="https://github.com/nautobot/nautobot/issues/2086">#2086</a> - Added JobResult export feature.</li>
|
|
11465
11505
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Added support for the documented environment variables in Nautobot's base <code>settings.py</code>, so that they will be recognized even when using a minimal <code>nautobot_config.py</code> or one that was not generated by <code>nautobot-server init</code>.</li>
|
|
11466
11506
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Added documentation of more configuration options in the configuration that is generated by <code>nautobot-server init</code>.</li>
|
|
11467
11507
|
<li><a href="https://github.com/nautobot/nautobot/issues/2675">#2675</a> - Added the ability to configure Redis Unix socket connections.</li>
|
|
11468
11508
|
</ul>
|
|
11469
|
-
<h3 id="
|
|
11509
|
+
<h3 id="changed-in-v148">Changed in v1.4.8<a class="headerlink" href="#changed-in-v148" title="Permanent link">¶</a></h3>
|
|
11470
11510
|
<ul>
|
|
11471
11511
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Updated defaults in <code>settings.py</code> to more closely align to the documentation. If you're using a configuration file generated by <code>nautobot-server init</code>, these changes should have no impact, but if you have a manually crafted configuration file, please verify that the configuration of your system is still as expected after upgrading, with a particular focus on the database configuration, <code>SECRET_KEY</code>, and <code>LOGGING</code>.</li>
|
|
11472
11512
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Changed the default <code>LOGGING</code> configuration for virtualenv installs to be the same as it is for Nautobot's published Docker images.</li>
|
|
11473
11513
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Revised the template for new configurations generated by <code>nautobot-server init</code> to have less redundancy with Nautobot's built-in <code>settings.py</code>.</li>
|
|
11474
11514
|
</ul>
|
|
11475
|
-
<h3 id="
|
|
11515
|
+
<h3 id="fixed-in-v148">Fixed in v1.4.8<a class="headerlink" href="#fixed-in-v148" title="Permanent link">¶</a></h3>
|
|
11476
11516
|
<ul>
|
|
11477
11517
|
<li><a href="https://github.com/nautobot/nautobot/issues/2099">#2099</a> - Fixed PowerFeed Utilization on Rack View not displaying correctly.</li>
|
|
11478
11518
|
<li><a href="https://github.com/nautobot/nautobot/issues/2099">#2099</a> - Fixed Total Power Utilization on Rack View not taking into account direct-connected devices.</li>
|
|
@@ -11488,19 +11528,19 @@
|
|
|
11488
11528
|
<li><a href="https://github.com/nautobot/nautobot/issues/2655">#2655</a> - Fixed error when selecting a "related path" from the Cable Trace view.</li>
|
|
11489
11529
|
<li><a href="https://github.com/nautobot/nautobot/issues/2693">#2693</a> - Fixed filtering by tree node objects in nested Dynamic Groups.</li>
|
|
11490
11530
|
</ul>
|
|
11491
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11531
|
+
<h3 id="dependencies-in-v148">Dependencies in v1.4.8<a class="headerlink" href="#dependencies-in-v148" title="Permanent link">¶</a></h3>
|
|
11492
11532
|
<ul>
|
|
11493
11533
|
<li><a href="https://github.com/nautobot/nautobot/issues/2585">#2585</a> - Updated dependency <code>django-health-check</code> from 3.16.5 to 3.16.7.</li>
|
|
11494
11534
|
<li><a href="https://github.com/nautobot/nautobot/issues/2585">#2585</a> - Updated dependency <code>psycopg2-binary</code> from 2.9.3 to 2.9.4.</li>
|
|
11495
11535
|
</ul>
|
|
11496
|
-
<h3 id="
|
|
11536
|
+
<h3 id="documentation-in-v148">Documentation in v1.4.8<a class="headerlink" href="#documentation-in-v148" title="Permanent link">¶</a></h3>
|
|
11497
11537
|
<ul>
|
|
11498
11538
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Added a warning in the documentation about django-cryptography and changing <code>SECRET_KEY</code>.</li>
|
|
11499
11539
|
<li><a href="https://github.com/nautobot/nautobot/issues/2591">#2591</a> - Updated README.md to include additional information about the Nautobot project.</li>
|
|
11500
11540
|
<li><a href="https://github.com/nautobot/nautobot/issues/2619">#2619</a> - Added notes about restarting the Nautobot server after creating relationships, custom fields, and computed fields to show them in GraphQL.</li>
|
|
11501
11541
|
<li><a href="https://github.com/nautobot/nautobot/issues/2677">#2677</a> - Fixed a documentation error by adding an import statement to a code example in <code>nautobot/docs/plugins/development.md</code>.</li>
|
|
11502
11542
|
</ul>
|
|
11503
|
-
<h3 id="
|
|
11543
|
+
<h3 id="housekeeping-in-v148">Housekeeping in v1.4.8<a class="headerlink" href="#housekeeping-in-v148" title="Permanent link">¶</a></h3>
|
|
11504
11544
|
<ul>
|
|
11505
11545
|
<li><a href="https://github.com/nautobot/nautobot/issues/2585">#2585</a> - Updated development dependency <code>coverage</code> from 6.4.2 to 6.4.4.</li>
|
|
11506
11546
|
<li><a href="https://github.com/nautobot/nautobot/issues/2585">#2585</a> - Updated development dependency <code>invoke</code> from 1.7.1 to 1.7.3.</li>
|
|
@@ -11511,24 +11551,24 @@
|
|
|
11511
11551
|
<li><a href="https://github.com/nautobot/nautobot/issues/2690">#2690</a> - Fixed test settings to disable logging when running tests.</li>
|
|
11512
11552
|
</ul>
|
|
11513
11553
|
<h2 id="v147-2022-10-18">v1.4.7 (2022-10-18)<a class="headerlink" href="#v147-2022-10-18" title="Permanent link">¶</a></h2>
|
|
11514
|
-
<h3 id="
|
|
11554
|
+
<h3 id="fixed-in-v147">Fixed in v1.4.7<a class="headerlink" href="#fixed-in-v147" title="Permanent link">¶</a></h3>
|
|
11515
11555
|
<ul>
|
|
11516
11556
|
<li><a href="https://github.com/nautobot/nautobot/issues/2636">#2636</a> - Fixed <code>pyproject.toml</code> to be a proper full release.</li>
|
|
11517
11557
|
</ul>
|
|
11518
11558
|
<h2 id="v146-2022-10-17">v1.4.6 (2022-10-17)<a class="headerlink" href="#v146-2022-10-17" title="Permanent link">¶</a></h2>
|
|
11519
|
-
<h3 id="
|
|
11559
|
+
<h3 id="security-in-v146">Security in v1.4.6<a class="headerlink" href="#security-in-v146" title="Permanent link">¶</a></h3>
|
|
11520
11560
|
<ul>
|
|
11521
11561
|
<li><a href="https://github.com/nautobot/nautobot/issues/2434">#2434</a> - Updated <code>oauthlib</code> to <code>3.2.1</code> for <code>CVE-2022-36087</code>. This is a dependency of <code>social-auth-core</code> so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11522
11562
|
</ul>
|
|
11523
|
-
<h3 id="
|
|
11563
|
+
<h3 id="added-in-v146">Added in v1.4.6<a class="headerlink" href="#added-in-v146" title="Permanent link">¶</a></h3>
|
|
11524
11564
|
<ul>
|
|
11525
11565
|
<li><a href="https://github.com/nautobot/nautobot/issues/2437">#2437</a> - Added Nautobot-themed error page for handling 403 CSRF errors.</li>
|
|
11526
11566
|
</ul>
|
|
11527
|
-
<h3 id="
|
|
11567
|
+
<h3 id="changed-in-v146">Changed in v1.4.6<a class="headerlink" href="#changed-in-v146" title="Permanent link">¶</a></h3>
|
|
11528
11568
|
<ul>
|
|
11529
11569
|
<li><a href="https://github.com/nautobot/nautobot/issues/2602">#2602</a> - Increased size of <code>ObjectChange.change_context_detail</code> field from 100 to 400 chars, and add truncation to it. Also adding truncation to <code>ObjectChange.object_repr</code>.</li>
|
|
11530
11570
|
</ul>
|
|
11531
|
-
<h3 id="
|
|
11571
|
+
<h3 id="fixed-in-v146">Fixed in v1.4.6<a class="headerlink" href="#fixed-in-v146" title="Permanent link">¶</a></h3>
|
|
11532
11572
|
<ul>
|
|
11533
11573
|
<li><a href="https://github.com/nautobot/nautobot/issues/2075">#2075</a> - Fixed white screen flash in dark mode.</li>
|
|
11534
11574
|
<li><a href="https://github.com/nautobot/nautobot/issues/2546">#2546</a> - Applied a hotfix for multiple jobs executing from a single scheduled job.</li>
|
|
@@ -11537,42 +11577,42 @@
|
|
|
11537
11577
|
<li><a href="https://github.com/nautobot/nautobot/issues/2574">#2574</a> - Updated <code>nautobot.core.settings</code> to match expected behavior on <code>NAPALM_USERNAME</code>, <code>NAPALM_PASSWORD</code>, and <code>NAPALM_TIMEOUT</code> based on documentation.</li>
|
|
11538
11578
|
<li><a href="https://github.com/nautobot/nautobot/issues/2595">#2595</a> - Fixed NautobotUIViewSet handling of unauthenticated users.</li>
|
|
11539
11579
|
</ul>
|
|
11540
|
-
<h3 id="
|
|
11580
|
+
<h3 id="documentation-in-v146">Documentation in v1.4.6<a class="headerlink" href="#documentation-in-v146" title="Permanent link">¶</a></h3>
|
|
11541
11581
|
<ul>
|
|
11542
11582
|
<li><a href="https://github.com/nautobot/nautobot/issues/2512">#2512</a> - Added link to <code>nautobot-plugin-nornir</code> in the Apps section of the documentation.</li>
|
|
11543
11583
|
<li><a href="https://github.com/nautobot/nautobot/issues/2530">#2530</a> - Updated development documentation to include LTM, additional release schedule information.</li>
|
|
11544
11584
|
<li><a href="https://github.com/nautobot/nautobot/issues/2566">#2566</a> - Clarified documentation on superusers needing staff permission to access admin UI.</li>
|
|
11545
11585
|
<li><a href="https://github.com/nautobot/nautobot/issues/2588">#2588</a> - Added a danger admonition to developer docs about never using <code>pip</code> to install Poetry into Nautobot dev environment.</li>
|
|
11546
11586
|
</ul>
|
|
11547
|
-
<h3 id="
|
|
11587
|
+
<h3 id="housekeeping-in-v146">Housekeeping in v1.4.6<a class="headerlink" href="#housekeeping-in-v146" title="Permanent link">¶</a></h3>
|
|
11548
11588
|
<ul>
|
|
11549
11589
|
<li><a href="https://github.com/nautobot/nautobot/issues/2614">#2614</a> - Fixed CONTRIBUTING.md link to actual Nautobot documentation.</li>
|
|
11550
11590
|
</ul>
|
|
11551
11591
|
<h2 id="v145-2022-10-03">v1.4.5 (2022-10-03)<a class="headerlink" href="#v145-2022-10-03" title="Permanent link">¶</a></h2>
|
|
11552
|
-
<h3 id="
|
|
11592
|
+
<h3 id="added-in-v145">Added in v1.4.5<a class="headerlink" href="#added-in-v145" title="Permanent link">¶</a></h3>
|
|
11553
11593
|
<ul>
|
|
11554
11594
|
<li><a href="https://github.com/nautobot/nautobot/issues/2330">#2330</a> - Added <code>created</code> and <code>last_updated</code> fields to Device <code>Component</code> and <code>ComponentTemplate</code> models.</li>
|
|
11555
11595
|
</ul>
|
|
11556
|
-
<h3 id="
|
|
11596
|
+
<h3 id="changed-in-v145">Changed in v1.4.5<a class="headerlink" href="#changed-in-v145" title="Permanent link">¶</a></h3>
|
|
11557
11597
|
<ul>
|
|
11558
11598
|
<li><a href="https://github.com/nautobot/nautobot/issues/2508">#2508</a> - Updated dark mode theme to be less...dark.</li>
|
|
11559
11599
|
</ul>
|
|
11560
|
-
<h3 id="
|
|
11600
|
+
<h3 id="fixed-in-v145">Fixed in v1.4.5<a class="headerlink" href="#fixed-in-v145" title="Permanent link">¶</a></h3>
|
|
11561
11601
|
<ul>
|
|
11562
11602
|
<li><a href="https://github.com/nautobot/nautobot/issues/2326">#2326</a> - Fixed 500 error in Circuit Termination swap.</li>
|
|
11563
11603
|
<li><a href="https://github.com/nautobot/nautobot/issues/2330">#2330</a> - Fixed missing Change Log tab on device component detail views.</li>
|
|
11564
11604
|
<li><a href="https://github.com/nautobot/nautobot/issues/2466">#2466</a> - Fixed Jobs misleading sensitive variables or requiring approval error message.</li>
|
|
11565
11605
|
<li><a href="https://github.com/nautobot/nautobot/issues/2509">#2509</a> - Fixed template lookup logic in ObjectNotesView, ObjectDynamicGroupsView and ObjectChangeLogView.</li>
|
|
11566
11606
|
</ul>
|
|
11567
|
-
<h3 id="
|
|
11607
|
+
<h3 id="dependencies-in-v145">Dependencies in v1.4.5<a class="headerlink" href="#dependencies-in-v145" title="Permanent link">¶</a></h3>
|
|
11568
11608
|
<ul>
|
|
11569
11609
|
<li><a href="https://github.com/nautobot/nautobot/issues/2537">#2537</a> - Updated <code>django-extensions</code> to <code>3.2.1</code>, <code>drf-spectacular</code> to <code>0.24.2</code>, <code>drf-yasg</code> to <code>1.21.4</code>.</li>
|
|
11570
11610
|
</ul>
|
|
11571
|
-
<h3 id="
|
|
11611
|
+
<h3 id="documentation-in-v145">Documentation in v1.4.5<a class="headerlink" href="#documentation-in-v145" title="Permanent link">¶</a></h3>
|
|
11572
11612
|
<ul>
|
|
11573
11613
|
<li><a href="https://github.com/nautobot/nautobot/issues/2539">#2539</a> - Updated links from nautobot.readthedocs.io to docs.nautobot.com.</li>
|
|
11574
11614
|
</ul>
|
|
11575
|
-
<h3 id="
|
|
11615
|
+
<h3 id="housekeeping-in-v145">Housekeeping in v1.4.5<a class="headerlink" href="#housekeeping-in-v145" title="Permanent link">¶</a></h3>
|
|
11576
11616
|
<ul>
|
|
11577
11617
|
<li><a href="https://github.com/nautobot/nautobot/issues/2445">#2445</a> - Fixed invalid Renovate config.</li>
|
|
11578
11618
|
<li><a href="https://github.com/nautobot/nautobot/issues/2490">#2490</a> - Added change log fragment checkbox to Github pull request template.</li>
|
|
@@ -11581,42 +11621,42 @@
|
|
|
11581
11621
|
<li><a href="https://github.com/nautobot/nautobot/issues/2544">#2544</a> - Updated towncrier template to convert multi-line change fragments into multiple release notes entries.</li>
|
|
11582
11622
|
</ul>
|
|
11583
11623
|
<h2 id="v144-2022-09-26">v1.4.4 (2022-09-26)<a class="headerlink" href="#v144-2022-09-26" title="Permanent link">¶</a></h2>
|
|
11584
|
-
<h3 id="
|
|
11624
|
+
<h3 id="added-in-v144">Added in v1.4.4<a class="headerlink" href="#added-in-v144" title="Permanent link">¶</a></h3>
|
|
11585
11625
|
<ul>
|
|
11586
11626
|
<li><a href="https://github.com/nautobot/nautobot/issues/2023">#2023</a> - Added reusable GitHub Action workflow for use by plugins to test against <code>next</code>, <code>develop</code> routinely.</li>
|
|
11587
11627
|
</ul>
|
|
11588
|
-
<h3 id="
|
|
11628
|
+
<h3 id="changed-in-v144">Changed in v1.4.4<a class="headerlink" href="#changed-in-v144" title="Permanent link">¶</a></h3>
|
|
11589
11629
|
<ul>
|
|
11590
11630
|
<li><a href="https://github.com/nautobot/nautobot/issues/2235">#2235</a> - Added ancestor information to Location and LocationType display names to provide additional context in the UI.</li>
|
|
11591
11631
|
</ul>
|
|
11592
|
-
<h3 id="
|
|
11632
|
+
<h3 id="fixed-in-v144">Fixed in v1.4.4<a class="headerlink" href="#fixed-in-v144" title="Permanent link">¶</a></h3>
|
|
11593
11633
|
<ul>
|
|
11594
11634
|
<li><a href="https://github.com/nautobot/nautobot/issues/2353">#2353</a> - Fixed MultiSelect CustomField being emptied unintentionally after bulk update.</li>
|
|
11595
11635
|
<li><a href="https://github.com/nautobot/nautobot/issues/2375">#2375</a> - Fixed error in Cable list view filtering when <code>color</code> and <code>type</code> filters are not set.</li>
|
|
11596
11636
|
<li><a href="https://github.com/nautobot/nautobot/issues/2461">#2461</a> - Fixed an exception during OpenAPI schema generation when certain Nautobot apps (including <code>nautobot-firewall-models</code>) were installed.</li>
|
|
11597
11637
|
</ul>
|
|
11598
|
-
<h3 id="
|
|
11638
|
+
<h3 id="documentation-in-v144">Documentation in v1.4.4<a class="headerlink" href="#documentation-in-v144" title="Permanent link">¶</a></h3>
|
|
11599
11639
|
<ul>
|
|
11600
11640
|
<li><a href="https://github.com/nautobot/nautobot/issues/2153">#2153</a> - Updated optional settings documentation to provide clarity on Nautobot vs Django settings.</li>
|
|
11601
11641
|
</ul>
|
|
11602
|
-
<h3 id="
|
|
11642
|
+
<h3 id="housekeeping-in-v144">Housekeeping in v1.4.4<a class="headerlink" href="#housekeeping-in-v144" title="Permanent link">¶</a></h3>
|
|
11603
11643
|
<ul>
|
|
11604
11644
|
<li><a href="https://github.com/nautobot/nautobot/issues/2457">#2457</a> - Moved <code>towncrier_template.j2</code> from root to develop directory.</li>
|
|
11605
11645
|
<li><a href="https://github.com/nautobot/nautobot/issues/2468">#2468</a> - Upgraded CI gh-action-setup-poetry-environment action to v3</li>
|
|
11606
11646
|
<li><a href="https://github.com/nautobot/nautobot/pull/2496">#2496</a> - Fixed failing CI due to #2468</li>
|
|
11607
11647
|
</ul>
|
|
11608
11648
|
<h2 id="v143-2022-09-19">v1.4.3 (2022-09-19)<a class="headerlink" href="#v143-2022-09-19" title="Permanent link">¶</a></h2>
|
|
11609
|
-
<h3 id="
|
|
11649
|
+
<h3 id="added-in-v143">Added in v1.4.3<a class="headerlink" href="#added-in-v143" title="Permanent link">¶</a></h3>
|
|
11610
11650
|
<ul>
|
|
11611
11651
|
<li><a href="https://github.com/nautobot/nautobot/issues/2327">#2327</a> - Added help text to the Job scheduling datetime picker to indicate the applicable time zone.</li>
|
|
11612
11652
|
</ul>
|
|
11613
|
-
<h3 id="
|
|
11653
|
+
<h3 id="changed-in-v143">Changed in v1.4.3<a class="headerlink" href="#changed-in-v143" title="Permanent link">¶</a></h3>
|
|
11614
11654
|
<ul>
|
|
11615
11655
|
<li><a href="https://github.com/nautobot/nautobot/issues/2223">#2223</a> - Augment <code>get_route_for_model()</code> to support REST API routes.</li>
|
|
11616
11656
|
<li><a href="https://github.com/nautobot/nautobot/issues/2340">#2340</a> - Improved rendering of badges, labels, buttons, and color selection menus in dark mode.</li>
|
|
11617
11657
|
<li><a href="https://github.com/nautobot/nautobot/issues/2447">#2447</a> - Moved Dynamic Groups tab on object detail view to it's own view as a generic <code>ObjectDynamicGroupsView</code>.</li>
|
|
11618
11658
|
</ul>
|
|
11619
|
-
<h3 id="
|
|
11659
|
+
<h3 id="fixed-in-v143">Fixed in v1.4.3<a class="headerlink" href="#fixed-in-v143" title="Permanent link">¶</a></h3>
|
|
11620
11660
|
<ul>
|
|
11621
11661
|
<li><a href="https://github.com/nautobot/nautobot/issues/138">#138</a> - Fixed lack of user-facing message when an exception occurs while discovering Jobs from a Git repository.</li>
|
|
11622
11662
|
<li><a href="https://github.com/nautobot/nautobot/issues/950">#950</a> - Fixed database concurrency issues with uWSGI pre-forking.</li>
|
|
@@ -11629,18 +11669,18 @@
|
|
|
11629
11669
|
<li><a href="https://github.com/nautobot/nautobot/issues/2382">#2382</a> - Removed extraneous cache and temporary files from the <code>dev</code> and <code>final-dev</code> Docker images to reduce image size.</li>
|
|
11630
11670
|
<li><a href="https://github.com/nautobot/nautobot/issues/2389">#2389</a> - Removed extraneous <code>inspect.getsource()</code> call from Job class.</li>
|
|
11631
11671
|
</ul>
|
|
11632
|
-
<h3 id="
|
|
11672
|
+
<h3 id="dependencies-in-v143">Dependencies in v1.4.3<a class="headerlink" href="#dependencies-in-v143" title="Permanent link">¶</a></h3>
|
|
11633
11673
|
<ul>
|
|
11634
11674
|
<li><a href="https://github.com/nautobot/nautobot/issues/1619">#1619</a> - Updated <code>drf-spectacular</code> dependency to version 0.24.</li>
|
|
11635
11675
|
</ul>
|
|
11636
|
-
<h3 id="
|
|
11676
|
+
<h3 id="documentation-in-v143">Documentation in v1.4.3<a class="headerlink" href="#documentation-in-v143" title="Permanent link">¶</a></h3>
|
|
11637
11677
|
<ul>
|
|
11638
11678
|
<li><a href="https://github.com/nautobot/nautobot/issues/2383">#2383</a> - Updated documentation link for Nautobot ChatOps plugin.</li>
|
|
11639
11679
|
<li><a href="https://github.com/nautobot/nautobot/issues/2400">#2400</a> - Improved formatting of version changes in the documentation.</li>
|
|
11640
11680
|
<li><a href="https://github.com/nautobot/nautobot/issues/2407">#2407</a> - Corrected SSO Backend reference for Azure AD Tenant.</li>
|
|
11641
11681
|
<li><a href="https://github.com/nautobot/nautobot/issues/2431">#2431</a> - Add section to the custom field documentation on ORM filtering.</li>
|
|
11642
11682
|
</ul>
|
|
11643
|
-
<h3 id="
|
|
11683
|
+
<h3 id="housekeeping-in-v143">Housekeeping in v1.4.3<a class="headerlink" href="#housekeeping-in-v143" title="Permanent link">¶</a></h3>
|
|
11644
11684
|
<ul>
|
|
11645
11685
|
<li><a href="https://github.com/nautobot/nautobot/issues/2362">#2362</a> - Added documentation and automation for Nautobot Github project to use <code>towncrier</code> for changelog fragments.</li>
|
|
11646
11686
|
<li><a href="https://github.com/nautobot/nautobot/issues/2364">#2364</a> - Allow <code>invoke</code> tasks to be run even if <code>rich</code> is not installed.</li>
|
|
@@ -11649,7 +11689,7 @@
|
|
|
11649
11689
|
<li><a href="https://github.com/nautobot/nautobot/issues/2449">#2449</a> - CI: Moved dependency build to be a job, not a step.</li>
|
|
11650
11690
|
</ul>
|
|
11651
11691
|
<h2 id="v142-2022-09-05">v1.4.2 (2022-09-05)<a class="headerlink" href="#v142-2022-09-05" title="Permanent link">¶</a></h2>
|
|
11652
|
-
<h3 id="
|
|
11692
|
+
<h3 id="added-in-v142">Added in v1.4.2<a class="headerlink" href="#added-in-v142" title="Permanent link">¶</a></h3>
|
|
11653
11693
|
<ul>
|
|
11654
11694
|
<li><a href="https://github.com/nautobot/nautobot/issues/983">#983</a> - Added functionalities to specify <code>args</code> and <code>kwargs</code> to <code>NavMenuItem</code>.</li>
|
|
11655
11695
|
<li><a href="https://github.com/nautobot/nautobot/issues/2250">#2250</a> - Added "Stats" and "Rack Groups" to Location detail view, added "Locations" to Site detail view.</li>
|
|
@@ -11657,11 +11697,11 @@
|
|
|
11657
11697
|
<li><a href="https://github.com/nautobot/nautobot/issues/2307">#2307</a> - Added <code>dynamic_groups</code> field in GraphQL on objects that can belong to dynamic groups.</li>
|
|
11658
11698
|
<li><a href="https://github.com/nautobot/nautobot/pull/2360">#2360</a> - Added Django natural key to <code>extras.Tag</code>.</li>
|
|
11659
11699
|
</ul>
|
|
11660
|
-
<h3 id="
|
|
11700
|
+
<h3 id="changed-in-v142">Changed in v1.4.2<a class="headerlink" href="#changed-in-v142" title="Permanent link">¶</a></h3>
|
|
11661
11701
|
<ul>
|
|
11662
11702
|
<li><a href="https://github.com/nautobot/nautobot/pull/2360">#2360</a> - Django natural key for Status is now <code>name</code> rather than <code>slug</code>.</li>
|
|
11663
11703
|
</ul>
|
|
11664
|
-
<h3 id="
|
|
11704
|
+
<h3 id="fixed-in-v142">Fixed in v1.4.2<a class="headerlink" href="#fixed-in-v142" title="Permanent link">¶</a></h3>
|
|
11665
11705
|
<ul>
|
|
11666
11706
|
<li><a href="https://github.com/nautobot/nautobot/issues/449">#449</a> - Improved error checking and reporting when syncing Git repositories.</li>
|
|
11667
11707
|
<li><a href="https://github.com/nautobot/nautobot/issues/1227">#1227</a> - The <code>NAUTOBOT_DOCKER_SKIP_INIT</code> environment variable can now be set to "false" (case-insensitive),</li>
|
|
@@ -11675,11 +11715,11 @@
|
|
|
11675
11715
|
<li><a href="https://github.com/nautobot/nautobot/issues/2311">#2311</a> - Fixed autopopulation of "Parent" selection when editing an existing Location.</li>
|
|
11676
11716
|
<li><a href="https://github.com/nautobot/nautobot/issues/2350">#2350</a> - Fixed potential Redis deadlock if Nautobot server restarts at an unfortunate time.</li>
|
|
11677
11717
|
</ul>
|
|
11678
|
-
<h3 id="
|
|
11718
|
+
<h3 id="dependencies-in-v142">Dependencies in v1.4.2<a class="headerlink" href="#dependencies-in-v142" title="Permanent link">¶</a></h3>
|
|
11679
11719
|
<ul>
|
|
11680
11720
|
<li><a href="https://github.com/nautobot/nautobot/pull/2296">#2296</a> - Updated <code>netutils</code> dependency from 1.1.x to 1.2.x.</li>
|
|
11681
11721
|
</ul>
|
|
11682
|
-
<h3 id="
|
|
11722
|
+
<h3 id="documentation-in-v142">Documentation in v1.4.2<a class="headerlink" href="#documentation-in-v142" title="Permanent link">¶</a></h3>
|
|
11683
11723
|
<ul>
|
|
11684
11724
|
<li><a href="https://github.com/nautobot/nautobot/pull/2268">#2268</a> - Fixed broken links in documentation.</li>
|
|
11685
11725
|
<li><a href="https://github.com/nautobot/nautobot/issues/2341">#2341</a> - Fixed omission of docs from published Python packages.</li>
|
|
@@ -11688,7 +11728,7 @@
|
|
|
11688
11728
|
<li><a href="https://github.com/nautobot/nautobot/pull/2365">#2365</a> - Update Network to Code branding name</li>
|
|
11689
11729
|
<li><a href="https://github.com/nautobot/nautobot/pull/2367">#2367</a> - Remove coming soon from projects that exists</li>
|
|
11690
11730
|
</ul>
|
|
11691
|
-
<h3 id="
|
|
11731
|
+
<h3 id="housekeeping-in-v142">Housekeeping in v1.4.2<a class="headerlink" href="#housekeeping-in-v142" title="Permanent link">¶</a></h3>
|
|
11692
11732
|
<ul>
|
|
11693
11733
|
<li><a href="https://github.com/nautobot/nautobot/issues/2011">#2011</a> - replaced all .format() strings and C format strings with fstrings.</li>
|
|
11694
11734
|
<li><a href="https://github.com/nautobot/nautobot/pull/2293">#2293</a> - Updated GitHub bug report template.</li>
|
|
@@ -11698,16 +11738,16 @@
|
|
|
11698
11738
|
<li><a href="https://github.com/nautobot/nautobot/pull/2349">#2349</a> - Docker images are now built with Poetry 1.2.0.</li>
|
|
11699
11739
|
</ul>
|
|
11700
11740
|
<h2 id="v141-2022-08-22">v1.4.1 (2022-08-22)<a class="headerlink" href="#v141-2022-08-22" title="Permanent link">¶</a></h2>
|
|
11701
|
-
<h3 id="
|
|
11741
|
+
<h3 id="added-in-v141">Added in v1.4.1<a class="headerlink" href="#added-in-v141" title="Permanent link">¶</a></h3>
|
|
11702
11742
|
<ul>
|
|
11703
11743
|
<li><a href="https://github.com/nautobot/nautobot/issues/1809">#1809</a> - Added Django natural key to <code>extras.Status</code> to simplify exporting and importing of database dumps for <code>Status</code> objects.</li>
|
|
11704
11744
|
<li><a href="https://github.com/nautobot/nautobot/pull/2202">#2202</a> - Added <code>validate_models</code> management command to validate each instance in the database.</li>
|
|
11705
11745
|
</ul>
|
|
11706
|
-
<h3 id="
|
|
11746
|
+
<h3 id="changed-in-v141">Changed in v1.4.1<a class="headerlink" href="#changed-in-v141" title="Permanent link">¶</a></h3>
|
|
11707
11747
|
<ul>
|
|
11708
11748
|
<li><a href="https://github.com/nautobot/nautobot/issues/2206">#2206</a> - Changed Run button on Job Result to always be displayed, "Re-Run" if available.</li>
|
|
11709
11749
|
</ul>
|
|
11710
|
-
<h3 id="
|
|
11750
|
+
<h3 id="fixed-in-v141">Fixed in v1.4.1<a class="headerlink" href="#fixed-in-v141" title="Permanent link">¶</a></h3>
|
|
11711
11751
|
<ul>
|
|
11712
11752
|
<li><a href="https://github.com/nautobot/nautobot/issues/2209">#2209</a> - Fixed lack of dark-mode support in GraphiQL page.</li>
|
|
11713
11753
|
<li><a href="https://github.com/nautobot/nautobot/issues/2215">#2215</a> - Fixed error seen in migration from 1.3.x if certain default Statuses had been modified.</li>
|
|
@@ -11718,29 +11758,29 @@
|
|
|
11718
11758
|
<li><a href="https://github.com/nautobot/nautobot/issues/2241">#2241</a> - Fixed <code>DynamicGroup.objects.get_for_model()</code> to support nested Dynamic Groups.</li>
|
|
11719
11759
|
<li><a href="https://github.com/nautobot/nautobot/issues/2259">#2259</a> - Fixed footer not bound to bottom of Device View.</li>
|
|
11720
11760
|
</ul>
|
|
11721
|
-
<h3 id="
|
|
11761
|
+
<h3 id="documentation-in-v141">Documentation in v1.4.1<a class="headerlink" href="#documentation-in-v141" title="Permanent link">¶</a></h3>
|
|
11722
11762
|
<ul>
|
|
11723
11763
|
<li><a href="https://github.com/nautobot/nautobot/pull/2218">#2218</a> - Fixed typos/links in release notes and Dynamic Groups docs.</li>
|
|
11724
11764
|
<li><a href="https://github.com/nautobot/nautobot/pull/2252">#2252</a> - Updated Poetry install command for Development Getting Started guide.</li>
|
|
11725
11765
|
</ul>
|
|
11726
|
-
<h3 id="
|
|
11766
|
+
<h3 id="housekeeping-in-v141">Housekeeping in v1.4.1<a class="headerlink" href="#housekeeping-in-v141" title="Permanent link">¶</a></h3>
|
|
11727
11767
|
<ul>
|
|
11728
11768
|
<li><a href="https://github.com/nautobot/nautobot/issues/2213">#2213</a> - Added a new <code>--pull</code> parameter for <code>invoke build</code> to tell Docker to pull images when building containers.</li>
|
|
11729
11769
|
<li><a href="https://github.com/nautobot/nautobot/pull/2220">#2220</a> - Narrowed scope of auto-formatting in VSCode to only apply to Python files.</li>
|
|
11730
11770
|
</ul>
|
|
11731
11771
|
<h2 id="v140-2022-08-15">v1.4.0 (2022-08-15)<a class="headerlink" href="#v140-2022-08-15" title="Permanent link">¶</a></h2>
|
|
11732
|
-
<h3 id="
|
|
11772
|
+
<h3 id="added-in-v140">Added in v1.4.0<a class="headerlink" href="#added-in-v140" title="Permanent link">¶</a></h3>
|
|
11733
11773
|
<ul>
|
|
11734
11774
|
<li><a href="https://github.com/nautobot/nautobot/issues/1812">#1812</a> - Added <code>NautobotViewSet</code> and accompanying helper methods, documentation.</li>
|
|
11735
11775
|
<li><a href="https://github.com/nautobot/nautobot/issues/2105">#2105</a> - Added support for Notes in NautobotBulkEditForm and NautobotEditForm.</li>
|
|
11736
11776
|
<li><a href="https://github.com/nautobot/nautobot/pull/2200">#2200</a> - Added Dynamic Groups support for Cluster, IP Address, Prefix, and Rack.</li>
|
|
11737
11777
|
</ul>
|
|
11738
|
-
<h3 id="
|
|
11778
|
+
<h3 id="changed-in-v140">Changed in v1.4.0<a class="headerlink" href="#changed-in-v140" title="Permanent link">¶</a></h3>
|
|
11739
11779
|
<ul>
|
|
11740
11780
|
<li><a href="https://github.com/nautobot/nautobot/issues/1812">#1812</a> - Changed Circuit app models to use <code>NautobotViewSet</code>s.</li>
|
|
11741
11781
|
<li><a href="https://github.com/nautobot/nautobot/pull/2200">#2200</a> - Group of dynamic group membership links now link to the group's membership table view.</li>
|
|
11742
11782
|
</ul>
|
|
11743
|
-
<h3 id="
|
|
11783
|
+
<h3 id="fixed-in-v140">Fixed in v1.4.0<a class="headerlink" href="#fixed-in-v140" title="Permanent link">¶</a></h3>
|
|
11744
11784
|
<ul>
|
|
11745
11785
|
<li><a href="https://github.com/nautobot/nautobot/issues/1304">#1304</a> - Fixed incorrect display of connection counts on home page.</li>
|
|
11746
11786
|
<li><a href="https://github.com/nautobot/nautobot/issues/1845">#1845</a> - Fixed not being able to schedule job with 'immediate' schedule via API.</li>
|
|
@@ -11752,33 +11792,33 @@
|
|
|
11752
11792
|
<li><a href="https://github.com/nautobot/nautobot/issues/2178">#2192</a> - Fixed job.request removed from job instance in <code>v1.4.0b1</code>.</li>
|
|
11753
11793
|
<li><a href="https://github.com/nautobot/nautobot/pull/2197">#2197</a> - Fixed some display issues in the Dynamic Groups detail view.</li>
|
|
11754
11794
|
</ul>
|
|
11755
|
-
<h3 id="
|
|
11795
|
+
<h3 id="dependencies-in-v140">Dependencies in v1.4.0<a class="headerlink" href="#dependencies-in-v140" title="Permanent link">¶</a></h3>
|
|
11756
11796
|
<ul>
|
|
11757
11797
|
<li><a href="https://github.com/nautobot/nautobot/pull/2183">#2183</a> - Update dependency django to ~3.2.15.</li>
|
|
11758
11798
|
</ul>
|
|
11759
|
-
<h3 id="
|
|
11799
|
+
<h3 id="documentation-in-v140">Documentation in v1.4.0<a class="headerlink" href="#documentation-in-v140" title="Permanent link">¶</a></h3>
|
|
11760
11800
|
<ul>
|
|
11761
11801
|
<li><a href="https://github.com/nautobot/nautobot/pull/2029">#2029</a> - Updated optional settings docs to call out environment variable only settings.</li>
|
|
11762
11802
|
<li><a href="https://github.com/nautobot/nautobot/issues/2193">#2193</a> - Updated Postgres/MySQL <code>dumpdata</code> docs to exclude <code>django_rq</code> exports.</li>
|
|
11763
11803
|
</ul>
|
|
11764
|
-
<h3 id="
|
|
11804
|
+
<h3 id="housekeeping-in-v140">Housekeeping in v1.4.0<a class="headerlink" href="#housekeeping-in-v140" title="Permanent link">¶</a></h3>
|
|
11765
11805
|
<ul>
|
|
11766
11806
|
<li><a href="https://github.com/nautobot/nautobot/pull/2173">#2173</a> - Added flake8 linting and black formatting settings to vscode workspace settings.</li>
|
|
11767
11807
|
<li><a href="https://github.com/nautobot/nautobot/pull/2176">#2176</a> - Update invoke task output to use rich formatting, print full Docker Compose commands.</li>
|
|
11768
11808
|
</ul>
|
|
11769
11809
|
<h2 id="v140rc1-2022-08-10">v1.4.0rc1 (2022-08-10)<a class="headerlink" href="#v140rc1-2022-08-10" title="Permanent link">¶</a></h2>
|
|
11770
|
-
<h3 id="
|
|
11810
|
+
<h3 id="added-in-v140rc1">Added in v1.4.0rc1<a class="headerlink" href="#added-in-v140rc1" title="Permanent link">¶</a></h3>
|
|
11771
11811
|
<ul>
|
|
11772
11812
|
<li><a href="https://github.com/nautobot/nautobot/issues/767">#767</a> - Added notes field to Primary and Organizational models.</li>
|
|
11773
11813
|
<li><a href="https://github.com/nautobot/nautobot/issues/1498">#1498</a> - Added extended lookup expression filters to custom fields.</li>
|
|
11774
11814
|
<li><a href="https://github.com/nautobot/nautobot/issues/1962">#1962</a> - Added <code>slug</code> field to Custom Field model, added 1.4 REST API version of the <code>api/extras/custom-fields/</code> endpoints.</li>
|
|
11775
11815
|
<li><a href="https://github.com/nautobot/nautobot/issues/2106">#2106</a> - Added support for listing/creating Notes via REST API.</li>
|
|
11776
11816
|
</ul>
|
|
11777
|
-
<h3 id="
|
|
11817
|
+
<h3 id="changed-in-v140rc1">Changed in v1.4.0rc1<a class="headerlink" href="#changed-in-v140rc1" title="Permanent link">¶</a></h3>
|
|
11778
11818
|
<ul>
|
|
11779
11819
|
<li><a href="https://github.com/nautobot/nautobot/pull/2168">#2168</a> - Added model toggle to skip adding missing Dynamic Group filter fields for use in easing integration of new models into Dynamic Groups.</li>
|
|
11780
11820
|
</ul>
|
|
11781
|
-
<h3 id="
|
|
11821
|
+
<h3 id="fixed-in-v140rc1">Fixed in v1.4.0rc1<a class="headerlink" href="#fixed-in-v140rc1" title="Permanent link">¶</a></h3>
|
|
11782
11822
|
<ul>
|
|
11783
11823
|
<li><a href="https://github.com/nautobot/nautobot/issues/2090">#2090</a> - Fixed an issue where a REST API PATCH of a Tag could inadvertently reset its associated content-types.</li>
|
|
11784
11824
|
<li><a href="https://github.com/nautobot/nautobot/pull/2132">#2132</a> - Updated job hooks to use slugs in urls instead of pk.</li>
|
|
@@ -11787,17 +11827,17 @@
|
|
|
11787
11827
|
<li><a href="https://github.com/nautobot/nautobot/issues/2137">#2137</a> - Fixed incorrect parameter name in <code>NaturalKeyOrPKMultipleChoiceFilter</code> documentation.</li>
|
|
11788
11828
|
<li><a href="https://github.com/nautobot/nautobot/pull/2142">#2142</a> - Fixed incorrect URL field in REST API nested relationship representation.</li>
|
|
11789
11829
|
</ul>
|
|
11790
|
-
<h3 id="
|
|
11830
|
+
<h3 id="documentation-in-v140rc1">Documentation in v1.4.0rc1<a class="headerlink" href="#documentation-in-v140rc1" title="Permanent link">¶</a></h3>
|
|
11791
11831
|
<ul>
|
|
11792
11832
|
<li><a href="https://github.com/nautobot/nautobot/pull/2156">#2156</a> - Update network automation apps listed on overview of docs.</li>
|
|
11793
11833
|
</ul>
|
|
11794
|
-
<h3 id="
|
|
11834
|
+
<h3 id="housekeeping-in-v140rc1">Housekeeping in v1.4.0rc1<a class="headerlink" href="#housekeeping-in-v140rc1" title="Permanent link">¶</a></h3>
|
|
11795
11835
|
<ul>
|
|
11796
11836
|
<li><a href="https://github.com/nautobot/nautobot/issues/2150">#2150</a> - Fixed unit tests performance degradation.</li>
|
|
11797
11837
|
<li><a href="https://github.com/nautobot/nautobot/pull/2165">#2165</a> - Fix up relationship-association API test issue.</li>
|
|
11798
11838
|
</ul>
|
|
11799
11839
|
<h2 id="v140b1-2022-07-30">v1.4.0b1 (2022-07-30)<a class="headerlink" href="#v140b1-2022-07-30" title="Permanent link">¶</a></h2>
|
|
11800
|
-
<h3 id="
|
|
11840
|
+
<h3 id="added-in-v140b1">Added in v1.4.0b1<a class="headerlink" href="#added-in-v140b1" title="Permanent link">¶</a></h3>
|
|
11801
11841
|
<ul>
|
|
11802
11842
|
<li><a href="https://github.com/nautobot/nautobot/issues/1463">#1463</a> - Added REST API support for opt-in <code>relationships</code> data on model endpoints; added <code>NautobotModelSerializer</code> base class.</li>
|
|
11803
11843
|
<li><a href="https://github.com/nautobot/nautobot/issues/1614">#1614</a> - Added support for nesting of Dynamic Groups, allowing inclusion/exclusion rules of sub-group members.</li>
|
|
@@ -11812,22 +11852,22 @@
|
|
|
11812
11852
|
<li><a href="https://github.com/nautobot/nautobot/issues/2051">#2051</a> - Add changelog url for Relationships.</li>
|
|
11813
11853
|
<li><a href="https://github.com/nautobot/nautobot/pull/2061">#2061</a> - Add draggable child groups to Dynamic Groups edit view in UI, recompute and hide weights.</li>
|
|
11814
11854
|
</ul>
|
|
11815
|
-
<h3 id="
|
|
11855
|
+
<h3 id="changed-in-v140b1">Changed in v1.4.0b1<a class="headerlink" href="#changed-in-v140b1" title="Permanent link">¶</a></h3>
|
|
11816
11856
|
<ul>
|
|
11817
11857
|
<li><a href="https://github.com/nautobot/nautobot/pull/2049">#2049</a> - Moved <code>get_changelog_url</code> to a method on objects that support changelogs, updated template context.</li>
|
|
11818
11858
|
</ul>
|
|
11819
|
-
<h3 id="
|
|
11859
|
+
<h3 id="fixed-in-v140b1">Fixed in v1.4.0b1<a class="headerlink" href="#fixed-in-v140b1" title="Permanent link">¶</a></h3>
|
|
11820
11860
|
<ul>
|
|
11821
11861
|
<li><a href="https://github.com/nautobot/nautobot/issues/1710">#1710</a> - Fixed invalid CSS when clicking "Add another" row buttons for formsets on Secrets Groups, Dynamic Groups edit view in the UI.</li>
|
|
11822
11862
|
<li><a href="https://github.com/nautobot/nautobot/issues/2069">#2069</a> - Addressed numerous UX improvements for Dynamic Groups of Dynamic Groups feature to ease usability of this feature.</li>
|
|
11823
11863
|
<li><a href="https://github.com/nautobot/nautobot/issues/2109">#2109</a> - Fixed Relationship Filters are not Applied with "And" Operator.</li>
|
|
11824
11864
|
<li><a href="https://github.com/nautobot/nautobot/issues/2111">#2111</a> - Fixed Invalid filter error thrown for <code>__source</code> with message: "" is not a valid UUID.</li>
|
|
11825
11865
|
</ul>
|
|
11826
|
-
<h3 id="
|
|
11866
|
+
<h3 id="dependencies-in-v140b1">Dependencies in v1.4.0b1<a class="headerlink" href="#dependencies-in-v140b1" title="Permanent link">¶</a></h3>
|
|
11827
11867
|
<ul>
|
|
11828
11868
|
<li><a href="https://github.com/nautobot/nautobot/pull/2116">#2116</a> - Updated package dependencies: Pillow <code>~9.1.1</code> -> <code>~9.2.0</code>, black <code>~22.3.0</code> -> <code>~22.6.0</code>, coverage <code>6.4.1</code> -> <code>6.4.2</code>, django-cacheops <code>6.0</code> -> <code>6.1</code>, django-cryptography <code>1.0</code> -> <code>1.1</code>, django-debug-toolbar <code>~3.4.0</code> -> <code>~3.5.0</code>, django-extensions <code>~3.1.5</code> -> <code>~3.2.0</code>, drf-yasg <code>~1.20.0</code> -> <code>^1.20.0</code>, importlib-metadata <code>~4.4</code> -> <code>^4.4.0</code>, jsonschema <code>~4.4.0</code> -> <code>~4.8.0</code>, mkdocs <code>1.3.0</code> -> <code>1.3.1</code>, mkdocs <code>==1.3.0</code> -> <code>==1.3.1</code>, mkdocs-include-markdown-plugin <code>~3.2.3</code> -> <code>~3.6.0</code>, mkdocs-include-markdown-plugin <code>==3.2.3</code> -> <code>==3.6.1</code>, social-auth-core <code>~4.2.0</code> -> <code>~4.3.0</code>, svgwrite <code>1.4.2</code> -> <code>1.4.3</code></li>
|
|
11829
11869
|
</ul>
|
|
11830
|
-
<h3 id="
|
|
11870
|
+
<h3 id="documentation-in-v140b1">Documentation in v1.4.0b1<a class="headerlink" href="#documentation-in-v140b1" title="Permanent link">¶</a></h3>
|
|
11831
11871
|
<ul>
|
|
11832
11872
|
<li><a href="https://github.com/nautobot/nautobot/pull/2072">#2072</a> - Expand on <code>query_params</code> for <code>ObjectVar</code> in Jobs documentation.</li>
|
|
11833
11873
|
</ul>
|
|
@@ -11839,7 +11879,7 @@
|
|
|
11839
11879
|
<p>Perform the Nautobot upgrade as usual and proceed with post-installation migration.</p>
|
|
11840
11880
|
<p>No data loss is expected as the reordered migration only modified indexing on existing fields.</p>
|
|
11841
11881
|
</div>
|
|
11842
|
-
<h3 id="
|
|
11882
|
+
<h3 id="added-in-v140a2">Added in v1.4.0a2<a class="headerlink" href="#added-in-v140a2" title="Permanent link">¶</a></h3>
|
|
11843
11883
|
<ul>
|
|
11844
11884
|
<li><a href="https://github.com/nautobot/nautobot/issues/1000">#1000</a> - Object detail views can now have extra UI tabs which are defined by a plugin.</li>
|
|
11845
11885
|
<li><a href="https://github.com/nautobot/nautobot/issues/1052">#1052</a> - Initial prototype implementation of Location data model.</li>
|
|
@@ -11850,20 +11890,20 @@
|
|
|
11850
11890
|
<li><a href="https://github.com/nautobot/nautobot/issues/1729">#1729</a> - Add <code>cable_terminations</code> to the <code>model_features</code> registry.</li>
|
|
11851
11891
|
<li><a href="https://github.com/nautobot/nautobot/issues/1893">#1893</a> - Added an object detail view for Relationships.</li>
|
|
11852
11892
|
</ul>
|
|
11853
|
-
<h3 id="
|
|
11893
|
+
<h3 id="changed-in-v140a2">Changed in v1.4.0a2<a class="headerlink" href="#changed-in-v140a2" title="Permanent link">¶</a></h3>
|
|
11854
11894
|
<ul>
|
|
11855
11895
|
<li><a href="https://github.com/nautobot/nautobot/issues/1945">#1945</a> - Change the <code>settings_and_registry</code> default context processor to purely <code>settings</code>, moving registry dictionary to be accessible via <code>registry</code> template tag.</li>
|
|
11856
11896
|
</ul>
|
|
11857
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
11897
|
+
<h3 id="removed-in-v140a2">Removed in v1.4.0a2<a class="headerlink" href="#removed-in-v140a2" title="Permanent link">¶</a></h3>
|
|
11858
11898
|
<ul>
|
|
11859
11899
|
<li><a href="https://github.com/nautobot/nautobot/issues/1462">#1462</a> - Removed job source tab from Job and Job Result view.</li>
|
|
11860
11900
|
<li><a href="https://github.com/nautobot/nautobot/issues/2002">#2002</a> - Removed rqworker container from default Docker development environment.</li>
|
|
11861
11901
|
</ul>
|
|
11862
|
-
<h3 id="
|
|
11902
|
+
<h3 id="fixed-in-v140a2">Fixed in v1.4.0a2<a class="headerlink" href="#fixed-in-v140a2" title="Permanent link">¶</a></h3>
|
|
11863
11903
|
<ul>
|
|
11864
11904
|
<li><a href="https://github.com/nautobot/nautobot/issues/1898">#1898</a> - Browsable API is now properly styled as the rest of the app.</li>
|
|
11865
11905
|
</ul>
|
|
11866
|
-
<h3 id="
|
|
11906
|
+
<h3 id="dependencies-in-v140a2">Dependencies in v1.4.0a2<a class="headerlink" href="#dependencies-in-v140a2" title="Permanent link">¶</a></h3>
|
|
11867
11907
|
<ul>
|
|
11868
11908
|
<li><a href="https://github.com/nautobot/nautobot/pull/1908">#1908</a> - Update dependency Markdown to ~3.3.7</li>
|
|
11869
11909
|
<li><a href="https://github.com/nautobot/nautobot/pull/1909">#1909</a> - Update dependency MarkupSafe to ~2.1.1</li>
|
|
@@ -11879,12 +11919,12 @@
|
|
|
11879
11919
|
<li><a href="https://github.com/nautobot/nautobot/pull/1928">#1928</a> - Update dependency napalm to ~3.4.1</li>
|
|
11880
11920
|
<li><a href="https://github.com/nautobot/nautobot/pull/1929">#1929</a> - Update dependency selenium to ~4.2.0</li>
|
|
11881
11921
|
</ul>
|
|
11882
|
-
<h3 id="
|
|
11922
|
+
<h3 id="housekeeping-in-v140a2">Housekeeping in v1.4.0a2<a class="headerlink" href="#housekeeping-in-v140a2" title="Permanent link">¶</a></h3>
|
|
11883
11923
|
<ul>
|
|
11884
11924
|
<li><a href="https://github.com/nautobot/nautobot/issues/1949">#1949</a> - Added TestCaseMixin for Helper Functions across all test case bases.</li>
|
|
11885
11925
|
</ul>
|
|
11886
11926
|
<h2 id="v140a1-2022-06-13">v1.4.0a1 (2022-06-13)<a class="headerlink" href="#v140a1-2022-06-13" title="Permanent link">¶</a></h2>
|
|
11887
|
-
<h3 id="
|
|
11927
|
+
<h3 id="added-in-v140a1">Added in v1.4.0a1<a class="headerlink" href="#added-in-v140a1" title="Permanent link">¶</a></h3>
|
|
11888
11928
|
<ul>
|
|
11889
11929
|
<li><a href="https://github.com/nautobot/nautobot/issues/729">#729</a> - Added UI dark mode.</li>
|
|
11890
11930
|
<li><a href="https://github.com/nautobot/nautobot/issues/984">#984</a> - Added status field to Interface, VMInterface models.</li>
|
|
@@ -11892,12 +11932,12 @@
|
|
|
11892
11932
|
<li><a href="https://github.com/nautobot/nautobot/issues/1455">#1455</a> - Added <code>parent_interface</code> and <code>bridge</code> fields to Interface and VMInterface models.</li>
|
|
11893
11933
|
<li><a href="https://github.com/nautobot/nautobot/pull/1833">#1833</a> - Added <code>hyperlinked_object</code> template filter to consistently reference objects in templates.</li>
|
|
11894
11934
|
</ul>
|
|
11895
|
-
<h3 id="
|
|
11935
|
+
<h3 id="changed-in-v140a1">Changed in v1.4.0a1<a class="headerlink" href="#changed-in-v140a1" title="Permanent link">¶</a></h3>
|
|
11896
11936
|
<ul>
|
|
11897
11937
|
<li><a href="https://github.com/nautobot/nautobot/issues/1736">#1736</a> - <code>STRICT_FILTERING</code> setting is added and enabled by default.</li>
|
|
11898
11938
|
<li><a href="https://github.com/nautobot/nautobot/pull/1793">#1793</a> - Added index notes to fields from analysis, relaxed ConfigContextSchema constraint (unique on <code>name</code>, <code>owner_content_type</code>, <code>owner_object_id</code> instead of just <code>name</code>).</li>
|
|
11899
11939
|
</ul>
|
|
11900
|
-
<h3 id="
|
|
11940
|
+
<h3 id="fixed-in-v140a1">Fixed in v1.4.0a1<a class="headerlink" href="#fixed-in-v140a1" title="Permanent link">¶</a></h3>
|
|
11901
11941
|
<ul>
|
|
11902
11942
|
<li><a href="https://github.com/nautobot/nautobot/issues/1815">#1815</a> - Fix theme link style in footer.</li>
|
|
11903
11943
|
<li><a href="https://github.com/nautobot/nautobot/issues/1831">#1831</a> - Fixed missing <code>parent_interface</code> and <code>bridge</code> from 1.4 serializer of Interfaces.</li>
|
|
@@ -12050,7 +12090,7 @@
|
|
|
12050
12090
|
<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>
|
|
12051
12091
|
|
|
12052
12092
|
|
|
12053
|
-
<script src="../assets/javascripts/bundle.
|
|
12093
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
12054
12094
|
|
|
12055
12095
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
12056
12096
|
|