nautobot 2.0.0a3__py3-none-any.whl → 2.0.0b1__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.
- nautobot/apps/api.py +6 -8
- nautobot/apps/forms.py +0 -2
- nautobot/apps/ui.py +0 -8
- nautobot/circuits/api/serializers.py +9 -117
- nautobot/circuits/api/urls.py +1 -1
- nautobot/circuits/api/views.py +0 -1
- nautobot/circuits/forms.py +0 -65
- nautobot/circuits/migrations/0014_related_name_changes.py +1 -1
- nautobot/circuits/migrations/0016_tagsfield.py +34 -0
- nautobot/circuits/migrations/0017_fixup_null_statuses.py +22 -0
- nautobot/circuits/migrations/0018_status_nonnullable.py +22 -0
- nautobot/circuits/models.py +3 -87
- nautobot/circuits/navigation.py +14 -69
- nautobot/circuits/signals.py +0 -2
- nautobot/circuits/tables.py +39 -1
- nautobot/circuits/tests/integration/test_relationships.py +9 -9
- nautobot/circuits/tests/test_api.py +4 -8
- nautobot/circuits/tests/test_filters.py +10 -4
- nautobot/circuits/tests/test_models.py +5 -1
- nautobot/circuits/tests/test_views.py +27 -5
- nautobot/circuits/views.py +18 -10
- nautobot/core/api/__init__.py +8 -2
- nautobot/core/api/fields.py +15 -6
- nautobot/core/api/filter_backends.py +3 -2
- nautobot/core/api/metadata.py +237 -30
- nautobot/core/api/mixins.py +94 -0
- nautobot/core/api/pagination.py +4 -0
- nautobot/core/api/parsers.py +154 -0
- nautobot/core/api/renderers.py +153 -2
- nautobot/core/api/schema.py +46 -2
- nautobot/core/api/serializers.py +377 -35
- nautobot/core/api/urls.py +11 -3
- nautobot/core/api/utils.py +174 -2
- nautobot/core/api/versioning.py +32 -10
- nautobot/core/api/views.py +266 -72
- nautobot/core/apps/__init__.py +138 -220
- nautobot/core/celery/__init__.py +112 -41
- nautobot/core/celery/backends.py +19 -12
- nautobot/core/celery/control.py +46 -0
- nautobot/core/celery/encoders.py +53 -0
- nautobot/core/celery/log.py +38 -0
- nautobot/core/celery/schedulers.py +23 -4
- nautobot/core/celery/task.py +1 -16
- nautobot/core/checks.py +0 -27
- nautobot/core/choices.py +0 -113
- nautobot/core/{cli.py → cli/__init__.py} +1 -1
- nautobot/core/cli/__main__.py +3 -0
- nautobot/core/constants.py +0 -24
- nautobot/core/context_processors.py +12 -0
- nautobot/core/filters.py +2 -2
- nautobot/core/forms/__init__.py +0 -4
- nautobot/core/forms/fields.py +38 -65
- nautobot/core/forms/forms.py +4 -1
- nautobot/core/forms/utils.py +0 -52
- nautobot/core/graphql/schema.py +4 -27
- nautobot/core/jobs/__init__.py +75 -0
- nautobot/core/management/commands/build_ui.py +255 -0
- nautobot/core/management/commands/generate_test_data.py +3 -2
- nautobot/core/management/commands/post_upgrade.py +24 -24
- nautobot/core/models/__init__.py +26 -1
- nautobot/core/models/fields.py +24 -5
- nautobot/core/models/generics.py +2 -42
- nautobot/core/models/managers.py +5 -0
- nautobot/core/models/name_color_content_types.py +0 -14
- nautobot/core/models/tree_queries.py +14 -4
- nautobot/core/models/utils.py +5 -6
- nautobot/core/models/validators.py +17 -8
- nautobot/core/releases.py +8 -10
- nautobot/core/settings.py +80 -42
- nautobot/core/tables.py +5 -5
- nautobot/core/tasks.py +4 -7
- nautobot/core/templates/base.html +1 -49
- nautobot/core/templates/base_django.html +49 -0
- nautobot/core/templates/base_react.html +55 -0
- nautobot/core/templates/buttons/export.html +6 -4
- nautobot/core/templates/generic/object_bulk_create.html +10 -21
- nautobot/core/templates/generic/object_list.html +3 -1
- nautobot/core/templates/generic/object_retrieve_plugin_full_width.html +3 -0
- nautobot/core/templates/inc/footer.html +1 -0
- nautobot/core/templates/inc/javascript.html +0 -14
- nautobot/core/templates/inc/nav_menu.html +28 -33
- nautobot/core/templates/inc/object_details_advanced_panel.html +13 -0
- nautobot/core/templates/inc/relationships_table_rows.html +2 -2
- nautobot/core/templates/nautobot_config.py.j2 +8 -20
- nautobot/core/templates/plugin_template/__init__.py-tpl +1 -2
- nautobot/core/templates/rest_framework/api.html +8 -0
- nautobot/core/templatetags/buttons.py +32 -28
- nautobot/core/testing/__init__.py +47 -44
- nautobot/core/testing/api.py +362 -47
- nautobot/core/testing/filters.py +1 -1
- nautobot/core/testing/migrations.py +2 -0
- nautobot/core/testing/mixins.py +22 -9
- nautobot/core/testing/schema.py +2 -1
- nautobot/core/testing/views.py +21 -46
- nautobot/core/tests/integration/test_filters.py +17 -8
- nautobot/core/tests/integration/test_navbar.py +11 -34
- nautobot/core/tests/integration/test_plugin_navbar.py +9 -103
- nautobot/core/tests/nautobot_config.py +2 -3
- nautobot/core/tests/test_api.py +290 -21
- nautobot/core/tests/test_checks.py +0 -7
- nautobot/core/tests/test_filters.py +107 -59
- nautobot/core/tests/test_forms.py +26 -92
- nautobot/core/tests/test_graphql.py +110 -77
- nautobot/core/tests/test_logging.py +4 -0
- nautobot/core/tests/test_managers.py +3 -1
- nautobot/core/tests/test_models.py +2 -0
- nautobot/core/tests/test_paginator.py +3 -1
- nautobot/core/tests/test_releases.py +12 -12
- nautobot/core/tests/test_templatetags_helpers.py +4 -4
- nautobot/core/tests/test_utils.py +32 -68
- nautobot/core/tests/test_views.py +12 -15
- nautobot/core/utils/data.py +17 -0
- nautobot/core/utils/deprecation.py +9 -6
- nautobot/core/utils/filtering.py +8 -3
- nautobot/core/utils/git.py +12 -4
- nautobot/core/utils/lookup.py +3 -1
- nautobot/core/utils/requests.py +1 -104
- nautobot/core/views/__init__.py +1 -0
- nautobot/core/views/generic.py +75 -110
- nautobot/core/views/mixins.py +52 -61
- nautobot/core/views/renderers.py +6 -7
- nautobot/core/views/utils.py +80 -0
- nautobot/dcim/api/serializers.py +160 -667
- nautobot/dcim/api/urls.py +1 -1
- nautobot/dcim/api/views.py +7 -44
- nautobot/dcim/choices.py +2 -0
- nautobot/dcim/filters/__init__.py +21 -0
- nautobot/dcim/form_mixins.py +1 -27
- nautobot/dcim/forms.py +19 -765
- nautobot/dcim/migrations/0024_alter_device_and_rack_role_add_new_role.py +2 -1
- nautobot/dcim/migrations/0025_device_and_rack_roles_data_migrations.py +19 -13
- nautobot/dcim/migrations/0027_remove_device_role_and_rack_role.py +1 -1
- nautobot/dcim/migrations/0028_rename_foreignkey_fields.py +1 -1
- nautobot/dcim/migrations/0030_migrate_region_and_site_data_to_locations.py +2 -2
- nautobot/dcim/migrations/0035_related_name_changes.py +1 -1
- nautobot/dcim/migrations/0036_remove_region_and_site.py +1 -1
- nautobot/dcim/migrations/0040_tagsfield.py +109 -0
- nautobot/dcim/migrations/{0040_ipam__namespaces.py → 0041_ipam__namespaces.py} +1 -1
- nautobot/dcim/migrations/0042_fixup_null_statuses.py +51 -0
- nautobot/dcim/migrations/0043_status_nonnullable.py +72 -0
- nautobot/dcim/models/cables.py +3 -33
- nautobot/dcim/models/device_component_templates.py +6 -0
- nautobot/dcim/models/device_components.py +12 -198
- nautobot/dcim/models/devices.py +30 -143
- nautobot/dcim/models/locations.py +3 -64
- nautobot/dcim/models/power.py +3 -50
- nautobot/dcim/models/racks.py +7 -84
- nautobot/dcim/navigation.py +141 -467
- nautobot/dcim/signals.py +0 -2
- nautobot/dcim/tables/locations.py +2 -2
- nautobot/dcim/tables/power.py +1 -2
- nautobot/dcim/templates/dcim/console_port_connection_list.html +7 -0
- nautobot/dcim/templates/dcim/devicetype.html +2 -2
- nautobot/dcim/templates/dcim/interface_connection_list.html +7 -0
- nautobot/dcim/templates/dcim/location.html +16 -1
- nautobot/dcim/templates/dcim/locationtype.html +15 -0
- nautobot/dcim/templates/dcim/power_port_connection_list.html +7 -0
- nautobot/dcim/templates/dcim/rackgroup.html +0 -12
- nautobot/dcim/tests/test_api.py +166 -81
- nautobot/dcim/tests/test_cablepaths.py +41 -35
- nautobot/dcim/tests/test_filters.py +67 -23
- nautobot/dcim/tests/test_forms.py +5 -205
- nautobot/dcim/tests/test_graphql.py +7 -2
- nautobot/dcim/tests/test_migrations.py +6 -11
- nautobot/dcim/tests/test_models.py +182 -110
- nautobot/dcim/tests/test_natural_ordering.py +11 -8
- nautobot/dcim/tests/test_signals.py +6 -3
- nautobot/dcim/tests/test_views.py +197 -175
- nautobot/dcim/urls.py +11 -16
- nautobot/dcim/views.py +7 -134
- nautobot/docs/additional-features/caching.md +6 -87
- nautobot/docs/additional-features/job-scheduling-and-approvals.md +3 -0
- nautobot/docs/additional-features/jobs.md +177 -195
- nautobot/docs/administration/nautobot-server.md +6 -21
- nautobot/docs/administration/replicating-nautobot.md +0 -10
- nautobot/docs/configuration/optional-settings.md +32 -41
- nautobot/docs/configuration/required-settings.md +11 -52
- nautobot/docs/development/application-registry.md +2 -13
- nautobot/docs/development/extending-models.md +15 -17
- nautobot/docs/development/generic-views.md +0 -2
- nautobot/docs/development/getting-started.md +55 -5
- nautobot/docs/development/navigation-menu.md +22 -93
- nautobot/docs/development/react-ui.md +105 -0
- nautobot/docs/development/role-internals.md +1 -3
- nautobot/docs/development/style-guide.md +6 -4
- nautobot/docs/index.md +3 -2
- nautobot/docs/installation/migrating-from-netbox.md +11 -42
- nautobot/docs/installation/nautobot.md +1 -1
- nautobot/docs/installation/tables/v2-api-behavior-changes.yaml +70 -0
- nautobot/docs/installation/tables/v2-api-removed-fields.yaml +142 -0
- nautobot/docs/installation/tables/v2-api-renamed-fields.yaml +124 -0
- nautobot/docs/installation/tables/v2-code-location-changes.yaml +241 -0
- nautobot/docs/installation/tables/v2-code-removals.yaml +67 -0
- nautobot/docs/installation/tables/v2-database-behavior-changes.yaml +37 -0
- nautobot/docs/installation/tables/v2-database-removed-fields.yaml +166 -0
- nautobot/docs/installation/tables/v2-database-renamed-fields.yaml +340 -0
- nautobot/docs/installation/tables/v2-filters-corrected-fields.yaml +28 -0
- nautobot/docs/installation/tables/v2-filters-enhanced-fields.yaml +241 -0
- nautobot/docs/installation/tables/v2-filters-removed-fields.yaml +553 -0
- nautobot/docs/installation/tables/v2-filters-renamed-fields.yaml +223 -0
- nautobot/docs/installation/tables/v2-logging-renamed-loggers.yaml +23 -0
- nautobot/docs/installation/upgrading-from-nautobot-v1.md +170 -747
- nautobot/docs/models/dcim/device.md +3 -0
- nautobot/docs/models/dcim/deviceredundancygroup.md +3 -3
- nautobot/docs/models/extras/computedfield.md +4 -4
- nautobot/docs/models/extras/gitrepository.md +3 -0
- nautobot/docs/models/extras/job.md +1 -0
- nautobot/docs/models/extras/jobbutton.md +18 -13
- nautobot/docs/models/extras/jobhook.md +7 -4
- nautobot/docs/models/extras/jobresult.md +6 -2
- nautobot/docs/models/extras/relationship.md +2 -2
- nautobot/docs/models/extras/status.md +6 -19
- nautobot/docs/models/ipam/ipaddress.md +3 -0
- nautobot/docs/models/virtualization/virtualmachine.md +3 -0
- nautobot/docs/plugins/development.md +83 -21
- nautobot/docs/release-notes/version-1.5.md +53 -0
- nautobot/docs/release-notes/version-2.0.md +180 -0
- nautobot/docs/requirements.txt +1 -0
- nautobot/docs/rest-api/overview.md +384 -215
- nautobot/docs/rest-api/ui-related-endpoints.md +9 -0
- nautobot/extras/admin.py +3 -5
- nautobot/extras/api/customfields.py +15 -39
- nautobot/extras/api/fields.py +0 -11
- nautobot/extras/api/mixins.py +45 -0
- nautobot/extras/api/relationships.py +63 -158
- nautobot/extras/api/serializers.py +165 -700
- nautobot/extras/api/urls.py +1 -1
- nautobot/extras/api/views.py +294 -280
- nautobot/extras/apps.py +4 -7
- nautobot/extras/choices.py +11 -9
- nautobot/extras/constants.py +9 -3
- nautobot/extras/datasources/__init__.py +2 -0
- nautobot/extras/datasources/git.py +135 -186
- nautobot/extras/datasources/registry.py +25 -35
- nautobot/extras/filters/__init__.py +20 -19
- nautobot/extras/filters/mixins.py +4 -4
- nautobot/extras/forms/forms.py +63 -127
- nautobot/extras/forms/mixins.py +23 -51
- nautobot/extras/health_checks.py +0 -33
- nautobot/extras/jobs.py +387 -565
- nautobot/extras/management/commands/runjob.py +24 -62
- nautobot/extras/managers.py +30 -7
- nautobot/extras/migrations/0058_jobresult_add_time_status_idxs.py +38 -0
- nautobot/extras/migrations/{0058_joblogentry_scheduledjob_webhook_data_migration.py → 0059_joblogentry_scheduledjob_webhook_data_migration.py} +1 -1
- nautobot/extras/migrations/{0059_alter_joblogentry_scheduledjob_webhook_fields.py → 0060_alter_joblogentry_scheduledjob_webhook_fields.py} +1 -1
- nautobot/extras/migrations/{0060_role_and_alter_status.py → 0061_role_and_alter_status.py} +1 -7
- nautobot/extras/migrations/{0061_collect_roles_from_related_apps_roles.py → 0062_collect_roles_from_related_apps_roles.py} +33 -32
- nautobot/extras/migrations/{0062_alter_role_options.py → 0063_alter_role_options.py} +1 -1
- nautobot/extras/migrations/{0063_alter_configcontext_and_add_new_role.py → 0064_alter_configcontext_and_add_new_role.py} +1 -1
- nautobot/extras/migrations/0065_configcontext_data_migrations.py +44 -0
- nautobot/extras/migrations/{0065_rename_configcontext_role.py → 0066_rename_configcontext_role.py} +1 -1
- nautobot/extras/migrations/{0066_jobresult__add_celery_fields.py → 0067_jobresult__add_celery_fields.py} +36 -2
- nautobot/extras/migrations/{0067_created_datetime.py → 0068_created_datetime.py} +1 -1
- nautobot/extras/migrations/{0068_remove_site_and_region_attributes_from_config_context.py → 0069_remove_site_and_region_attributes_from_config_context.py} +1 -1
- nautobot/extras/migrations/{0069_replace_related_names.py → 0070_replace_related_names.py} +1 -1
- nautobot/extras/migrations/{0070_rename_model_fields.py → 0071_rename_model_fields.py} +1 -1
- nautobot/extras/migrations/0072_job__unique_name_data_migration.py +86 -0
- nautobot/extras/migrations/{0072_job__unique_name.py → 0073_job__unique_name.py} +13 -9
- nautobot/extras/migrations/{0073_remove_gitrepository_fields.py → 0074_remove_gitrepository_fields.py} +1 -1
- nautobot/extras/migrations/{0074_rename_slug_to_key_for_custom_field.py → 0075_rename_slug_to_key_for_custom_field.py} +1 -1
- nautobot/extras/migrations/{0075_migrate_custom_field_data.py → 0076_migrate_custom_field_data.py} +1 -1
- nautobot/extras/migrations/{0076_remove_name_field_and_make_label_field_non_nullable.py → 0077_remove_name_field_and_make_label_field_non_nullable.py} +1 -1
- nautobot/extras/migrations/{0077_remove_slug.py → 0078_remove_slug.py} +1 -5
- nautobot/extras/migrations/0079_tagsfield.py +28 -0
- nautobot/extras/migrations/0080_rename_relationship_slug_to_key.py +17 -0
- nautobot/extras/migrations/0081_rename_relationship_name_to_label.py +29 -0
- nautobot/extras/migrations/0082_ensure_relationship_keys_are_unique.py +43 -0
- nautobot/extras/migrations/0083_rename_computed_field_slug_to_key.py +21 -0
- nautobot/extras/migrations/0084_taggeditem_cleanup.py +43 -0
- nautobot/extras/migrations/0085_taggeditem_uniqueness.py +22 -0
- nautobot/extras/migrations/0086_job__celery_task_fields__dryrun_support.py +81 -0
- nautobot/extras/migrations/0087_job__commit_default_data_migration.py +26 -0
- nautobot/extras/migrations/0088_joblogentry__log_level_default.py +17 -0
- nautobot/extras/migrations/0089_joblogentry__log_level_data_migration.py +34 -0
- nautobot/extras/migrations/0090_scheduledjob__data_migration.py +57 -0
- nautobot/extras/models/__init__.py +2 -3
- nautobot/extras/models/change_logging.py +0 -36
- nautobot/extras/models/customfields.py +39 -33
- nautobot/extras/models/datasources.py +48 -50
- nautobot/extras/models/groups.py +5 -6
- nautobot/extras/models/jobs.py +189 -321
- nautobot/extras/models/mixins.py +0 -71
- nautobot/extras/models/models.py +0 -19
- nautobot/extras/models/relationships.py +19 -13
- nautobot/extras/models/roles.py +0 -34
- nautobot/extras/models/secrets.py +2 -26
- nautobot/extras/models/statuses.py +6 -5
- nautobot/extras/models/tags.py +2 -17
- nautobot/extras/navigation.py +89 -307
- nautobot/extras/plugins/__init__.py +3 -120
- nautobot/extras/plugins/utils.py +0 -3
- nautobot/extras/plugins/validators.py +5 -4
- nautobot/extras/plugins/views.py +16 -3
- nautobot/extras/querysets.py +1 -7
- nautobot/extras/registry.py +3 -0
- nautobot/extras/signals.py +26 -60
- nautobot/extras/tables.py +34 -40
- nautobot/extras/tasks.py +0 -12
- nautobot/extras/templates/extras/configcontext.html +1 -1
- nautobot/extras/templates/extras/configcontextschema.html +16 -1
- nautobot/extras/templates/extras/customfield.html +0 -13
- nautobot/extras/templates/extras/gitrepository.html +3 -3
- nautobot/extras/templates/extras/inc/jobresult.html +10 -0
- nautobot/extras/templates/extras/inc/panel_jobhistory.html +1 -1
- nautobot/extras/templates/extras/job.html +35 -25
- nautobot/extras/templates/extras/job_approval_request.html +15 -30
- nautobot/extras/templates/extras/job_detail.html +13 -31
- nautobot/extras/templates/extras/job_edit.html +15 -17
- nautobot/extras/templates/extras/jobresult.html +24 -6
- nautobot/extras/templates/extras/scheduledjob.html +2 -2
- nautobot/extras/templates/extras/secret.html +28 -0
- nautobot/extras/templatetags/job_buttons.py +1 -0
- nautobot/extras/{tests/example_jobs → test_jobs}/api_test_job.py +13 -6
- nautobot/extras/test_jobs/atomic_transaction.py +53 -0
- nautobot/extras/test_jobs/dry_run.py +29 -0
- nautobot/extras/{tests/example_jobs/test_duplicate_name.py → test_jobs/duplicate_name.py} +4 -0
- nautobot/extras/test_jobs/duplicate_name2.py +9 -0
- nautobot/extras/test_jobs/fail.py +23 -0
- nautobot/extras/{tests/example_jobs/test_field_default.py → test_jobs/field_default.py} +4 -0
- nautobot/extras/{tests/example_jobs/test_field_order.py → test_jobs/field_order.py} +4 -0
- nautobot/extras/{tests/example_jobs/test_file_upload_fail.py → test_jobs/file_upload_fail.py} +11 -6
- nautobot/extras/test_jobs/file_upload_pass.py +25 -0
- nautobot/extras/test_jobs/has_sensitive_variables.py +25 -0
- nautobot/extras/test_jobs/ipaddress_vars.py +66 -0
- nautobot/extras/test_jobs/job_button_receiver.py +28 -0
- nautobot/extras/test_jobs/job_hook_receiver.py +29 -0
- nautobot/extras/test_jobs/job_variables.py +88 -0
- nautobot/extras/test_jobs/location_with_custom_field.py +45 -0
- nautobot/extras/test_jobs/log_redaction.py +20 -0
- nautobot/extras/test_jobs/log_skip_db_logging.py +17 -0
- nautobot/extras/test_jobs/modify_db.py +25 -0
- nautobot/extras/{tests/example_jobs/test_no_field_order.py → test_jobs/no_field_order.py} +4 -0
- nautobot/extras/test_jobs/object_var_optional.py +21 -0
- nautobot/extras/test_jobs/object_var_required.py +21 -0
- nautobot/extras/test_jobs/object_vars.py +26 -0
- nautobot/extras/test_jobs/pass.py +25 -0
- nautobot/extras/test_jobs/profiling.py +32 -0
- nautobot/extras/test_jobs/read_only_job.py +15 -0
- nautobot/extras/{tests/example_jobs/test_required_args.py → test_jobs/required_args.py} +4 -0
- nautobot/extras/{tests/example_jobs/test_soft_time_limit_greater_than_time_limit.py → test_jobs/soft_time_limit_greater_than_time_limit.py} +5 -1
- nautobot/extras/{tests/example_jobs/test_task_queues.py → test_jobs/task_queues.py} +5 -1
- nautobot/extras/tests/integration/test_computedfields.py +1 -1
- nautobot/extras/tests/integration/test_configcontextschema.py +5 -3
- nautobot/extras/tests/integration/test_customfields.py +4 -2
- nautobot/extras/tests/integration/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/integration/test_jobs.py +25 -27
- nautobot/extras/tests/integration/test_notes.py +8 -4
- nautobot/extras/tests/integration/test_relationships.py +2 -2
- nautobot/extras/tests/test_api.py +649 -642
- nautobot/extras/tests/test_changelog.py +3 -3
- nautobot/extras/tests/test_context_managers.py +5 -3
- nautobot/extras/tests/test_customfields.py +92 -50
- nautobot/extras/tests/test_datasources.py +189 -112
- nautobot/extras/tests/test_dynamicgroups.py +7 -8
- nautobot/extras/tests/test_filters.py +137 -89
- nautobot/extras/tests/test_forms.py +73 -75
- nautobot/extras/tests/{test_scripts.py → test_job_variables.py} +43 -49
- nautobot/extras/tests/test_jobs.py +262 -263
- nautobot/extras/tests/test_migrations.py +4 -3
- nautobot/extras/tests/test_models.py +116 -161
- nautobot/extras/tests/test_plugins.py +38 -60
- nautobot/extras/tests/test_relationships.py +167 -120
- nautobot/extras/tests/test_tags.py +6 -11
- nautobot/extras/tests/test_utils.py +31 -1
- nautobot/extras/tests/test_views.py +201 -145
- nautobot/extras/tests/test_webhooks.py +6 -2
- nautobot/extras/urls.py +42 -42
- nautobot/extras/utils.py +137 -163
- nautobot/extras/views.py +78 -152
- nautobot/ipam/api/fields.py +17 -0
- nautobot/ipam/api/serializers.py +58 -164
- nautobot/ipam/api/urls.py +1 -1
- nautobot/ipam/api/views.py +3 -2
- nautobot/ipam/apps.py +1 -2
- nautobot/ipam/filters.py +1 -10
- nautobot/ipam/forms.py +4 -177
- nautobot/ipam/lookups.py +1 -0
- nautobot/ipam/management/commands/__init__.py +0 -0
- nautobot/ipam/management/commands/fix_prefix_broadcast.py +17 -0
- nautobot/ipam/migrations/0010_alter_ipam_role_add_new_role.py +1 -1
- nautobot/ipam/migrations/0011_migrate_ipam_role_data.py +32 -38
- nautobot/ipam/migrations/0020_related_name_changes.py +1 -1
- nautobot/ipam/migrations/0022_aggregate_to_prefix_data_migration.py +2 -2
- nautobot/ipam/migrations/0028_tagsfield.py +44 -0
- nautobot/ipam/migrations/0029_ip_address_to_interface_uniqueness_constraints.py +18 -0
- nautobot/ipam/migrations/{0028_ipam__namespaces.py → 0030_ipam__namespaces.py} +77 -28
- nautobot/ipam/migrations/0031_ipam__prefix__add_parent.py +58 -0
- nautobot/ipam/migrations/0032_ipam__namespaces_finish.py +63 -0
- nautobot/ipam/migrations/0033_fixup_null_statuses.py +26 -0
- nautobot/ipam/migrations/0034_status_nonnullable.py +36 -0
- nautobot/ipam/models.py +100 -236
- nautobot/ipam/navigation.py +36 -181
- nautobot/ipam/querysets.py +20 -25
- nautobot/ipam/signals.py +49 -6
- nautobot/ipam/tables.py +10 -3
- nautobot/ipam/templates/ipam/namespace_ipaddresses.html +11 -0
- nautobot/ipam/templates/ipam/namespace_prefixes.html +11 -0
- nautobot/ipam/templates/ipam/namespace_retrieve.html +17 -4
- nautobot/ipam/templates/ipam/namespace_vrfs.html +11 -0
- nautobot/ipam/templates/ipam/prefix.html +1 -1
- nautobot/ipam/templates/ipam/vlangroup.html +0 -13
- nautobot/ipam/templates/ipam/vrf_edit.html +6 -0
- nautobot/ipam/tests/integration/test_prefixes.py +3 -26
- nautobot/ipam/tests/test_api.py +22 -19
- nautobot/ipam/tests/test_filters.py +59 -23
- nautobot/ipam/tests/test_migrations.py +6 -10
- nautobot/ipam/tests/test_models.py +323 -198
- nautobot/ipam/tests/test_ordering.py +2 -2
- nautobot/ipam/tests/test_querysets.py +44 -24
- nautobot/ipam/tests/test_views.py +73 -26
- nautobot/ipam/urls.py +16 -0
- nautobot/ipam/{utils.py → utils/__init__.py} +2 -2
- nautobot/ipam/utils/migrations.py +713 -0
- nautobot/ipam/views.py +137 -20
- nautobot/project-static/docs/404.html +1178 -10
- nautobot/project-static/docs/additional-features/caching.html +1224 -159
- nautobot/project-static/docs/additional-features/change-logging.html +1180 -12
- nautobot/project-static/docs/additional-features/config-contexts.html +1180 -12
- nautobot/project-static/docs/additional-features/graphql.html +1179 -11
- nautobot/project-static/docs/additional-features/healthcheck.html +1180 -12
- nautobot/project-static/docs/additional-features/job-scheduling-and-approvals.html +1184 -12
- nautobot/project-static/docs/additional-features/jobs.html +1514 -328
- nautobot/project-static/docs/additional-features/napalm.html +1180 -12
- nautobot/project-static/docs/additional-features/prometheus-metrics.html +1180 -12
- nautobot/project-static/docs/additional-features/template-filters.html +1180 -12
- nautobot/project-static/docs/administration/celery-queues.html +1178 -10
- nautobot/project-static/docs/administration/nautobot-server.html +1451 -304
- nautobot/project-static/docs/administration/nautobot-shell.html +1178 -10
- nautobot/project-static/docs/administration/permissions.html +1178 -10
- nautobot/project-static/docs/administration/replicating-nautobot.html +1262 -113
- nautobot/project-static/docs/apps/index.html +1178 -10
- nautobot/project-static/docs/apps/nautobot-apps.html +1178 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +1580 -426
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +1178 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +3481 -1838
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +1178 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +1178 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +1185 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +1719 -551
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +2062 -930
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +1946 -659
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +1180 -12
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +1189 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +9283 -6218
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +2734 -2122
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +1178 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +2337 -1300
- nautobot/project-static/docs/configuration/authentication/ldap.html +1178 -10
- nautobot/project-static/docs/configuration/authentication/remote.html +1178 -10
- nautobot/project-static/docs/configuration/authentication/sso.html +1178 -10
- nautobot/project-static/docs/configuration/index.html +1178 -10
- nautobot/project-static/docs/configuration/optional-settings.html +1311 -160
- nautobot/project-static/docs/configuration/required-settings.html +1312 -211
- nautobot/project-static/docs/core-functionality/circuits.html +1178 -10
- nautobot/project-static/docs/core-functionality/device-types.html +1178 -10
- nautobot/project-static/docs/core-functionality/devices.html +1182 -10
- nautobot/project-static/docs/core-functionality/ipam.html +1182 -10
- nautobot/project-static/docs/core-functionality/power.html +1178 -10
- nautobot/project-static/docs/core-functionality/secrets.html +1178 -10
- nautobot/project-static/docs/core-functionality/services.html +1178 -10
- nautobot/project-static/docs/core-functionality/sites-and-racks.html +1178 -10
- nautobot/project-static/docs/core-functionality/tenancy.html +1178 -10
- nautobot/project-static/docs/core-functionality/virtualization.html +1182 -10
- nautobot/project-static/docs/core-functionality/vlans.html +1179 -11
- nautobot/project-static/docs/development/application-registry.html +1190 -42
- nautobot/project-static/docs/development/best-practices.html +1178 -10
- nautobot/project-static/docs/development/docker-compose-advanced-use-cases.html +1178 -10
- nautobot/project-static/docs/development/extending-models.html +1238 -83
- nautobot/project-static/docs/development/generic-views.html +1180 -14
- nautobot/project-static/docs/development/getting-started.html +1365 -90
- nautobot/project-static/docs/development/homepage.html +1178 -10
- nautobot/project-static/docs/development/index.html +1178 -10
- nautobot/project-static/docs/development/model-features.html +1178 -10
- nautobot/project-static/docs/development/natural-keys.html +1178 -10
- nautobot/project-static/docs/development/navigation-menu.html +1215 -125
- nautobot/project-static/docs/development/react-ui.html +4199 -0
- nautobot/project-static/docs/development/release-checklist.html +1178 -10
- nautobot/project-static/docs/development/role-internals.html +1179 -12
- nautobot/project-static/docs/development/style-guide.html +1188 -19
- nautobot/project-static/docs/development/templates.html +1178 -10
- nautobot/project-static/docs/development/testing.html +1178 -10
- nautobot/project-static/docs/development/user-preferences.html +1178 -10
- nautobot/project-static/docs/docker/index.html +1178 -10
- nautobot/project-static/docs/index.html +1183 -12
- nautobot/project-static/docs/installation/centos.html +1178 -10
- nautobot/project-static/docs/installation/external-authentication.html +1178 -10
- nautobot/project-static/docs/installation/http-server.html +1178 -10
- nautobot/project-static/docs/installation/index.html +1178 -10
- nautobot/project-static/docs/installation/migrating-from-netbox.html +1305 -189
- nautobot/project-static/docs/installation/migrating-from-postgresql.html +1178 -10
- nautobot/project-static/docs/installation/nautobot.html +1179 -11
- nautobot/project-static/docs/installation/region-and-site-data-migration-guide.html +1178 -10
- nautobot/project-static/docs/installation/selinux-troubleshooting.html +1178 -10
- nautobot/project-static/docs/installation/services.html +1178 -10
- nautobot/project-static/docs/installation/tables/v2-api-behavior-changes.yaml +70 -0
- nautobot/project-static/docs/installation/tables/v2-api-removed-fields.yaml +142 -0
- nautobot/project-static/docs/installation/tables/v2-api-renamed-fields.yaml +124 -0
- nautobot/project-static/docs/installation/tables/v2-code-location-changes.yaml +241 -0
- nautobot/project-static/docs/installation/tables/v2-code-removals.yaml +67 -0
- nautobot/project-static/docs/installation/tables/v2-database-behavior-changes.yaml +37 -0
- nautobot/project-static/docs/installation/tables/v2-database-removed-fields.yaml +166 -0
- nautobot/project-static/docs/installation/tables/v2-database-renamed-fields.yaml +340 -0
- nautobot/project-static/docs/installation/tables/v2-filters-corrected-fields.yaml +28 -0
- nautobot/project-static/docs/installation/tables/v2-filters-enhanced-fields.yaml +241 -0
- nautobot/project-static/docs/installation/tables/v2-filters-removed-fields.yaml +553 -0
- nautobot/project-static/docs/installation/tables/v2-filters-renamed-fields.yaml +223 -0
- nautobot/project-static/docs/installation/tables/v2-logging-renamed-loggers.yaml +23 -0
- nautobot/project-static/docs/installation/ubuntu.html +1178 -10
- nautobot/project-static/docs/installation/upgrading-from-nautobot-v1.html +3823 -2152
- nautobot/project-static/docs/installation/upgrading.html +1178 -10
- nautobot/project-static/docs/models/circuits/circuit.html +1293 -103
- nautobot/project-static/docs/models/circuits/circuittermination.html +1293 -103
- nautobot/project-static/docs/models/circuits/circuittype.html +1293 -103
- nautobot/project-static/docs/models/circuits/provider.html +1293 -103
- nautobot/project-static/docs/models/circuits/providernetwork.html +1293 -103
- nautobot/project-static/docs/models/dcim/cable.html +1324 -103
- nautobot/project-static/docs/models/dcim/consoleport.html +1293 -103
- nautobot/project-static/docs/models/dcim/consoleporttemplate.html +1293 -103
- nautobot/project-static/docs/models/dcim/consoleserverport.html +1293 -103
- nautobot/project-static/docs/models/dcim/consoleserverporttemplate.html +1293 -103
- nautobot/project-static/docs/models/dcim/device.html +1326 -132
- nautobot/project-static/docs/models/dcim/devicebay.html +1293 -103
- nautobot/project-static/docs/models/dcim/devicebaytemplate.html +1293 -103
- nautobot/project-static/docs/models/dcim/deviceredundancygroup.html +1379 -97
- nautobot/project-static/docs/models/dcim/devicetype.html +1293 -103
- nautobot/project-static/docs/models/dcim/frontport.html +1293 -103
- nautobot/project-static/docs/models/dcim/frontporttemplate.html +1293 -103
- nautobot/project-static/docs/models/dcim/interface.html +1293 -103
- nautobot/project-static/docs/models/dcim/interfacetemplate.html +1293 -103
- nautobot/project-static/docs/models/dcim/inventoryitem.html +1293 -103
- nautobot/project-static/docs/models/dcim/location.html +1293 -103
- nautobot/project-static/docs/models/dcim/locationtype.html +1293 -103
- nautobot/project-static/docs/models/dcim/manufacturer.html +1292 -102
- nautobot/project-static/docs/models/dcim/platform.html +1272 -82
- nautobot/project-static/docs/models/dcim/powerfeed.html +1270 -80
- nautobot/project-static/docs/models/dcim/poweroutlet.html +1272 -82
- nautobot/project-static/docs/models/dcim/poweroutlettemplate.html +1272 -82
- nautobot/project-static/docs/models/dcim/powerpanel.html +1270 -80
- nautobot/project-static/docs/models/dcim/powerport.html +1272 -82
- nautobot/project-static/docs/models/dcim/powerporttemplate.html +1272 -82
- nautobot/project-static/docs/models/dcim/rack.html +1272 -82
- nautobot/project-static/docs/models/dcim/rackgroup.html +1272 -82
- nautobot/project-static/docs/models/dcim/rackreservation.html +1272 -82
- nautobot/project-static/docs/models/dcim/rearport.html +1286 -96
- nautobot/project-static/docs/models/dcim/rearporttemplate.html +1286 -96
- nautobot/project-static/docs/models/dcim/region.html +1178 -10
- nautobot/project-static/docs/models/dcim/site.html +1178 -10
- nautobot/project-static/docs/models/dcim/virtualchassis.html +1284 -94
- nautobot/project-static/docs/models/extras/computedfield.html +1184 -16
- nautobot/project-static/docs/models/extras/configcontext.html +1314 -86
- nautobot/project-static/docs/models/extras/configcontextschema.html +1276 -86
- nautobot/project-static/docs/models/extras/customfield.html +1180 -12
- nautobot/project-static/docs/models/extras/customlink.html +1180 -12
- nautobot/project-static/docs/models/extras/dynamicgroup.html +1180 -12
- nautobot/project-static/docs/models/extras/exporttemplate.html +1180 -12
- nautobot/project-static/docs/models/extras/gitrepository.html +1184 -12
- nautobot/project-static/docs/models/extras/graphqlquery.html +1321 -86
- nautobot/project-static/docs/models/extras/imageattachment.html +1276 -86
- nautobot/project-static/docs/models/extras/job.html +1277 -86
- nautobot/project-static/docs/models/extras/jobbutton.html +1201 -29
- nautobot/project-static/docs/models/extras/jobhook.html +1188 -16
- nautobot/project-static/docs/models/extras/joblogentry.html +1274 -84
- nautobot/project-static/docs/models/extras/jobresult.html +1364 -169
- nautobot/project-static/docs/models/extras/note.html +1180 -12
- nautobot/project-static/docs/models/extras/relationship.html +1182 -14
- nautobot/project-static/docs/models/extras/role.html +1320 -86
- nautobot/project-static/docs/models/extras/secret.html +1314 -86
- nautobot/project-static/docs/models/extras/secretsgroup.html +1276 -86
- nautobot/project-static/docs/models/extras/status.html +1188 -59
- nautobot/project-static/docs/models/extras/tag.html +1180 -12
- nautobot/project-static/docs/models/extras/webhook.html +1180 -12
- nautobot/project-static/docs/models/ipam/ipaddress.html +1327 -102
- nautobot/project-static/docs/models/ipam/prefix.html +1276 -86
- nautobot/project-static/docs/models/ipam/rir.html +1276 -86
- nautobot/project-static/docs/models/ipam/routetarget.html +1276 -86
- nautobot/project-static/docs/models/ipam/service.html +1276 -86
- nautobot/project-static/docs/models/ipam/vlan.html +1276 -86
- nautobot/project-static/docs/models/ipam/vlangroup.html +1276 -86
- nautobot/project-static/docs/models/ipam/vrf.html +1276 -86
- nautobot/project-static/docs/models/tenancy/tenant.html +1276 -86
- nautobot/project-static/docs/models/tenancy/tenantgroup.html +1276 -86
- nautobot/project-static/docs/models/users/objectpermission.html +1314 -86
- nautobot/project-static/docs/models/users/token.html +1276 -86
- nautobot/project-static/docs/models/virtualization/cluster.html +1276 -86
- nautobot/project-static/docs/models/virtualization/clustergroup.html +1276 -86
- nautobot/project-static/docs/models/virtualization/clustertype.html +1276 -86
- nautobot/project-static/docs/models/virtualization/virtualmachine.html +1321 -127
- nautobot/project-static/docs/models/virtualization/vminterface.html +1276 -86
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/plugins/development.html +1726 -495
- nautobot/project-static/docs/plugins/index.html +1178 -10
- nautobot/project-static/docs/plugins/porting-from-netbox.html +1178 -10
- nautobot/project-static/docs/release-notes/index.html +1178 -10
- nautobot/project-static/docs/release-notes/version-1.0.html +1178 -10
- nautobot/project-static/docs/release-notes/version-1.1.html +1178 -10
- nautobot/project-static/docs/release-notes/version-1.2.html +1178 -10
- nautobot/project-static/docs/release-notes/version-1.3.html +1178 -10
- nautobot/project-static/docs/release-notes/version-1.4.html +1178 -10
- nautobot/project-static/docs/release-notes/version-1.5.html +1608 -225
- nautobot/project-static/docs/release-notes/version-2.0.html +1547 -47
- nautobot/project-static/docs/requirements.txt +1 -0
- nautobot/project-static/docs/rest-api/authentication.html +1179 -11
- nautobot/project-static/docs/rest-api/filtering.html +1178 -10
- nautobot/project-static/docs/rest-api/overview.html +1841 -446
- nautobot/project-static/docs/rest-api/ui-related-endpoints.html +4057 -0
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +197 -187
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guides/custom-fields.html +1178 -10
- nautobot/project-static/docs/user-guides/getting-started/creating-devices.html +1178 -10
- nautobot/project-static/docs/user-guides/getting-started/index.html +1178 -10
- nautobot/project-static/docs/user-guides/getting-started/interfaces.html +1178 -10
- nautobot/project-static/docs/user-guides/getting-started/ipam.html +1178 -10
- nautobot/project-static/docs/user-guides/getting-started/platforms.html +1178 -10
- nautobot/project-static/docs/user-guides/getting-started/regions.html +1178 -10
- nautobot/project-static/docs/user-guides/getting-started/search-bar.html +1178 -10
- nautobot/project-static/docs/user-guides/getting-started/tenants.html +1178 -10
- nautobot/project-static/docs/user-guides/getting-started/vlans-and-vlan-groups.html +1178 -10
- nautobot/project-static/docs/user-guides/git-data-source.html +1178 -10
- nautobot/project-static/docs/user-guides/graphql.html +1178 -10
- nautobot/project-static/docs/user-guides/relationships.html +1178 -10
- nautobot/project-static/docs/user-guides/s3-django-storage.html +1178 -10
- nautobot/project-static/js/forms.js +16 -9
- nautobot/project-static/js/theme.js +5 -0
- nautobot/tenancy/api/serializers.py +4 -32
- nautobot/tenancy/api/urls.py +1 -1
- nautobot/tenancy/forms.py +0 -28
- nautobot/tenancy/migrations/0008_tagsfield.py +19 -0
- nautobot/tenancy/models.py +0 -25
- nautobot/tenancy/navigation.py +6 -39
- nautobot/tenancy/templates/tenancy/tenant.html +12 -12
- nautobot/tenancy/templates/tenancy/tenantgroup.html +1 -1
- nautobot/tenancy/tests/test_api.py +1 -3
- nautobot/tenancy/tests/test_filters.py +10 -5
- nautobot/tenancy/views.py +0 -2
- nautobot/ui/.eslintignore +6 -0
- nautobot/ui/.gitignore +10 -0
- nautobot/ui/.prettierignore +9 -0
- nautobot/ui/.prettierrc +4 -0
- nautobot/ui/README.md +33 -0
- nautobot/ui/app_imports.js.j2 +7 -0
- nautobot/ui/craco.config.js +46 -0
- nautobot/ui/jsconfig-base.json +11 -0
- nautobot/ui/jsconfig.json +5 -0
- nautobot/ui/lib/nautobot-craco-alias-plugin.js +40 -0
- nautobot/ui/package-lock.json +21451 -0
- nautobot/ui/package.json +70 -0
- nautobot/ui/public/index.html +47 -0
- nautobot/ui/public/logo192.png +0 -0
- nautobot/ui/public/logo512.png +0 -0
- nautobot/ui/public/manifest.json +25 -0
- nautobot/ui/public/nautobot_logo.svg +131 -0
- nautobot/ui/public/robots.txt +3 -0
- nautobot/ui/src/App.js +71 -0
- nautobot/ui/src/components/AppFullWidthComponents.js +8 -0
- nautobot/ui/src/components/AppTab.js +40 -0
- nautobot/ui/src/components/Apps.js +60 -0
- nautobot/ui/src/components/HomeChangelogPanel.js +98 -0
- nautobot/ui/src/components/HomePanel.js +58 -0
- nautobot/ui/src/components/JobHistoryTable.js +78 -0
- nautobot/ui/src/components/Layout.js +53 -0
- nautobot/ui/src/components/LoadingWidget.js +25 -0
- nautobot/ui/src/components/Navbar.js +116 -0
- nautobot/ui/src/components/NotificationPopover.js +27 -0
- nautobot/ui/src/components/ObjectListTable.js +209 -0
- nautobot/ui/src/components/ReferenceDataTag.js +35 -0
- nautobot/ui/src/components/RouterButton.js +10 -0
- nautobot/ui/src/components/RouterLink.js +10 -0
- nautobot/ui/src/components/SidebarNav.js +147 -0
- nautobot/ui/src/components/Table.js +48 -0
- nautobot/ui/src/components/TableItem.js +71 -0
- nautobot/ui/src/components/__tests__/AppFullWidthComponents.test.js +16 -0
- nautobot/ui/src/components/__tests__/AppTab.test.js +21 -0
- nautobot/ui/src/components/__tests__/Apps.test.js +14 -0
- nautobot/ui/src/components/__tests__/Layout.test.js +33 -0
- nautobot/ui/src/components/__tests__/Table.test.js +36 -0
- nautobot/ui/src/components/__tests__/TableItem.test.js +37 -0
- nautobot/ui/src/components/__tests__/paginator.test.js +43 -0
- nautobot/ui/src/components/__tests__/paginator_form.test.js +13 -0
- nautobot/ui/src/components/pagination.js +93 -0
- nautobot/ui/src/components/paginator.js +79 -0
- nautobot/ui/src/components/paginator_form.js +43 -0
- nautobot/ui/src/components/usePagination.js +57 -0
- nautobot/ui/src/constants/apiPath.js +10 -0
- nautobot/ui/src/constants/icons.js +15 -0
- nautobot/ui/src/constants/size.js +15 -0
- nautobot/ui/src/index.js +65 -0
- nautobot/ui/src/reportWebVitals.js +15 -0
- nautobot/ui/src/router.js +77 -0
- nautobot/ui/src/utils/api.js +131 -0
- nautobot/ui/src/utils/app-import.js +15 -0
- nautobot/ui/src/utils/color.js +15 -0
- nautobot/ui/src/utils/date.js +14 -0
- nautobot/ui/src/utils/index.js +15 -0
- nautobot/ui/src/utils/navigation.js +32 -0
- nautobot/ui/src/utils/session.js +64 -0
- nautobot/ui/src/utils/store.js +242 -0
- nautobot/ui/src/utils/string.js +6 -0
- nautobot/ui/src/utils/url.js +4 -0
- nautobot/ui/src/views/Home.js +138 -0
- nautobot/ui/src/views/InstalledApps.js +80 -0
- nautobot/ui/src/views/Login.js +48 -0
- nautobot/ui/src/views/Logout.js +20 -0
- nautobot/ui/src/views/__tests__/BSCreateViewTemplate.test.js +11 -0
- nautobot/ui/src/views/__tests__/BSListViewTemplate.test.js +107 -0
- nautobot/ui/src/views/__tests__/Login.test.js +15 -0
- nautobot/ui/src/views/generic/GenericView.js +142 -0
- nautobot/ui/src/views/generic/ObjectCreate.js +96 -0
- nautobot/ui/src/views/generic/ObjectList.js +127 -0
- nautobot/ui/src/views/generic/ObjectRetrieve.js +551 -0
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +51 -61
- nautobot/users/api/urls.py +1 -1
- nautobot/users/api/views.py +53 -2
- nautobot/users/tests/test_api.py +110 -25
- nautobot/virtualization/api/serializers.py +18 -130
- nautobot/virtualization/api/urls.py +1 -1
- nautobot/virtualization/api/views.py +1 -22
- nautobot/virtualization/forms.py +13 -99
- nautobot/virtualization/migrations/0012_alter_virtualmachine_role_add_new_role.py +1 -1
- nautobot/virtualization/migrations/0013_migrate_virtualmachine_role_data.py +18 -11
- nautobot/virtualization/migrations/0015_rename_foreignkey_fields.py +1 -1
- nautobot/virtualization/migrations/0018_related_name_changes.py +1 -1
- nautobot/virtualization/migrations/0021_tagsfield_and_vminterface_to_primarymodel.py +39 -0
- nautobot/virtualization/migrations/0022_vminterface_timestamps_data_migration.py +17 -0
- nautobot/virtualization/migrations/{0021_ipam__namespaces.py → 0023_ipam__namespaces.py} +2 -2
- nautobot/virtualization/migrations/0024_fixup_null_statuses.py +25 -0
- nautobot/virtualization/migrations/0025_status_nonnullable.py +29 -0
- nautobot/virtualization/models.py +31 -123
- nautobot/virtualization/navigation.py +18 -99
- nautobot/virtualization/templates/virtualization/virtualmachine.html +2 -1
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +6 -0
- nautobot/virtualization/tests/test_api.py +25 -26
- nautobot/virtualization/tests/test_filters.py +41 -15
- nautobot/virtualization/tests/test_models.py +31 -7
- nautobot/virtualization/tests/test_views.py +42 -25
- nautobot/virtualization/views.py +7 -6
- {nautobot-2.0.0a3.dist-info → nautobot-2.0.0b1.dist-info}/METADATA +3 -7
- {nautobot-2.0.0a3.dist-info → nautobot-2.0.0b1.dist-info}/RECORD +744 -602
- {nautobot-2.0.0a3.dist-info → nautobot-2.0.0b1.dist-info}/WHEEL +1 -1
- nautobot/circuits/api/nested_serializers.py +0 -69
- nautobot/core/templates/plugin_template/navigation.py-tpl +0 -22
- nautobot/dcim/api/nested_serializers.py +0 -356
- nautobot/dcim/templates/dcim/device_import.html +0 -5
- nautobot/dcim/templates/dcim/device_import_child.html +0 -5
- nautobot/dcim/templates/dcim/inc/device_import_header.html +0 -4
- nautobot/extras/api/nested_serializers.py +0 -353
- nautobot/extras/migrations/0064_configcontext_data_migrations.py +0 -41
- nautobot/extras/migrations/0071_job__unique_name_data_migration.py +0 -46
- nautobot/extras/reports.py +0 -60
- nautobot/extras/scripts.py +0 -72
- nautobot/extras/tests/example_jobs/script_variables.py +0 -67
- nautobot/extras/tests/example_jobs/test_duplicate_name2.py +0 -5
- nautobot/extras/tests/example_jobs/test_fail.py +0 -16
- nautobot/extras/tests/example_jobs/test_file_upload_pass.py +0 -20
- nautobot/extras/tests/example_jobs/test_ipaddress_vars.py +0 -52
- nautobot/extras/tests/example_jobs/test_job_button_receiver.py +0 -21
- nautobot/extras/tests/example_jobs/test_job_hook_receiver.py +0 -20
- nautobot/extras/tests/example_jobs/test_location_with_custom_field.py +0 -35
- nautobot/extras/tests/example_jobs/test_log_redaction.py +0 -14
- nautobot/extras/tests/example_jobs/test_modify_db.py +0 -18
- nautobot/extras/tests/example_jobs/test_object_var_optional.py +0 -14
- nautobot/extras/tests/example_jobs/test_object_var_required.py +0 -14
- nautobot/extras/tests/example_jobs/test_object_vars.py +0 -29
- nautobot/extras/tests/example_jobs/test_pass.py +0 -19
- nautobot/extras/tests/example_jobs/test_read_only_fail.py +0 -24
- nautobot/extras/tests/example_jobs/test_read_only_no_commit_field.py +0 -10
- nautobot/extras/tests/example_jobs/test_read_only_pass.py +0 -22
- nautobot/ipam/api/nested_serializers.py +0 -159
- nautobot/ipam/migrations/0029_ipam__prefix__add_parent.py +0 -31
- nautobot/ipam/migrations/0030_ipam__prefix__data_migration.py +0 -13
- nautobot/ipam/migrations/0031_ipam__ipaddress__add_parent.py +0 -41
- nautobot/ipam/migrations/0032_ipam__ipaddress__data_migration.py +0 -11
- nautobot/tenancy/api/nested_serializers.py +0 -31
- nautobot/users/api/nested_serializers.py +0 -67
- nautobot/virtualization/api/nested_serializers.py +0 -65
- /nautobot/extras/{tests/example_jobs → test_jobs}/__init__.py +0 -0
- /nautobot/{dcim/models/sites.py → ipam/management/__init__.py} +0 -0
- {nautobot-2.0.0a3.dist-info → nautobot-2.0.0b1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.0.0a3.dist-info → nautobot-2.0.0b1.dist-info}/entry_points.txt +0 -0
|
@@ -1346,12 +1346,1166 @@
|
|
|
1346
1346
|
|
|
1347
1347
|
|
|
1348
1348
|
<label class="md-nav__link" for="__nav_2_8" id="__nav_2_8_label" tabindex="0">
|
|
1349
|
+
Model Details
|
|
1350
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1351
|
+
</label>
|
|
1352
|
+
|
|
1353
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_8_label" aria-expanded="false">
|
|
1354
|
+
<label class="md-nav__title" for="__nav_2_8">
|
|
1355
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1356
|
+
Model Details
|
|
1357
|
+
</label>
|
|
1358
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
|
|
1363
|
+
|
|
1364
|
+
|
|
1365
|
+
|
|
1366
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
|
|
1370
|
+
|
|
1371
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_1" >
|
|
1372
|
+
|
|
1373
|
+
|
|
1374
|
+
|
|
1375
|
+
<label class="md-nav__link" for="__nav_2_8_1" id="__nav_2_8_1_label" tabindex="0">
|
|
1376
|
+
Circuits
|
|
1377
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1378
|
+
</label>
|
|
1379
|
+
|
|
1380
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_1_label" aria-expanded="false">
|
|
1381
|
+
<label class="md-nav__title" for="__nav_2_8_1">
|
|
1382
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1383
|
+
Circuits
|
|
1384
|
+
</label>
|
|
1385
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1386
|
+
|
|
1387
|
+
|
|
1388
|
+
|
|
1389
|
+
|
|
1390
|
+
|
|
1391
|
+
|
|
1392
|
+
<li class="md-nav__item">
|
|
1393
|
+
<a href="../models/circuits/circuit.html" class="md-nav__link">
|
|
1394
|
+
Circuit
|
|
1395
|
+
</a>
|
|
1396
|
+
</li>
|
|
1397
|
+
|
|
1398
|
+
|
|
1399
|
+
|
|
1400
|
+
|
|
1401
|
+
|
|
1402
|
+
|
|
1403
|
+
|
|
1404
|
+
|
|
1405
|
+
|
|
1406
|
+
<li class="md-nav__item">
|
|
1407
|
+
<a href="../models/circuits/circuittermination.html" class="md-nav__link">
|
|
1408
|
+
Circuit Termination
|
|
1409
|
+
</a>
|
|
1410
|
+
</li>
|
|
1411
|
+
|
|
1412
|
+
|
|
1413
|
+
|
|
1414
|
+
|
|
1415
|
+
|
|
1416
|
+
|
|
1417
|
+
|
|
1418
|
+
|
|
1419
|
+
|
|
1420
|
+
<li class="md-nav__item">
|
|
1421
|
+
<a href="../models/circuits/circuittype.html" class="md-nav__link">
|
|
1422
|
+
Circuit Type
|
|
1423
|
+
</a>
|
|
1424
|
+
</li>
|
|
1425
|
+
|
|
1426
|
+
|
|
1427
|
+
|
|
1428
|
+
|
|
1429
|
+
|
|
1430
|
+
|
|
1431
|
+
|
|
1432
|
+
|
|
1433
|
+
|
|
1434
|
+
<li class="md-nav__item">
|
|
1435
|
+
<a href="../models/circuits/provider.html" class="md-nav__link">
|
|
1436
|
+
Circuit Provider
|
|
1437
|
+
</a>
|
|
1438
|
+
</li>
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
|
|
1442
|
+
|
|
1443
|
+
|
|
1444
|
+
|
|
1445
|
+
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
<li class="md-nav__item">
|
|
1449
|
+
<a href="../models/circuits/providernetwork.html" class="md-nav__link">
|
|
1450
|
+
Circuit Provider Network
|
|
1451
|
+
</a>
|
|
1452
|
+
</li>
|
|
1453
|
+
|
|
1454
|
+
|
|
1455
|
+
|
|
1456
|
+
|
|
1457
|
+
</ul>
|
|
1458
|
+
</nav>
|
|
1459
|
+
</li>
|
|
1460
|
+
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
|
|
1464
|
+
|
|
1465
|
+
|
|
1466
|
+
|
|
1467
|
+
|
|
1468
|
+
|
|
1469
|
+
|
|
1470
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1471
|
+
|
|
1472
|
+
|
|
1473
|
+
|
|
1474
|
+
|
|
1475
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_2" >
|
|
1476
|
+
|
|
1477
|
+
|
|
1478
|
+
|
|
1479
|
+
<label class="md-nav__link" for="__nav_2_8_2" id="__nav_2_8_2_label" tabindex="0">
|
|
1480
|
+
DCIM
|
|
1481
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1482
|
+
</label>
|
|
1483
|
+
|
|
1484
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_2_label" aria-expanded="false">
|
|
1485
|
+
<label class="md-nav__title" for="__nav_2_8_2">
|
|
1486
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1487
|
+
DCIM
|
|
1488
|
+
</label>
|
|
1489
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1490
|
+
|
|
1491
|
+
|
|
1492
|
+
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
|
|
1496
|
+
<li class="md-nav__item">
|
|
1497
|
+
<a href="../models/dcim/cable.html" class="md-nav__link">
|
|
1498
|
+
Cable
|
|
1499
|
+
</a>
|
|
1500
|
+
</li>
|
|
1501
|
+
|
|
1502
|
+
|
|
1503
|
+
|
|
1504
|
+
|
|
1505
|
+
|
|
1506
|
+
|
|
1507
|
+
|
|
1508
|
+
|
|
1509
|
+
|
|
1510
|
+
<li class="md-nav__item">
|
|
1511
|
+
<a href="../models/dcim/consoleport.html" class="md-nav__link">
|
|
1512
|
+
Console Port
|
|
1513
|
+
</a>
|
|
1514
|
+
</li>
|
|
1515
|
+
|
|
1516
|
+
|
|
1517
|
+
|
|
1518
|
+
|
|
1519
|
+
|
|
1520
|
+
|
|
1521
|
+
|
|
1522
|
+
|
|
1523
|
+
|
|
1524
|
+
<li class="md-nav__item">
|
|
1525
|
+
<a href="../models/dcim/consoleporttemplate.html" class="md-nav__link">
|
|
1526
|
+
Console Port Template
|
|
1527
|
+
</a>
|
|
1528
|
+
</li>
|
|
1529
|
+
|
|
1530
|
+
|
|
1531
|
+
|
|
1532
|
+
|
|
1533
|
+
|
|
1534
|
+
|
|
1535
|
+
|
|
1536
|
+
|
|
1537
|
+
|
|
1538
|
+
<li class="md-nav__item">
|
|
1539
|
+
<a href="../models/dcim/consoleserverport.html" class="md-nav__link">
|
|
1540
|
+
Console Server Port
|
|
1541
|
+
</a>
|
|
1542
|
+
</li>
|
|
1543
|
+
|
|
1544
|
+
|
|
1545
|
+
|
|
1546
|
+
|
|
1547
|
+
|
|
1548
|
+
|
|
1549
|
+
|
|
1550
|
+
|
|
1551
|
+
|
|
1552
|
+
<li class="md-nav__item">
|
|
1553
|
+
<a href="../models/dcim/consoleserverporttemplate.html" class="md-nav__link">
|
|
1554
|
+
Console Server Port Template
|
|
1555
|
+
</a>
|
|
1556
|
+
</li>
|
|
1557
|
+
|
|
1558
|
+
|
|
1559
|
+
|
|
1560
|
+
|
|
1561
|
+
|
|
1562
|
+
|
|
1563
|
+
|
|
1564
|
+
|
|
1565
|
+
|
|
1566
|
+
<li class="md-nav__item">
|
|
1567
|
+
<a href="../models/dcim/device.html" class="md-nav__link">
|
|
1568
|
+
Device
|
|
1569
|
+
</a>
|
|
1570
|
+
</li>
|
|
1571
|
+
|
|
1572
|
+
|
|
1573
|
+
|
|
1574
|
+
|
|
1575
|
+
|
|
1576
|
+
|
|
1577
|
+
|
|
1578
|
+
|
|
1579
|
+
|
|
1580
|
+
<li class="md-nav__item">
|
|
1581
|
+
<a href="../models/dcim/devicebay.html" class="md-nav__link">
|
|
1582
|
+
Device Bay
|
|
1583
|
+
</a>
|
|
1584
|
+
</li>
|
|
1585
|
+
|
|
1586
|
+
|
|
1587
|
+
|
|
1588
|
+
|
|
1589
|
+
|
|
1590
|
+
|
|
1591
|
+
|
|
1592
|
+
|
|
1593
|
+
|
|
1594
|
+
<li class="md-nav__item">
|
|
1595
|
+
<a href="../models/dcim/devicebaytemplate.html" class="md-nav__link">
|
|
1596
|
+
Device Bay Template
|
|
1597
|
+
</a>
|
|
1598
|
+
</li>
|
|
1599
|
+
|
|
1600
|
+
|
|
1601
|
+
|
|
1602
|
+
|
|
1603
|
+
|
|
1604
|
+
|
|
1605
|
+
|
|
1606
|
+
|
|
1607
|
+
|
|
1608
|
+
<li class="md-nav__item">
|
|
1609
|
+
<a href="../models/dcim/deviceredundancygroup.html" class="md-nav__link">
|
|
1610
|
+
Device Redundancy Group
|
|
1611
|
+
</a>
|
|
1612
|
+
</li>
|
|
1613
|
+
|
|
1614
|
+
|
|
1615
|
+
|
|
1616
|
+
|
|
1617
|
+
|
|
1618
|
+
|
|
1619
|
+
|
|
1620
|
+
|
|
1621
|
+
|
|
1622
|
+
<li class="md-nav__item">
|
|
1623
|
+
<a href="../models/dcim/devicetype.html" class="md-nav__link">
|
|
1624
|
+
Device Type
|
|
1625
|
+
</a>
|
|
1626
|
+
</li>
|
|
1627
|
+
|
|
1628
|
+
|
|
1629
|
+
|
|
1630
|
+
|
|
1631
|
+
|
|
1632
|
+
|
|
1633
|
+
|
|
1634
|
+
|
|
1635
|
+
|
|
1636
|
+
<li class="md-nav__item">
|
|
1637
|
+
<a href="../models/dcim/frontport.html" class="md-nav__link">
|
|
1638
|
+
Front Port
|
|
1639
|
+
</a>
|
|
1640
|
+
</li>
|
|
1641
|
+
|
|
1642
|
+
|
|
1643
|
+
|
|
1644
|
+
|
|
1645
|
+
|
|
1646
|
+
|
|
1647
|
+
|
|
1648
|
+
|
|
1649
|
+
|
|
1650
|
+
<li class="md-nav__item">
|
|
1651
|
+
<a href="../models/dcim/frontporttemplate.html" class="md-nav__link">
|
|
1652
|
+
Front Port Template
|
|
1653
|
+
</a>
|
|
1654
|
+
</li>
|
|
1655
|
+
|
|
1656
|
+
|
|
1657
|
+
|
|
1658
|
+
|
|
1659
|
+
|
|
1660
|
+
|
|
1661
|
+
|
|
1662
|
+
|
|
1663
|
+
|
|
1664
|
+
<li class="md-nav__item">
|
|
1665
|
+
<a href="../models/dcim/interface.html" class="md-nav__link">
|
|
1666
|
+
Interface
|
|
1667
|
+
</a>
|
|
1668
|
+
</li>
|
|
1669
|
+
|
|
1670
|
+
|
|
1671
|
+
|
|
1672
|
+
|
|
1673
|
+
|
|
1674
|
+
|
|
1675
|
+
|
|
1676
|
+
|
|
1677
|
+
|
|
1678
|
+
<li class="md-nav__item">
|
|
1679
|
+
<a href="../models/dcim/interfacetemplate.html" class="md-nav__link">
|
|
1680
|
+
Interface Template
|
|
1681
|
+
</a>
|
|
1682
|
+
</li>
|
|
1683
|
+
|
|
1684
|
+
|
|
1685
|
+
|
|
1686
|
+
|
|
1687
|
+
|
|
1688
|
+
|
|
1689
|
+
|
|
1690
|
+
|
|
1691
|
+
|
|
1692
|
+
<li class="md-nav__item">
|
|
1693
|
+
<a href="../models/dcim/inventoryitem.html" class="md-nav__link">
|
|
1694
|
+
Inventory Item
|
|
1695
|
+
</a>
|
|
1696
|
+
</li>
|
|
1697
|
+
|
|
1698
|
+
|
|
1699
|
+
|
|
1700
|
+
|
|
1701
|
+
|
|
1702
|
+
|
|
1703
|
+
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
<li class="md-nav__item">
|
|
1707
|
+
<a href="../models/dcim/location.html" class="md-nav__link">
|
|
1708
|
+
Location
|
|
1709
|
+
</a>
|
|
1710
|
+
</li>
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
|
|
1717
|
+
|
|
1718
|
+
|
|
1719
|
+
|
|
1720
|
+
<li class="md-nav__item">
|
|
1721
|
+
<a href="../models/dcim/locationtype.html" class="md-nav__link">
|
|
1722
|
+
Location Type
|
|
1723
|
+
</a>
|
|
1724
|
+
</li>
|
|
1725
|
+
|
|
1726
|
+
|
|
1727
|
+
|
|
1728
|
+
|
|
1729
|
+
|
|
1730
|
+
|
|
1731
|
+
|
|
1732
|
+
|
|
1733
|
+
|
|
1734
|
+
<li class="md-nav__item">
|
|
1735
|
+
<a href="../models/dcim/manufacturer.html" class="md-nav__link">
|
|
1736
|
+
Manufacturer
|
|
1737
|
+
</a>
|
|
1738
|
+
</li>
|
|
1739
|
+
|
|
1740
|
+
|
|
1741
|
+
|
|
1742
|
+
|
|
1743
|
+
|
|
1744
|
+
|
|
1745
|
+
|
|
1746
|
+
|
|
1747
|
+
|
|
1748
|
+
<li class="md-nav__item">
|
|
1749
|
+
<a href="../models/dcim/platform.html" class="md-nav__link">
|
|
1750
|
+
Platform
|
|
1751
|
+
</a>
|
|
1752
|
+
</li>
|
|
1753
|
+
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
|
|
1757
|
+
|
|
1758
|
+
|
|
1759
|
+
|
|
1760
|
+
|
|
1761
|
+
|
|
1762
|
+
<li class="md-nav__item">
|
|
1763
|
+
<a href="../models/dcim/powerfeed.html" class="md-nav__link">
|
|
1764
|
+
Power Feed
|
|
1765
|
+
</a>
|
|
1766
|
+
</li>
|
|
1767
|
+
|
|
1768
|
+
|
|
1769
|
+
|
|
1770
|
+
|
|
1771
|
+
|
|
1772
|
+
|
|
1773
|
+
|
|
1774
|
+
|
|
1775
|
+
|
|
1776
|
+
<li class="md-nav__item">
|
|
1777
|
+
<a href="../models/dcim/poweroutlet.html" class="md-nav__link">
|
|
1778
|
+
Power Outlet
|
|
1779
|
+
</a>
|
|
1780
|
+
</li>
|
|
1781
|
+
|
|
1782
|
+
|
|
1783
|
+
|
|
1784
|
+
|
|
1785
|
+
|
|
1786
|
+
|
|
1787
|
+
|
|
1788
|
+
|
|
1789
|
+
|
|
1790
|
+
<li class="md-nav__item">
|
|
1791
|
+
<a href="../models/dcim/poweroutlettemplate.html" class="md-nav__link">
|
|
1792
|
+
Power Outlet Template
|
|
1793
|
+
</a>
|
|
1794
|
+
</li>
|
|
1795
|
+
|
|
1796
|
+
|
|
1797
|
+
|
|
1798
|
+
|
|
1799
|
+
|
|
1800
|
+
|
|
1801
|
+
|
|
1802
|
+
|
|
1803
|
+
|
|
1804
|
+
<li class="md-nav__item">
|
|
1805
|
+
<a href="../models/dcim/powerpanel.html" class="md-nav__link">
|
|
1806
|
+
Power Panel
|
|
1807
|
+
</a>
|
|
1808
|
+
</li>
|
|
1809
|
+
|
|
1810
|
+
|
|
1811
|
+
|
|
1812
|
+
|
|
1813
|
+
|
|
1814
|
+
|
|
1815
|
+
|
|
1816
|
+
|
|
1817
|
+
|
|
1818
|
+
<li class="md-nav__item">
|
|
1819
|
+
<a href="../models/dcim/powerport.html" class="md-nav__link">
|
|
1820
|
+
Power Port
|
|
1821
|
+
</a>
|
|
1822
|
+
</li>
|
|
1823
|
+
|
|
1824
|
+
|
|
1825
|
+
|
|
1826
|
+
|
|
1827
|
+
|
|
1828
|
+
|
|
1829
|
+
|
|
1830
|
+
|
|
1831
|
+
|
|
1832
|
+
<li class="md-nav__item">
|
|
1833
|
+
<a href="../models/dcim/powerporttemplate.html" class="md-nav__link">
|
|
1834
|
+
Power Port Template
|
|
1835
|
+
</a>
|
|
1836
|
+
</li>
|
|
1837
|
+
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
|
|
1841
|
+
|
|
1842
|
+
|
|
1843
|
+
|
|
1844
|
+
|
|
1845
|
+
|
|
1846
|
+
<li class="md-nav__item">
|
|
1847
|
+
<a href="../models/dcim/rack.html" class="md-nav__link">
|
|
1848
|
+
Rack
|
|
1849
|
+
</a>
|
|
1850
|
+
</li>
|
|
1851
|
+
|
|
1852
|
+
|
|
1853
|
+
|
|
1854
|
+
|
|
1855
|
+
|
|
1856
|
+
|
|
1857
|
+
|
|
1858
|
+
|
|
1859
|
+
|
|
1860
|
+
<li class="md-nav__item">
|
|
1861
|
+
<a href="../models/dcim/rackgroup.html" class="md-nav__link">
|
|
1862
|
+
Rack Group
|
|
1863
|
+
</a>
|
|
1864
|
+
</li>
|
|
1865
|
+
|
|
1866
|
+
|
|
1867
|
+
|
|
1868
|
+
|
|
1869
|
+
|
|
1870
|
+
|
|
1871
|
+
|
|
1872
|
+
|
|
1873
|
+
|
|
1874
|
+
<li class="md-nav__item">
|
|
1875
|
+
<a href="../models/dcim/rackreservation.html" class="md-nav__link">
|
|
1876
|
+
Rack Reservation
|
|
1877
|
+
</a>
|
|
1878
|
+
</li>
|
|
1879
|
+
|
|
1880
|
+
|
|
1881
|
+
|
|
1882
|
+
|
|
1883
|
+
|
|
1884
|
+
|
|
1885
|
+
|
|
1886
|
+
|
|
1887
|
+
|
|
1888
|
+
<li class="md-nav__item">
|
|
1889
|
+
<a href="../models/dcim/rearport.html" class="md-nav__link">
|
|
1890
|
+
Rear Port
|
|
1891
|
+
</a>
|
|
1892
|
+
</li>
|
|
1893
|
+
|
|
1894
|
+
|
|
1895
|
+
|
|
1896
|
+
|
|
1897
|
+
|
|
1898
|
+
|
|
1899
|
+
|
|
1900
|
+
|
|
1901
|
+
|
|
1902
|
+
<li class="md-nav__item">
|
|
1903
|
+
<a href="../models/dcim/rearporttemplate.html" class="md-nav__link">
|
|
1904
|
+
Rear Port Template
|
|
1905
|
+
</a>
|
|
1906
|
+
</li>
|
|
1907
|
+
|
|
1908
|
+
|
|
1909
|
+
|
|
1910
|
+
|
|
1911
|
+
|
|
1912
|
+
|
|
1913
|
+
|
|
1914
|
+
|
|
1915
|
+
|
|
1916
|
+
<li class="md-nav__item">
|
|
1917
|
+
<a href="../models/dcim/virtualchassis.html" class="md-nav__link">
|
|
1918
|
+
Virtual Chassis
|
|
1919
|
+
</a>
|
|
1920
|
+
</li>
|
|
1921
|
+
|
|
1922
|
+
|
|
1923
|
+
|
|
1924
|
+
|
|
1925
|
+
</ul>
|
|
1926
|
+
</nav>
|
|
1927
|
+
</li>
|
|
1928
|
+
|
|
1929
|
+
|
|
1930
|
+
|
|
1931
|
+
|
|
1932
|
+
|
|
1933
|
+
|
|
1934
|
+
|
|
1935
|
+
|
|
1936
|
+
|
|
1937
|
+
|
|
1938
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1939
|
+
|
|
1940
|
+
|
|
1941
|
+
|
|
1942
|
+
|
|
1943
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_3" >
|
|
1944
|
+
|
|
1945
|
+
|
|
1946
|
+
|
|
1947
|
+
<label class="md-nav__link" for="__nav_2_8_3" id="__nav_2_8_3_label" tabindex="0">
|
|
1948
|
+
Extras
|
|
1949
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1950
|
+
</label>
|
|
1951
|
+
|
|
1952
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_3_label" aria-expanded="false">
|
|
1953
|
+
<label class="md-nav__title" for="__nav_2_8_3">
|
|
1954
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1955
|
+
Extras
|
|
1956
|
+
</label>
|
|
1957
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1958
|
+
|
|
1959
|
+
|
|
1960
|
+
|
|
1961
|
+
|
|
1962
|
+
|
|
1963
|
+
|
|
1964
|
+
<li class="md-nav__item">
|
|
1965
|
+
<a href="../models/extras/configcontext.html" class="md-nav__link">
|
|
1966
|
+
Config Context
|
|
1967
|
+
</a>
|
|
1968
|
+
</li>
|
|
1969
|
+
|
|
1970
|
+
|
|
1971
|
+
|
|
1972
|
+
|
|
1973
|
+
|
|
1974
|
+
|
|
1975
|
+
|
|
1976
|
+
|
|
1977
|
+
|
|
1978
|
+
<li class="md-nav__item">
|
|
1979
|
+
<a href="../models/extras/configcontextschema.html" class="md-nav__link">
|
|
1980
|
+
Config Context Schema
|
|
1981
|
+
</a>
|
|
1982
|
+
</li>
|
|
1983
|
+
|
|
1984
|
+
|
|
1985
|
+
|
|
1986
|
+
|
|
1987
|
+
|
|
1988
|
+
|
|
1989
|
+
|
|
1990
|
+
|
|
1991
|
+
|
|
1992
|
+
<li class="md-nav__item">
|
|
1993
|
+
<a href="../models/extras/graphqlquery.html" class="md-nav__link">
|
|
1994
|
+
GraphQL Query
|
|
1995
|
+
</a>
|
|
1996
|
+
</li>
|
|
1997
|
+
|
|
1998
|
+
|
|
1999
|
+
|
|
2000
|
+
|
|
2001
|
+
|
|
2002
|
+
|
|
2003
|
+
|
|
2004
|
+
|
|
2005
|
+
|
|
2006
|
+
<li class="md-nav__item">
|
|
2007
|
+
<a href="../models/extras/imageattachment.html" class="md-nav__link">
|
|
2008
|
+
Image Attachment
|
|
2009
|
+
</a>
|
|
2010
|
+
</li>
|
|
2011
|
+
|
|
2012
|
+
|
|
2013
|
+
|
|
2014
|
+
|
|
2015
|
+
|
|
2016
|
+
|
|
2017
|
+
|
|
2018
|
+
|
|
2019
|
+
|
|
2020
|
+
<li class="md-nav__item">
|
|
2021
|
+
<a href="../models/extras/job.html" class="md-nav__link">
|
|
2022
|
+
Job
|
|
2023
|
+
</a>
|
|
2024
|
+
</li>
|
|
2025
|
+
|
|
2026
|
+
|
|
2027
|
+
|
|
2028
|
+
|
|
2029
|
+
|
|
2030
|
+
|
|
2031
|
+
|
|
2032
|
+
|
|
2033
|
+
|
|
2034
|
+
<li class="md-nav__item">
|
|
2035
|
+
<a href="../models/extras/joblogentry.html" class="md-nav__link">
|
|
2036
|
+
Job Log Entry
|
|
2037
|
+
</a>
|
|
2038
|
+
</li>
|
|
2039
|
+
|
|
2040
|
+
|
|
2041
|
+
|
|
2042
|
+
|
|
2043
|
+
|
|
2044
|
+
|
|
2045
|
+
|
|
2046
|
+
|
|
2047
|
+
|
|
2048
|
+
<li class="md-nav__item">
|
|
2049
|
+
<a href="../models/extras/jobresult.html" class="md-nav__link">
|
|
2050
|
+
Job Result
|
|
2051
|
+
</a>
|
|
2052
|
+
</li>
|
|
2053
|
+
|
|
2054
|
+
|
|
2055
|
+
|
|
2056
|
+
|
|
2057
|
+
|
|
2058
|
+
|
|
2059
|
+
|
|
2060
|
+
|
|
2061
|
+
|
|
2062
|
+
<li class="md-nav__item">
|
|
2063
|
+
<a href="../models/extras/role.html" class="md-nav__link">
|
|
2064
|
+
Role
|
|
2065
|
+
</a>
|
|
2066
|
+
</li>
|
|
2067
|
+
|
|
2068
|
+
|
|
2069
|
+
|
|
2070
|
+
|
|
2071
|
+
|
|
2072
|
+
|
|
2073
|
+
|
|
2074
|
+
|
|
2075
|
+
|
|
2076
|
+
<li class="md-nav__item">
|
|
2077
|
+
<a href="../models/extras/secret.html" class="md-nav__link">
|
|
2078
|
+
Secret
|
|
2079
|
+
</a>
|
|
2080
|
+
</li>
|
|
2081
|
+
|
|
2082
|
+
|
|
2083
|
+
|
|
2084
|
+
|
|
2085
|
+
|
|
2086
|
+
|
|
2087
|
+
|
|
2088
|
+
|
|
2089
|
+
|
|
2090
|
+
<li class="md-nav__item">
|
|
2091
|
+
<a href="../models/extras/secretsgroup.html" class="md-nav__link">
|
|
2092
|
+
Secrets group
|
|
2093
|
+
</a>
|
|
2094
|
+
</li>
|
|
2095
|
+
|
|
2096
|
+
|
|
2097
|
+
|
|
2098
|
+
|
|
2099
|
+
</ul>
|
|
2100
|
+
</nav>
|
|
2101
|
+
</li>
|
|
2102
|
+
|
|
2103
|
+
|
|
2104
|
+
|
|
2105
|
+
|
|
2106
|
+
|
|
2107
|
+
|
|
2108
|
+
|
|
2109
|
+
|
|
2110
|
+
|
|
2111
|
+
|
|
2112
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
2113
|
+
|
|
2114
|
+
|
|
2115
|
+
|
|
2116
|
+
|
|
2117
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_4" >
|
|
2118
|
+
|
|
2119
|
+
|
|
2120
|
+
|
|
2121
|
+
<label class="md-nav__link" for="__nav_2_8_4" id="__nav_2_8_4_label" tabindex="0">
|
|
2122
|
+
IPAM
|
|
2123
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2124
|
+
</label>
|
|
2125
|
+
|
|
2126
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_4_label" aria-expanded="false">
|
|
2127
|
+
<label class="md-nav__title" for="__nav_2_8_4">
|
|
2128
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2129
|
+
IPAM
|
|
2130
|
+
</label>
|
|
2131
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
2132
|
+
|
|
2133
|
+
|
|
2134
|
+
|
|
2135
|
+
|
|
2136
|
+
|
|
2137
|
+
|
|
2138
|
+
<li class="md-nav__item">
|
|
2139
|
+
<a href="../models/ipam/ipaddress.html" class="md-nav__link">
|
|
2140
|
+
IP Address
|
|
2141
|
+
</a>
|
|
2142
|
+
</li>
|
|
2143
|
+
|
|
2144
|
+
|
|
2145
|
+
|
|
2146
|
+
|
|
2147
|
+
|
|
2148
|
+
|
|
2149
|
+
|
|
2150
|
+
|
|
2151
|
+
|
|
2152
|
+
<li class="md-nav__item">
|
|
2153
|
+
<a href="../models/ipam/prefix.html" class="md-nav__link">
|
|
2154
|
+
Prefix
|
|
2155
|
+
</a>
|
|
2156
|
+
</li>
|
|
2157
|
+
|
|
2158
|
+
|
|
2159
|
+
|
|
2160
|
+
|
|
2161
|
+
|
|
2162
|
+
|
|
2163
|
+
|
|
2164
|
+
|
|
2165
|
+
|
|
2166
|
+
<li class="md-nav__item">
|
|
2167
|
+
<a href="../models/ipam/rir.html" class="md-nav__link">
|
|
2168
|
+
Rir
|
|
2169
|
+
</a>
|
|
2170
|
+
</li>
|
|
2171
|
+
|
|
2172
|
+
|
|
2173
|
+
|
|
2174
|
+
|
|
2175
|
+
|
|
2176
|
+
|
|
2177
|
+
|
|
2178
|
+
|
|
2179
|
+
|
|
2180
|
+
<li class="md-nav__item">
|
|
2181
|
+
<a href="../models/ipam/routetarget.html" class="md-nav__link">
|
|
2182
|
+
Route Target
|
|
2183
|
+
</a>
|
|
2184
|
+
</li>
|
|
2185
|
+
|
|
2186
|
+
|
|
2187
|
+
|
|
2188
|
+
|
|
2189
|
+
|
|
2190
|
+
|
|
2191
|
+
|
|
2192
|
+
|
|
2193
|
+
|
|
2194
|
+
<li class="md-nav__item">
|
|
2195
|
+
<a href="../models/ipam/service.html" class="md-nav__link">
|
|
2196
|
+
Service
|
|
2197
|
+
</a>
|
|
2198
|
+
</li>
|
|
2199
|
+
|
|
2200
|
+
|
|
2201
|
+
|
|
2202
|
+
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
|
|
2206
|
+
|
|
2207
|
+
|
|
2208
|
+
<li class="md-nav__item">
|
|
2209
|
+
<a href="../models/ipam/vlan.html" class="md-nav__link">
|
|
2210
|
+
VLAN
|
|
2211
|
+
</a>
|
|
2212
|
+
</li>
|
|
2213
|
+
|
|
2214
|
+
|
|
2215
|
+
|
|
2216
|
+
|
|
2217
|
+
|
|
2218
|
+
|
|
2219
|
+
|
|
2220
|
+
|
|
2221
|
+
|
|
2222
|
+
<li class="md-nav__item">
|
|
2223
|
+
<a href="../models/ipam/vlangroup.html" class="md-nav__link">
|
|
2224
|
+
VLAN Group
|
|
2225
|
+
</a>
|
|
2226
|
+
</li>
|
|
2227
|
+
|
|
2228
|
+
|
|
2229
|
+
|
|
2230
|
+
|
|
2231
|
+
|
|
2232
|
+
|
|
2233
|
+
|
|
2234
|
+
|
|
2235
|
+
|
|
2236
|
+
<li class="md-nav__item">
|
|
2237
|
+
<a href="../models/ipam/vrf.html" class="md-nav__link">
|
|
2238
|
+
VRF
|
|
2239
|
+
</a>
|
|
2240
|
+
</li>
|
|
2241
|
+
|
|
2242
|
+
|
|
2243
|
+
|
|
2244
|
+
|
|
2245
|
+
</ul>
|
|
2246
|
+
</nav>
|
|
2247
|
+
</li>
|
|
2248
|
+
|
|
2249
|
+
|
|
2250
|
+
|
|
2251
|
+
|
|
2252
|
+
|
|
2253
|
+
|
|
2254
|
+
|
|
2255
|
+
|
|
2256
|
+
|
|
2257
|
+
|
|
2258
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
2259
|
+
|
|
2260
|
+
|
|
2261
|
+
|
|
2262
|
+
|
|
2263
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_5" >
|
|
2264
|
+
|
|
2265
|
+
|
|
2266
|
+
|
|
2267
|
+
<label class="md-nav__link" for="__nav_2_8_5" id="__nav_2_8_5_label" tabindex="0">
|
|
2268
|
+
Tenancy
|
|
2269
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2270
|
+
</label>
|
|
2271
|
+
|
|
2272
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_5_label" aria-expanded="false">
|
|
2273
|
+
<label class="md-nav__title" for="__nav_2_8_5">
|
|
2274
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2275
|
+
Tenancy
|
|
2276
|
+
</label>
|
|
2277
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
2278
|
+
|
|
2279
|
+
|
|
2280
|
+
|
|
2281
|
+
|
|
2282
|
+
|
|
2283
|
+
|
|
2284
|
+
<li class="md-nav__item">
|
|
2285
|
+
<a href="../models/tenancy/tenant.html" class="md-nav__link">
|
|
2286
|
+
Tenant
|
|
2287
|
+
</a>
|
|
2288
|
+
</li>
|
|
2289
|
+
|
|
2290
|
+
|
|
2291
|
+
|
|
2292
|
+
|
|
2293
|
+
|
|
2294
|
+
|
|
2295
|
+
|
|
2296
|
+
|
|
2297
|
+
|
|
2298
|
+
<li class="md-nav__item">
|
|
2299
|
+
<a href="../models/tenancy/tenantgroup.html" class="md-nav__link">
|
|
2300
|
+
Tenant Group
|
|
2301
|
+
</a>
|
|
2302
|
+
</li>
|
|
2303
|
+
|
|
2304
|
+
|
|
2305
|
+
|
|
2306
|
+
|
|
2307
|
+
</ul>
|
|
2308
|
+
</nav>
|
|
2309
|
+
</li>
|
|
2310
|
+
|
|
2311
|
+
|
|
2312
|
+
|
|
2313
|
+
|
|
2314
|
+
|
|
2315
|
+
|
|
2316
|
+
|
|
2317
|
+
|
|
2318
|
+
|
|
2319
|
+
|
|
2320
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
2321
|
+
|
|
2322
|
+
|
|
2323
|
+
|
|
2324
|
+
|
|
2325
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_6" >
|
|
2326
|
+
|
|
2327
|
+
|
|
2328
|
+
|
|
2329
|
+
<label class="md-nav__link" for="__nav_2_8_6" id="__nav_2_8_6_label" tabindex="0">
|
|
2330
|
+
Users
|
|
2331
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2332
|
+
</label>
|
|
2333
|
+
|
|
2334
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_6_label" aria-expanded="false">
|
|
2335
|
+
<label class="md-nav__title" for="__nav_2_8_6">
|
|
2336
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2337
|
+
Users
|
|
2338
|
+
</label>
|
|
2339
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
2340
|
+
|
|
2341
|
+
|
|
2342
|
+
|
|
2343
|
+
|
|
2344
|
+
|
|
2345
|
+
|
|
2346
|
+
<li class="md-nav__item">
|
|
2347
|
+
<a href="../models/users/objectpermission.html" class="md-nav__link">
|
|
2348
|
+
Object Permission
|
|
2349
|
+
</a>
|
|
2350
|
+
</li>
|
|
2351
|
+
|
|
2352
|
+
|
|
2353
|
+
|
|
2354
|
+
|
|
2355
|
+
|
|
2356
|
+
|
|
2357
|
+
|
|
2358
|
+
|
|
2359
|
+
|
|
2360
|
+
<li class="md-nav__item">
|
|
2361
|
+
<a href="../models/users/token.html" class="md-nav__link">
|
|
2362
|
+
Token
|
|
2363
|
+
</a>
|
|
2364
|
+
</li>
|
|
2365
|
+
|
|
2366
|
+
|
|
2367
|
+
|
|
2368
|
+
|
|
2369
|
+
</ul>
|
|
2370
|
+
</nav>
|
|
2371
|
+
</li>
|
|
2372
|
+
|
|
2373
|
+
|
|
2374
|
+
|
|
2375
|
+
|
|
2376
|
+
|
|
2377
|
+
|
|
2378
|
+
|
|
2379
|
+
|
|
2380
|
+
|
|
2381
|
+
|
|
2382
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
2383
|
+
|
|
2384
|
+
|
|
2385
|
+
|
|
2386
|
+
|
|
2387
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_7" >
|
|
2388
|
+
|
|
2389
|
+
|
|
2390
|
+
|
|
2391
|
+
<label class="md-nav__link" for="__nav_2_8_7" id="__nav_2_8_7_label" tabindex="0">
|
|
2392
|
+
Virtualization
|
|
2393
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2394
|
+
</label>
|
|
2395
|
+
|
|
2396
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_7_label" aria-expanded="false">
|
|
2397
|
+
<label class="md-nav__title" for="__nav_2_8_7">
|
|
2398
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2399
|
+
Virtualization
|
|
2400
|
+
</label>
|
|
2401
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
2402
|
+
|
|
2403
|
+
|
|
2404
|
+
|
|
2405
|
+
|
|
2406
|
+
|
|
2407
|
+
|
|
2408
|
+
<li class="md-nav__item">
|
|
2409
|
+
<a href="../models/virtualization/cluster.html" class="md-nav__link">
|
|
2410
|
+
Cluster
|
|
2411
|
+
</a>
|
|
2412
|
+
</li>
|
|
2413
|
+
|
|
2414
|
+
|
|
2415
|
+
|
|
2416
|
+
|
|
2417
|
+
|
|
2418
|
+
|
|
2419
|
+
|
|
2420
|
+
|
|
2421
|
+
|
|
2422
|
+
<li class="md-nav__item">
|
|
2423
|
+
<a href="../models/virtualization/clustergroup.html" class="md-nav__link">
|
|
2424
|
+
Cluster Group
|
|
2425
|
+
</a>
|
|
2426
|
+
</li>
|
|
2427
|
+
|
|
2428
|
+
|
|
2429
|
+
|
|
2430
|
+
|
|
2431
|
+
|
|
2432
|
+
|
|
2433
|
+
|
|
2434
|
+
|
|
2435
|
+
|
|
2436
|
+
<li class="md-nav__item">
|
|
2437
|
+
<a href="../models/virtualization/clustertype.html" class="md-nav__link">
|
|
2438
|
+
Cluster Type
|
|
2439
|
+
</a>
|
|
2440
|
+
</li>
|
|
2441
|
+
|
|
2442
|
+
|
|
2443
|
+
|
|
2444
|
+
|
|
2445
|
+
|
|
2446
|
+
|
|
2447
|
+
|
|
2448
|
+
|
|
2449
|
+
|
|
2450
|
+
<li class="md-nav__item">
|
|
2451
|
+
<a href="../models/virtualization/virtualmachine.html" class="md-nav__link">
|
|
2452
|
+
Virtual Machine
|
|
2453
|
+
</a>
|
|
2454
|
+
</li>
|
|
2455
|
+
|
|
2456
|
+
|
|
2457
|
+
|
|
2458
|
+
|
|
2459
|
+
|
|
2460
|
+
|
|
2461
|
+
|
|
2462
|
+
|
|
2463
|
+
|
|
2464
|
+
<li class="md-nav__item">
|
|
2465
|
+
<a href="../models/virtualization/vminterface.html" class="md-nav__link">
|
|
2466
|
+
VM Interface
|
|
2467
|
+
</a>
|
|
2468
|
+
</li>
|
|
2469
|
+
|
|
2470
|
+
|
|
2471
|
+
|
|
2472
|
+
|
|
2473
|
+
</ul>
|
|
2474
|
+
</nav>
|
|
2475
|
+
</li>
|
|
2476
|
+
|
|
2477
|
+
|
|
2478
|
+
|
|
2479
|
+
|
|
2480
|
+
</ul>
|
|
2481
|
+
</nav>
|
|
2482
|
+
</li>
|
|
2483
|
+
|
|
2484
|
+
|
|
2485
|
+
|
|
2486
|
+
|
|
2487
|
+
|
|
2488
|
+
|
|
2489
|
+
|
|
2490
|
+
|
|
2491
|
+
|
|
2492
|
+
|
|
2493
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
2494
|
+
|
|
2495
|
+
|
|
2496
|
+
|
|
2497
|
+
|
|
2498
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_9" >
|
|
2499
|
+
|
|
2500
|
+
|
|
2501
|
+
|
|
2502
|
+
<label class="md-nav__link" for="__nav_2_9" id="__nav_2_9_label" tabindex="0">
|
|
1349
2503
|
Additional Features
|
|
1350
2504
|
<span class="md-nav__icon md-icon"></span>
|
|
1351
2505
|
</label>
|
|
1352
2506
|
|
|
1353
|
-
<nav class="md-nav" data-md-level="2" aria-labelledby="
|
|
1354
|
-
<label class="md-nav__title" for="
|
|
2507
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_9_label" aria-expanded="false">
|
|
2508
|
+
<label class="md-nav__title" for="__nav_2_9">
|
|
1355
2509
|
<span class="md-nav__icon md-icon"></span>
|
|
1356
2510
|
Additional Features
|
|
1357
2511
|
</label>
|
|
@@ -1683,17 +2837,17 @@
|
|
|
1683
2837
|
|
|
1684
2838
|
|
|
1685
2839
|
|
|
1686
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
2840
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_10" >
|
|
1687
2841
|
|
|
1688
2842
|
|
|
1689
2843
|
|
|
1690
|
-
<label class="md-nav__link" for="
|
|
2844
|
+
<label class="md-nav__link" for="__nav_2_10" id="__nav_2_10_label" tabindex="0">
|
|
1691
2845
|
REST API
|
|
1692
2846
|
<span class="md-nav__icon md-icon"></span>
|
|
1693
2847
|
</label>
|
|
1694
2848
|
|
|
1695
|
-
<nav class="md-nav" data-md-level="2" aria-labelledby="
|
|
1696
|
-
<label class="md-nav__title" for="
|
|
2849
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_10_label" aria-expanded="false">
|
|
2850
|
+
<label class="md-nav__title" for="__nav_2_10">
|
|
1697
2851
|
<span class="md-nav__icon md-icon"></span>
|
|
1698
2852
|
REST API
|
|
1699
2853
|
</label>
|
|
@@ -1741,6 +2895,20 @@
|
|
|
1741
2895
|
|
|
1742
2896
|
|
|
1743
2897
|
|
|
2898
|
+
|
|
2899
|
+
|
|
2900
|
+
|
|
2901
|
+
|
|
2902
|
+
|
|
2903
|
+
<li class="md-nav__item">
|
|
2904
|
+
<a href="../rest-api/ui-related-endpoints.html" class="md-nav__link">
|
|
2905
|
+
UI Endpoints
|
|
2906
|
+
</a>
|
|
2907
|
+
</li>
|
|
2908
|
+
|
|
2909
|
+
|
|
2910
|
+
|
|
2911
|
+
|
|
1744
2912
|
</ul>
|
|
1745
2913
|
</nav>
|
|
1746
2914
|
</li>
|
|
@@ -1759,17 +2927,17 @@
|
|
|
1759
2927
|
|
|
1760
2928
|
|
|
1761
2929
|
|
|
1762
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
2930
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_11" >
|
|
1763
2931
|
|
|
1764
2932
|
|
|
1765
2933
|
|
|
1766
|
-
<label class="md-nav__link" for="
|
|
2934
|
+
<label class="md-nav__link" for="__nav_2_11" id="__nav_2_11_label" tabindex="0">
|
|
1767
2935
|
GraphQL API
|
|
1768
2936
|
<span class="md-nav__icon md-icon"></span>
|
|
1769
2937
|
</label>
|
|
1770
2938
|
|
|
1771
|
-
<nav class="md-nav" data-md-level="2" aria-labelledby="
|
|
1772
|
-
<label class="md-nav__title" for="
|
|
2939
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_11_label" aria-expanded="false">
|
|
2940
|
+
<label class="md-nav__title" for="__nav_2_11">
|
|
1773
2941
|
<span class="md-nav__icon md-icon"></span>
|
|
1774
2942
|
GraphQL API
|
|
1775
2943
|
</label>
|
|
@@ -2465,54 +3633,141 @@
|
|
|
2465
3633
|
Added
|
|
2466
3634
|
</a>
|
|
2467
3635
|
|
|
2468
|
-
<nav class="md-nav" aria-label="Added">
|
|
2469
|
-
<ul class="md-nav__list">
|
|
3636
|
+
<nav class="md-nav" aria-label="Added">
|
|
3637
|
+
<ul class="md-nav__list">
|
|
3638
|
+
|
|
3639
|
+
<li class="md-nav__item">
|
|
3640
|
+
<a href="#added-nautobot-server-generate_test_data-command-2536" class="md-nav__link">
|
|
3641
|
+
Added nautobot-server generate_test_data command (#2536)
|
|
3642
|
+
</a>
|
|
3643
|
+
|
|
3644
|
+
</li>
|
|
3645
|
+
|
|
3646
|
+
<li class="md-nav__item">
|
|
3647
|
+
<a href="#custom-field-grouping-899" class="md-nav__link">
|
|
3648
|
+
Custom Field Grouping (#899)
|
|
3649
|
+
</a>
|
|
3650
|
+
|
|
3651
|
+
</li>
|
|
3652
|
+
|
|
3653
|
+
<li class="md-nav__item">
|
|
3654
|
+
<a href="#custom-celery-task-queues-2421" class="md-nav__link">
|
|
3655
|
+
Custom Celery Task Queues (#2421)
|
|
3656
|
+
</a>
|
|
3657
|
+
|
|
3658
|
+
</li>
|
|
3659
|
+
|
|
3660
|
+
<li class="md-nav__item">
|
|
3661
|
+
<a href="#device-redundancy-groups-1892" class="md-nav__link">
|
|
3662
|
+
Device Redundancy Groups (#1892)
|
|
3663
|
+
</a>
|
|
3664
|
+
|
|
3665
|
+
</li>
|
|
3666
|
+
|
|
3667
|
+
<li class="md-nav__item">
|
|
3668
|
+
<a href="#nautobot-apps-api-2723" class="md-nav__link">
|
|
3669
|
+
Nautobot Apps API (#2723)
|
|
3670
|
+
</a>
|
|
3671
|
+
|
|
3672
|
+
</li>
|
|
3673
|
+
|
|
3674
|
+
<li class="md-nav__item">
|
|
3675
|
+
<a href="#nestable-locationtypes-2608" class="md-nav__link">
|
|
3676
|
+
Nestable LocationTypes (#2608)
|
|
3677
|
+
</a>
|
|
3678
|
+
|
|
3679
|
+
</li>
|
|
3680
|
+
|
|
3681
|
+
<li class="md-nav__item">
|
|
3682
|
+
<a href="#required-relationships-873" class="md-nav__link">
|
|
3683
|
+
Required Relationships (#873)
|
|
3684
|
+
</a>
|
|
3685
|
+
|
|
3686
|
+
</li>
|
|
3687
|
+
|
|
3688
|
+
</ul>
|
|
3689
|
+
</nav>
|
|
3690
|
+
|
|
3691
|
+
</li>
|
|
3692
|
+
|
|
3693
|
+
<li class="md-nav__item">
|
|
3694
|
+
<a href="#changed" class="md-nav__link">
|
|
3695
|
+
Changed
|
|
3696
|
+
</a>
|
|
3697
|
+
|
|
3698
|
+
<nav class="md-nav" aria-label="Changed">
|
|
3699
|
+
<ul class="md-nav__list">
|
|
3700
|
+
|
|
3701
|
+
<li class="md-nav__item">
|
|
3702
|
+
<a href="#database-query-caching-is-now-disabled-by-default-1721" class="md-nav__link">
|
|
3703
|
+
Database Query Caching is now Disabled by Default (#1721)
|
|
3704
|
+
</a>
|
|
3705
|
+
|
|
3706
|
+
</li>
|
|
2470
3707
|
|
|
2471
3708
|
<li class="md-nav__item">
|
|
2472
|
-
<a href="#
|
|
2473
|
-
|
|
3709
|
+
<a href="#deprecation-warnings-silenced-by-default-2798" class="md-nav__link">
|
|
3710
|
+
Deprecation Warnings Silenced by Default (#2798)
|
|
2474
3711
|
</a>
|
|
2475
3712
|
|
|
2476
3713
|
</li>
|
|
2477
3714
|
|
|
2478
3715
|
<li class="md-nav__item">
|
|
2479
|
-
<a href="#
|
|
2480
|
-
|
|
3716
|
+
<a href="#redesigned-list-filtering-ui-1998" class="md-nav__link">
|
|
3717
|
+
Redesigned List Filtering UI (#1998)
|
|
2481
3718
|
</a>
|
|
2482
3719
|
|
|
2483
3720
|
</li>
|
|
2484
3721
|
|
|
2485
3722
|
<li class="md-nav__item">
|
|
2486
|
-
<a href="#
|
|
2487
|
-
|
|
3723
|
+
<a href="#renamed-mixin-classes-2779" class="md-nav__link">
|
|
3724
|
+
Renamed Mixin Classes (#2779)
|
|
2488
3725
|
</a>
|
|
2489
3726
|
|
|
2490
3727
|
</li>
|
|
2491
3728
|
|
|
3729
|
+
</ul>
|
|
3730
|
+
</nav>
|
|
3731
|
+
|
|
3732
|
+
</li>
|
|
3733
|
+
|
|
3734
|
+
</ul>
|
|
3735
|
+
</nav>
|
|
3736
|
+
|
|
3737
|
+
</li>
|
|
3738
|
+
|
|
3739
|
+
<li class="md-nav__item">
|
|
3740
|
+
<a href="#v1518-2023-05-01" class="md-nav__link">
|
|
3741
|
+
v1.5.18 (2023-05-01)
|
|
3742
|
+
</a>
|
|
3743
|
+
|
|
3744
|
+
<nav class="md-nav" aria-label="v1.5.18 (2023-05-01)">
|
|
3745
|
+
<ul class="md-nav__list">
|
|
3746
|
+
|
|
2492
3747
|
<li class="md-nav__item">
|
|
2493
|
-
<a href="#
|
|
2494
|
-
|
|
3748
|
+
<a href="#added_1" class="md-nav__link">
|
|
3749
|
+
Added
|
|
2495
3750
|
</a>
|
|
2496
3751
|
|
|
2497
3752
|
</li>
|
|
2498
3753
|
|
|
2499
3754
|
<li class="md-nav__item">
|
|
2500
|
-
<a href="#
|
|
2501
|
-
|
|
3755
|
+
<a href="#changed_1" class="md-nav__link">
|
|
3756
|
+
Changed
|
|
2502
3757
|
</a>
|
|
2503
3758
|
|
|
2504
3759
|
</li>
|
|
2505
3760
|
|
|
2506
3761
|
<li class="md-nav__item">
|
|
2507
|
-
<a href="#
|
|
2508
|
-
|
|
3762
|
+
<a href="#fixed" class="md-nav__link">
|
|
3763
|
+
Fixed
|
|
2509
3764
|
</a>
|
|
2510
3765
|
|
|
2511
3766
|
</li>
|
|
2512
3767
|
|
|
2513
3768
|
<li class="md-nav__item">
|
|
2514
|
-
<a href="#
|
|
2515
|
-
|
|
3769
|
+
<a href="#security" class="md-nav__link">
|
|
3770
|
+
Security
|
|
2516
3771
|
</a>
|
|
2517
3772
|
|
|
2518
3773
|
</li>
|
|
@@ -2521,39 +3776,39 @@
|
|
|
2521
3776
|
</nav>
|
|
2522
3777
|
|
|
2523
3778
|
</li>
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
<a href="#
|
|
2527
|
-
|
|
3779
|
+
|
|
3780
|
+
<li class="md-nav__item">
|
|
3781
|
+
<a href="#v1517-2023-04-17" class="md-nav__link">
|
|
3782
|
+
v1.5.17 (2023-04-17)
|
|
2528
3783
|
</a>
|
|
2529
3784
|
|
|
2530
|
-
<nav class="md-nav" aria-label="
|
|
3785
|
+
<nav class="md-nav" aria-label="v1.5.17 (2023-04-17)">
|
|
2531
3786
|
<ul class="md-nav__list">
|
|
2532
3787
|
|
|
2533
3788
|
<li class="md-nav__item">
|
|
2534
|
-
<a href="#
|
|
2535
|
-
|
|
3789
|
+
<a href="#added_2" class="md-nav__link">
|
|
3790
|
+
Added
|
|
2536
3791
|
</a>
|
|
2537
3792
|
|
|
2538
3793
|
</li>
|
|
2539
3794
|
|
|
2540
3795
|
<li class="md-nav__item">
|
|
2541
|
-
<a href="#
|
|
2542
|
-
|
|
3796
|
+
<a href="#changed_2" class="md-nav__link">
|
|
3797
|
+
Changed
|
|
2543
3798
|
</a>
|
|
2544
3799
|
|
|
2545
3800
|
</li>
|
|
2546
3801
|
|
|
2547
3802
|
<li class="md-nav__item">
|
|
2548
|
-
<a href="#
|
|
2549
|
-
|
|
3803
|
+
<a href="#dependencies" class="md-nav__link">
|
|
3804
|
+
Dependencies
|
|
2550
3805
|
</a>
|
|
2551
3806
|
|
|
2552
3807
|
</li>
|
|
2553
3808
|
|
|
2554
3809
|
<li class="md-nav__item">
|
|
2555
|
-
<a href="#
|
|
2556
|
-
|
|
3810
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
3811
|
+
Fixed
|
|
2557
3812
|
</a>
|
|
2558
3813
|
|
|
2559
3814
|
</li>
|
|
@@ -2561,11 +3816,6 @@
|
|
|
2561
3816
|
</ul>
|
|
2562
3817
|
</nav>
|
|
2563
3818
|
|
|
2564
|
-
</li>
|
|
2565
|
-
|
|
2566
|
-
</ul>
|
|
2567
|
-
</nav>
|
|
2568
|
-
|
|
2569
3819
|
</li>
|
|
2570
3820
|
|
|
2571
3821
|
<li class="md-nav__item">
|
|
@@ -2577,14 +3827,14 @@
|
|
|
2577
3827
|
<ul class="md-nav__list">
|
|
2578
3828
|
|
|
2579
3829
|
<li class="md-nav__item">
|
|
2580
|
-
<a href="#
|
|
3830
|
+
<a href="#added_3" class="md-nav__link">
|
|
2581
3831
|
Added
|
|
2582
3832
|
</a>
|
|
2583
3833
|
|
|
2584
3834
|
</li>
|
|
2585
3835
|
|
|
2586
3836
|
<li class="md-nav__item">
|
|
2587
|
-
<a href="#
|
|
3837
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
2588
3838
|
Fixed
|
|
2589
3839
|
</a>
|
|
2590
3840
|
|
|
@@ -2604,28 +3854,28 @@
|
|
|
2604
3854
|
<ul class="md-nav__list">
|
|
2605
3855
|
|
|
2606
3856
|
<li class="md-nav__item">
|
|
2607
|
-
<a href="#
|
|
3857
|
+
<a href="#added_4" class="md-nav__link">
|
|
2608
3858
|
Added
|
|
2609
3859
|
</a>
|
|
2610
3860
|
|
|
2611
3861
|
</li>
|
|
2612
3862
|
|
|
2613
3863
|
<li class="md-nav__item">
|
|
2614
|
-
<a href="#
|
|
3864
|
+
<a href="#changed_3" class="md-nav__link">
|
|
2615
3865
|
Changed
|
|
2616
3866
|
</a>
|
|
2617
3867
|
|
|
2618
3868
|
</li>
|
|
2619
3869
|
|
|
2620
3870
|
<li class="md-nav__item">
|
|
2621
|
-
<a href="#
|
|
3871
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
2622
3872
|
Dependencies
|
|
2623
3873
|
</a>
|
|
2624
3874
|
|
|
2625
3875
|
</li>
|
|
2626
3876
|
|
|
2627
3877
|
<li class="md-nav__item">
|
|
2628
|
-
<a href="#
|
|
3878
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
2629
3879
|
Fixed
|
|
2630
3880
|
</a>
|
|
2631
3881
|
|
|
@@ -2639,7 +3889,7 @@
|
|
|
2639
3889
|
</li>
|
|
2640
3890
|
|
|
2641
3891
|
<li class="md-nav__item">
|
|
2642
|
-
<a href="#
|
|
3892
|
+
<a href="#security_1" class="md-nav__link">
|
|
2643
3893
|
Security
|
|
2644
3894
|
</a>
|
|
2645
3895
|
|
|
@@ -2659,21 +3909,21 @@
|
|
|
2659
3909
|
<ul class="md-nav__list">
|
|
2660
3910
|
|
|
2661
3911
|
<li class="md-nav__item">
|
|
2662
|
-
<a href="#
|
|
3912
|
+
<a href="#added_5" class="md-nav__link">
|
|
2663
3913
|
Added
|
|
2664
3914
|
</a>
|
|
2665
3915
|
|
|
2666
3916
|
</li>
|
|
2667
3917
|
|
|
2668
3918
|
<li class="md-nav__item">
|
|
2669
|
-
<a href="#
|
|
3919
|
+
<a href="#changed_4" class="md-nav__link">
|
|
2670
3920
|
Changed
|
|
2671
3921
|
</a>
|
|
2672
3922
|
|
|
2673
3923
|
</li>
|
|
2674
3924
|
|
|
2675
3925
|
<li class="md-nav__item">
|
|
2676
|
-
<a href="#
|
|
3926
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
2677
3927
|
Fixed
|
|
2678
3928
|
</a>
|
|
2679
3929
|
|
|
@@ -2693,28 +3943,28 @@
|
|
|
2693
3943
|
<ul class="md-nav__list">
|
|
2694
3944
|
|
|
2695
3945
|
<li class="md-nav__item">
|
|
2696
|
-
<a href="#
|
|
3946
|
+
<a href="#added_6" class="md-nav__link">
|
|
2697
3947
|
Added
|
|
2698
3948
|
</a>
|
|
2699
3949
|
|
|
2700
3950
|
</li>
|
|
2701
3951
|
|
|
2702
3952
|
<li class="md-nav__item">
|
|
2703
|
-
<a href="#
|
|
3953
|
+
<a href="#changed_5" class="md-nav__link">
|
|
2704
3954
|
Changed
|
|
2705
3955
|
</a>
|
|
2706
3956
|
|
|
2707
3957
|
</li>
|
|
2708
3958
|
|
|
2709
3959
|
<li class="md-nav__item">
|
|
2710
|
-
<a href="#
|
|
3960
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
2711
3961
|
Dependencies
|
|
2712
3962
|
</a>
|
|
2713
3963
|
|
|
2714
3964
|
</li>
|
|
2715
3965
|
|
|
2716
3966
|
<li class="md-nav__item">
|
|
2717
|
-
<a href="#
|
|
3967
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
2718
3968
|
Fixed
|
|
2719
3969
|
</a>
|
|
2720
3970
|
|
|
@@ -2741,28 +3991,28 @@
|
|
|
2741
3991
|
<ul class="md-nav__list">
|
|
2742
3992
|
|
|
2743
3993
|
<li class="md-nav__item">
|
|
2744
|
-
<a href="#
|
|
3994
|
+
<a href="#added_7" class="md-nav__link">
|
|
2745
3995
|
Added
|
|
2746
3996
|
</a>
|
|
2747
3997
|
|
|
2748
3998
|
</li>
|
|
2749
3999
|
|
|
2750
4000
|
<li class="md-nav__item">
|
|
2751
|
-
<a href="#
|
|
4001
|
+
<a href="#changed_6" class="md-nav__link">
|
|
2752
4002
|
Changed
|
|
2753
4003
|
</a>
|
|
2754
4004
|
|
|
2755
4005
|
</li>
|
|
2756
4006
|
|
|
2757
4007
|
<li class="md-nav__item">
|
|
2758
|
-
<a href="#
|
|
4008
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
2759
4009
|
Dependencies
|
|
2760
4010
|
</a>
|
|
2761
4011
|
|
|
2762
4012
|
</li>
|
|
2763
4013
|
|
|
2764
4014
|
<li class="md-nav__item">
|
|
2765
|
-
<a href="#
|
|
4015
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
2766
4016
|
Fixed
|
|
2767
4017
|
</a>
|
|
2768
4018
|
|
|
@@ -2782,35 +4032,35 @@
|
|
|
2782
4032
|
<ul class="md-nav__list">
|
|
2783
4033
|
|
|
2784
4034
|
<li class="md-nav__item">
|
|
2785
|
-
<a href="#
|
|
4035
|
+
<a href="#added_8" class="md-nav__link">
|
|
2786
4036
|
Added
|
|
2787
4037
|
</a>
|
|
2788
4038
|
|
|
2789
4039
|
</li>
|
|
2790
4040
|
|
|
2791
4041
|
<li class="md-nav__item">
|
|
2792
|
-
<a href="#
|
|
4042
|
+
<a href="#changed_7" class="md-nav__link">
|
|
2793
4043
|
Changed
|
|
2794
4044
|
</a>
|
|
2795
4045
|
|
|
2796
4046
|
</li>
|
|
2797
4047
|
|
|
2798
4048
|
<li class="md-nav__item">
|
|
2799
|
-
<a href="#
|
|
4049
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
2800
4050
|
Dependencies
|
|
2801
4051
|
</a>
|
|
2802
4052
|
|
|
2803
4053
|
</li>
|
|
2804
4054
|
|
|
2805
4055
|
<li class="md-nav__item">
|
|
2806
|
-
<a href="#
|
|
4056
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
2807
4057
|
Fixed
|
|
2808
4058
|
</a>
|
|
2809
4059
|
|
|
2810
4060
|
</li>
|
|
2811
4061
|
|
|
2812
4062
|
<li class="md-nav__item">
|
|
2813
|
-
<a href="#
|
|
4063
|
+
<a href="#security_2" class="md-nav__link">
|
|
2814
4064
|
Security
|
|
2815
4065
|
</a>
|
|
2816
4066
|
|
|
@@ -2830,35 +4080,35 @@
|
|
|
2830
4080
|
<ul class="md-nav__list">
|
|
2831
4081
|
|
|
2832
4082
|
<li class="md-nav__item">
|
|
2833
|
-
<a href="#
|
|
4083
|
+
<a href="#added_9" class="md-nav__link">
|
|
2834
4084
|
Added
|
|
2835
4085
|
</a>
|
|
2836
4086
|
|
|
2837
4087
|
</li>
|
|
2838
4088
|
|
|
2839
4089
|
<li class="md-nav__item">
|
|
2840
|
-
<a href="#
|
|
4090
|
+
<a href="#changed_8" class="md-nav__link">
|
|
2841
4091
|
Changed
|
|
2842
4092
|
</a>
|
|
2843
4093
|
|
|
2844
4094
|
</li>
|
|
2845
4095
|
|
|
2846
4096
|
<li class="md-nav__item">
|
|
2847
|
-
<a href="#
|
|
4097
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
2848
4098
|
Dependencies
|
|
2849
4099
|
</a>
|
|
2850
4100
|
|
|
2851
4101
|
</li>
|
|
2852
4102
|
|
|
2853
4103
|
<li class="md-nav__item">
|
|
2854
|
-
<a href="#
|
|
4104
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
2855
4105
|
Fixed
|
|
2856
4106
|
</a>
|
|
2857
4107
|
|
|
2858
4108
|
</li>
|
|
2859
4109
|
|
|
2860
4110
|
<li class="md-nav__item">
|
|
2861
|
-
<a href="#
|
|
4111
|
+
<a href="#security_3" class="md-nav__link">
|
|
2862
4112
|
Security
|
|
2863
4113
|
</a>
|
|
2864
4114
|
|
|
@@ -2878,14 +4128,14 @@
|
|
|
2878
4128
|
<ul class="md-nav__list">
|
|
2879
4129
|
|
|
2880
4130
|
<li class="md-nav__item">
|
|
2881
|
-
<a href="#
|
|
4131
|
+
<a href="#changed_9" class="md-nav__link">
|
|
2882
4132
|
Changed
|
|
2883
4133
|
</a>
|
|
2884
4134
|
|
|
2885
4135
|
</li>
|
|
2886
4136
|
|
|
2887
4137
|
<li class="md-nav__item">
|
|
2888
|
-
<a href="#
|
|
4138
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
2889
4139
|
Fixed
|
|
2890
4140
|
</a>
|
|
2891
4141
|
|
|
@@ -2905,28 +4155,28 @@
|
|
|
2905
4155
|
<ul class="md-nav__list">
|
|
2906
4156
|
|
|
2907
4157
|
<li class="md-nav__item">
|
|
2908
|
-
<a href="#
|
|
4158
|
+
<a href="#added_10" class="md-nav__link">
|
|
2909
4159
|
Added
|
|
2910
4160
|
</a>
|
|
2911
4161
|
|
|
2912
4162
|
</li>
|
|
2913
4163
|
|
|
2914
4164
|
<li class="md-nav__item">
|
|
2915
|
-
<a href="#
|
|
4165
|
+
<a href="#changed_10" class="md-nav__link">
|
|
2916
4166
|
Changed
|
|
2917
4167
|
</a>
|
|
2918
4168
|
|
|
2919
4169
|
</li>
|
|
2920
4170
|
|
|
2921
4171
|
<li class="md-nav__item">
|
|
2922
|
-
<a href="#
|
|
4172
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
2923
4173
|
Fixed
|
|
2924
4174
|
</a>
|
|
2925
4175
|
|
|
2926
4176
|
</li>
|
|
2927
4177
|
|
|
2928
4178
|
<li class="md-nav__item">
|
|
2929
|
-
<a href="#
|
|
4179
|
+
<a href="#security_4" class="md-nav__link">
|
|
2930
4180
|
Security
|
|
2931
4181
|
</a>
|
|
2932
4182
|
|
|
@@ -2946,14 +4196,14 @@
|
|
|
2946
4196
|
<ul class="md-nav__list">
|
|
2947
4197
|
|
|
2948
4198
|
<li class="md-nav__item">
|
|
2949
|
-
<a href="#
|
|
4199
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
2950
4200
|
Fixed
|
|
2951
4201
|
</a>
|
|
2952
4202
|
|
|
2953
4203
|
</li>
|
|
2954
4204
|
|
|
2955
4205
|
<li class="md-nav__item">
|
|
2956
|
-
<a href="#
|
|
4206
|
+
<a href="#security_5" class="md-nav__link">
|
|
2957
4207
|
Security
|
|
2958
4208
|
</a>
|
|
2959
4209
|
|
|
@@ -2973,21 +4223,21 @@
|
|
|
2973
4223
|
<ul class="md-nav__list">
|
|
2974
4224
|
|
|
2975
4225
|
<li class="md-nav__item">
|
|
2976
|
-
<a href="#
|
|
4226
|
+
<a href="#added_11" class="md-nav__link">
|
|
2977
4227
|
Added
|
|
2978
4228
|
</a>
|
|
2979
4229
|
|
|
2980
4230
|
</li>
|
|
2981
4231
|
|
|
2982
4232
|
<li class="md-nav__item">
|
|
2983
|
-
<a href="#
|
|
4233
|
+
<a href="#changed_11" class="md-nav__link">
|
|
2984
4234
|
Changed
|
|
2985
4235
|
</a>
|
|
2986
4236
|
|
|
2987
4237
|
</li>
|
|
2988
4238
|
|
|
2989
4239
|
<li class="md-nav__item">
|
|
2990
|
-
<a href="#
|
|
4240
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
2991
4241
|
Fixed
|
|
2992
4242
|
</a>
|
|
2993
4243
|
|
|
@@ -3007,14 +4257,14 @@
|
|
|
3007
4257
|
<ul class="md-nav__list">
|
|
3008
4258
|
|
|
3009
4259
|
<li class="md-nav__item">
|
|
3010
|
-
<a href="#
|
|
4260
|
+
<a href="#changed_12" class="md-nav__link">
|
|
3011
4261
|
Changed
|
|
3012
4262
|
</a>
|
|
3013
4263
|
|
|
3014
4264
|
</li>
|
|
3015
4265
|
|
|
3016
4266
|
<li class="md-nav__item">
|
|
3017
|
-
<a href="#
|
|
4267
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
3018
4268
|
Fixed
|
|
3019
4269
|
</a>
|
|
3020
4270
|
|
|
@@ -3034,14 +4284,14 @@
|
|
|
3034
4284
|
<ul class="md-nav__list">
|
|
3035
4285
|
|
|
3036
4286
|
<li class="md-nav__item">
|
|
3037
|
-
<a href="#
|
|
4287
|
+
<a href="#added_12" class="md-nav__link">
|
|
3038
4288
|
Added
|
|
3039
4289
|
</a>
|
|
3040
4290
|
|
|
3041
4291
|
</li>
|
|
3042
4292
|
|
|
3043
4293
|
<li class="md-nav__item">
|
|
3044
|
-
<a href="#
|
|
4294
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
3045
4295
|
Fixed
|
|
3046
4296
|
</a>
|
|
3047
4297
|
|
|
@@ -3061,7 +4311,7 @@
|
|
|
3061
4311
|
<ul class="md-nav__list">
|
|
3062
4312
|
|
|
3063
4313
|
<li class="md-nav__item">
|
|
3064
|
-
<a href="#
|
|
4314
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
3065
4315
|
Fixed
|
|
3066
4316
|
</a>
|
|
3067
4317
|
|
|
@@ -3081,21 +4331,21 @@
|
|
|
3081
4331
|
<ul class="md-nav__list">
|
|
3082
4332
|
|
|
3083
4333
|
<li class="md-nav__item">
|
|
3084
|
-
<a href="#
|
|
4334
|
+
<a href="#added_13" class="md-nav__link">
|
|
3085
4335
|
Added
|
|
3086
4336
|
</a>
|
|
3087
4337
|
|
|
3088
4338
|
</li>
|
|
3089
4339
|
|
|
3090
4340
|
<li class="md-nav__item">
|
|
3091
|
-
<a href="#
|
|
4341
|
+
<a href="#changed_13" class="md-nav__link">
|
|
3092
4342
|
Changed
|
|
3093
4343
|
</a>
|
|
3094
4344
|
|
|
3095
4345
|
</li>
|
|
3096
4346
|
|
|
3097
4347
|
<li class="md-nav__item">
|
|
3098
|
-
<a href="#
|
|
4348
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
3099
4349
|
Fixed
|
|
3100
4350
|
</a>
|
|
3101
4351
|
|
|
@@ -3115,21 +4365,21 @@
|
|
|
3115
4365
|
<ul class="md-nav__list">
|
|
3116
4366
|
|
|
3117
4367
|
<li class="md-nav__item">
|
|
3118
|
-
<a href="#
|
|
4368
|
+
<a href="#added_14" class="md-nav__link">
|
|
3119
4369
|
Added
|
|
3120
4370
|
</a>
|
|
3121
4371
|
|
|
3122
4372
|
</li>
|
|
3123
4373
|
|
|
3124
4374
|
<li class="md-nav__item">
|
|
3125
|
-
<a href="#
|
|
4375
|
+
<a href="#changed_14" class="md-nav__link">
|
|
3126
4376
|
Changed
|
|
3127
4377
|
</a>
|
|
3128
4378
|
|
|
3129
4379
|
</li>
|
|
3130
4380
|
|
|
3131
4381
|
<li class="md-nav__item">
|
|
3132
|
-
<a href="#
|
|
4382
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
3133
4383
|
Fixed
|
|
3134
4384
|
</a>
|
|
3135
4385
|
|
|
@@ -3156,21 +4406,21 @@
|
|
|
3156
4406
|
<ul class="md-nav__list">
|
|
3157
4407
|
|
|
3158
4408
|
<li class="md-nav__item">
|
|
3159
|
-
<a href="#
|
|
4409
|
+
<a href="#added_15" class="md-nav__link">
|
|
3160
4410
|
Added
|
|
3161
4411
|
</a>
|
|
3162
4412
|
|
|
3163
4413
|
</li>
|
|
3164
4414
|
|
|
3165
4415
|
<li class="md-nav__item">
|
|
3166
|
-
<a href="#
|
|
4416
|
+
<a href="#changed_15" class="md-nav__link">
|
|
3167
4417
|
Changed
|
|
3168
4418
|
</a>
|
|
3169
4419
|
|
|
3170
4420
|
</li>
|
|
3171
4421
|
|
|
3172
4422
|
<li class="md-nav__item">
|
|
3173
|
-
<a href="#
|
|
4423
|
+
<a href="#fixed_18" class="md-nav__link">
|
|
3174
4424
|
Fixed
|
|
3175
4425
|
</a>
|
|
3176
4426
|
|
|
@@ -3575,15 +4825,102 @@
|
|
|
3575
4825
|
</li>
|
|
3576
4826
|
|
|
3577
4827
|
<li class="md-nav__item">
|
|
3578
|
-
<a href="#nestable-locationtypes-2608" class="md-nav__link">
|
|
3579
|
-
Nestable LocationTypes (#2608)
|
|
4828
|
+
<a href="#nestable-locationtypes-2608" class="md-nav__link">
|
|
4829
|
+
Nestable LocationTypes (#2608)
|
|
4830
|
+
</a>
|
|
4831
|
+
|
|
4832
|
+
</li>
|
|
4833
|
+
|
|
4834
|
+
<li class="md-nav__item">
|
|
4835
|
+
<a href="#required-relationships-873" class="md-nav__link">
|
|
4836
|
+
Required Relationships (#873)
|
|
4837
|
+
</a>
|
|
4838
|
+
|
|
4839
|
+
</li>
|
|
4840
|
+
|
|
4841
|
+
</ul>
|
|
4842
|
+
</nav>
|
|
4843
|
+
|
|
4844
|
+
</li>
|
|
4845
|
+
|
|
4846
|
+
<li class="md-nav__item">
|
|
4847
|
+
<a href="#changed" class="md-nav__link">
|
|
4848
|
+
Changed
|
|
4849
|
+
</a>
|
|
4850
|
+
|
|
4851
|
+
<nav class="md-nav" aria-label="Changed">
|
|
4852
|
+
<ul class="md-nav__list">
|
|
4853
|
+
|
|
4854
|
+
<li class="md-nav__item">
|
|
4855
|
+
<a href="#database-query-caching-is-now-disabled-by-default-1721" class="md-nav__link">
|
|
4856
|
+
Database Query Caching is now Disabled by Default (#1721)
|
|
4857
|
+
</a>
|
|
4858
|
+
|
|
4859
|
+
</li>
|
|
4860
|
+
|
|
4861
|
+
<li class="md-nav__item">
|
|
4862
|
+
<a href="#deprecation-warnings-silenced-by-default-2798" class="md-nav__link">
|
|
4863
|
+
Deprecation Warnings Silenced by Default (#2798)
|
|
4864
|
+
</a>
|
|
4865
|
+
|
|
4866
|
+
</li>
|
|
4867
|
+
|
|
4868
|
+
<li class="md-nav__item">
|
|
4869
|
+
<a href="#redesigned-list-filtering-ui-1998" class="md-nav__link">
|
|
4870
|
+
Redesigned List Filtering UI (#1998)
|
|
4871
|
+
</a>
|
|
4872
|
+
|
|
4873
|
+
</li>
|
|
4874
|
+
|
|
4875
|
+
<li class="md-nav__item">
|
|
4876
|
+
<a href="#renamed-mixin-classes-2779" class="md-nav__link">
|
|
4877
|
+
Renamed Mixin Classes (#2779)
|
|
4878
|
+
</a>
|
|
4879
|
+
|
|
4880
|
+
</li>
|
|
4881
|
+
|
|
4882
|
+
</ul>
|
|
4883
|
+
</nav>
|
|
4884
|
+
|
|
4885
|
+
</li>
|
|
4886
|
+
|
|
4887
|
+
</ul>
|
|
4888
|
+
</nav>
|
|
4889
|
+
|
|
4890
|
+
</li>
|
|
4891
|
+
|
|
4892
|
+
<li class="md-nav__item">
|
|
4893
|
+
<a href="#v1518-2023-05-01" class="md-nav__link">
|
|
4894
|
+
v1.5.18 (2023-05-01)
|
|
4895
|
+
</a>
|
|
4896
|
+
|
|
4897
|
+
<nav class="md-nav" aria-label="v1.5.18 (2023-05-01)">
|
|
4898
|
+
<ul class="md-nav__list">
|
|
4899
|
+
|
|
4900
|
+
<li class="md-nav__item">
|
|
4901
|
+
<a href="#added_1" class="md-nav__link">
|
|
4902
|
+
Added
|
|
4903
|
+
</a>
|
|
4904
|
+
|
|
4905
|
+
</li>
|
|
4906
|
+
|
|
4907
|
+
<li class="md-nav__item">
|
|
4908
|
+
<a href="#changed_1" class="md-nav__link">
|
|
4909
|
+
Changed
|
|
4910
|
+
</a>
|
|
4911
|
+
|
|
4912
|
+
</li>
|
|
4913
|
+
|
|
4914
|
+
<li class="md-nav__item">
|
|
4915
|
+
<a href="#fixed" class="md-nav__link">
|
|
4916
|
+
Fixed
|
|
3580
4917
|
</a>
|
|
3581
4918
|
|
|
3582
4919
|
</li>
|
|
3583
4920
|
|
|
3584
4921
|
<li class="md-nav__item">
|
|
3585
|
-
<a href="#
|
|
3586
|
-
|
|
4922
|
+
<a href="#security" class="md-nav__link">
|
|
4923
|
+
Security
|
|
3587
4924
|
</a>
|
|
3588
4925
|
|
|
3589
4926
|
</li>
|
|
@@ -3592,39 +4929,39 @@
|
|
|
3592
4929
|
</nav>
|
|
3593
4930
|
|
|
3594
4931
|
</li>
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
<a href="#
|
|
3598
|
-
|
|
4932
|
+
|
|
4933
|
+
<li class="md-nav__item">
|
|
4934
|
+
<a href="#v1517-2023-04-17" class="md-nav__link">
|
|
4935
|
+
v1.5.17 (2023-04-17)
|
|
3599
4936
|
</a>
|
|
3600
4937
|
|
|
3601
|
-
<nav class="md-nav" aria-label="
|
|
4938
|
+
<nav class="md-nav" aria-label="v1.5.17 (2023-04-17)">
|
|
3602
4939
|
<ul class="md-nav__list">
|
|
3603
4940
|
|
|
3604
4941
|
<li class="md-nav__item">
|
|
3605
|
-
<a href="#
|
|
3606
|
-
|
|
4942
|
+
<a href="#added_2" class="md-nav__link">
|
|
4943
|
+
Added
|
|
3607
4944
|
</a>
|
|
3608
4945
|
|
|
3609
4946
|
</li>
|
|
3610
4947
|
|
|
3611
4948
|
<li class="md-nav__item">
|
|
3612
|
-
<a href="#
|
|
3613
|
-
|
|
4949
|
+
<a href="#changed_2" class="md-nav__link">
|
|
4950
|
+
Changed
|
|
3614
4951
|
</a>
|
|
3615
4952
|
|
|
3616
4953
|
</li>
|
|
3617
4954
|
|
|
3618
4955
|
<li class="md-nav__item">
|
|
3619
|
-
<a href="#
|
|
3620
|
-
|
|
4956
|
+
<a href="#dependencies" class="md-nav__link">
|
|
4957
|
+
Dependencies
|
|
3621
4958
|
</a>
|
|
3622
4959
|
|
|
3623
4960
|
</li>
|
|
3624
4961
|
|
|
3625
4962
|
<li class="md-nav__item">
|
|
3626
|
-
<a href="#
|
|
3627
|
-
|
|
4963
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
4964
|
+
Fixed
|
|
3628
4965
|
</a>
|
|
3629
4966
|
|
|
3630
4967
|
</li>
|
|
@@ -3632,11 +4969,6 @@
|
|
|
3632
4969
|
</ul>
|
|
3633
4970
|
</nav>
|
|
3634
4971
|
|
|
3635
|
-
</li>
|
|
3636
|
-
|
|
3637
|
-
</ul>
|
|
3638
|
-
</nav>
|
|
3639
|
-
|
|
3640
4972
|
</li>
|
|
3641
4973
|
|
|
3642
4974
|
<li class="md-nav__item">
|
|
@@ -3648,14 +4980,14 @@
|
|
|
3648
4980
|
<ul class="md-nav__list">
|
|
3649
4981
|
|
|
3650
4982
|
<li class="md-nav__item">
|
|
3651
|
-
<a href="#
|
|
4983
|
+
<a href="#added_3" class="md-nav__link">
|
|
3652
4984
|
Added
|
|
3653
4985
|
</a>
|
|
3654
4986
|
|
|
3655
4987
|
</li>
|
|
3656
4988
|
|
|
3657
4989
|
<li class="md-nav__item">
|
|
3658
|
-
<a href="#
|
|
4990
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
3659
4991
|
Fixed
|
|
3660
4992
|
</a>
|
|
3661
4993
|
|
|
@@ -3675,28 +5007,28 @@
|
|
|
3675
5007
|
<ul class="md-nav__list">
|
|
3676
5008
|
|
|
3677
5009
|
<li class="md-nav__item">
|
|
3678
|
-
<a href="#
|
|
5010
|
+
<a href="#added_4" class="md-nav__link">
|
|
3679
5011
|
Added
|
|
3680
5012
|
</a>
|
|
3681
5013
|
|
|
3682
5014
|
</li>
|
|
3683
5015
|
|
|
3684
5016
|
<li class="md-nav__item">
|
|
3685
|
-
<a href="#
|
|
5017
|
+
<a href="#changed_3" class="md-nav__link">
|
|
3686
5018
|
Changed
|
|
3687
5019
|
</a>
|
|
3688
5020
|
|
|
3689
5021
|
</li>
|
|
3690
5022
|
|
|
3691
5023
|
<li class="md-nav__item">
|
|
3692
|
-
<a href="#
|
|
5024
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
3693
5025
|
Dependencies
|
|
3694
5026
|
</a>
|
|
3695
5027
|
|
|
3696
5028
|
</li>
|
|
3697
5029
|
|
|
3698
5030
|
<li class="md-nav__item">
|
|
3699
|
-
<a href="#
|
|
5031
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
3700
5032
|
Fixed
|
|
3701
5033
|
</a>
|
|
3702
5034
|
|
|
@@ -3710,7 +5042,7 @@
|
|
|
3710
5042
|
</li>
|
|
3711
5043
|
|
|
3712
5044
|
<li class="md-nav__item">
|
|
3713
|
-
<a href="#
|
|
5045
|
+
<a href="#security_1" class="md-nav__link">
|
|
3714
5046
|
Security
|
|
3715
5047
|
</a>
|
|
3716
5048
|
|
|
@@ -3730,21 +5062,21 @@
|
|
|
3730
5062
|
<ul class="md-nav__list">
|
|
3731
5063
|
|
|
3732
5064
|
<li class="md-nav__item">
|
|
3733
|
-
<a href="#
|
|
5065
|
+
<a href="#added_5" class="md-nav__link">
|
|
3734
5066
|
Added
|
|
3735
5067
|
</a>
|
|
3736
5068
|
|
|
3737
5069
|
</li>
|
|
3738
5070
|
|
|
3739
5071
|
<li class="md-nav__item">
|
|
3740
|
-
<a href="#
|
|
5072
|
+
<a href="#changed_4" class="md-nav__link">
|
|
3741
5073
|
Changed
|
|
3742
5074
|
</a>
|
|
3743
5075
|
|
|
3744
5076
|
</li>
|
|
3745
5077
|
|
|
3746
5078
|
<li class="md-nav__item">
|
|
3747
|
-
<a href="#
|
|
5079
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
3748
5080
|
Fixed
|
|
3749
5081
|
</a>
|
|
3750
5082
|
|
|
@@ -3764,28 +5096,28 @@
|
|
|
3764
5096
|
<ul class="md-nav__list">
|
|
3765
5097
|
|
|
3766
5098
|
<li class="md-nav__item">
|
|
3767
|
-
<a href="#
|
|
5099
|
+
<a href="#added_6" class="md-nav__link">
|
|
3768
5100
|
Added
|
|
3769
5101
|
</a>
|
|
3770
5102
|
|
|
3771
5103
|
</li>
|
|
3772
5104
|
|
|
3773
5105
|
<li class="md-nav__item">
|
|
3774
|
-
<a href="#
|
|
5106
|
+
<a href="#changed_5" class="md-nav__link">
|
|
3775
5107
|
Changed
|
|
3776
5108
|
</a>
|
|
3777
5109
|
|
|
3778
5110
|
</li>
|
|
3779
5111
|
|
|
3780
5112
|
<li class="md-nav__item">
|
|
3781
|
-
<a href="#
|
|
5113
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
3782
5114
|
Dependencies
|
|
3783
5115
|
</a>
|
|
3784
5116
|
|
|
3785
5117
|
</li>
|
|
3786
5118
|
|
|
3787
5119
|
<li class="md-nav__item">
|
|
3788
|
-
<a href="#
|
|
5120
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
3789
5121
|
Fixed
|
|
3790
5122
|
</a>
|
|
3791
5123
|
|
|
@@ -3812,28 +5144,28 @@
|
|
|
3812
5144
|
<ul class="md-nav__list">
|
|
3813
5145
|
|
|
3814
5146
|
<li class="md-nav__item">
|
|
3815
|
-
<a href="#
|
|
5147
|
+
<a href="#added_7" class="md-nav__link">
|
|
3816
5148
|
Added
|
|
3817
5149
|
</a>
|
|
3818
5150
|
|
|
3819
5151
|
</li>
|
|
3820
5152
|
|
|
3821
5153
|
<li class="md-nav__item">
|
|
3822
|
-
<a href="#
|
|
5154
|
+
<a href="#changed_6" class="md-nav__link">
|
|
3823
5155
|
Changed
|
|
3824
5156
|
</a>
|
|
3825
5157
|
|
|
3826
5158
|
</li>
|
|
3827
5159
|
|
|
3828
5160
|
<li class="md-nav__item">
|
|
3829
|
-
<a href="#
|
|
5161
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
3830
5162
|
Dependencies
|
|
3831
5163
|
</a>
|
|
3832
5164
|
|
|
3833
5165
|
</li>
|
|
3834
5166
|
|
|
3835
5167
|
<li class="md-nav__item">
|
|
3836
|
-
<a href="#
|
|
5168
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
3837
5169
|
Fixed
|
|
3838
5170
|
</a>
|
|
3839
5171
|
|
|
@@ -3853,35 +5185,35 @@
|
|
|
3853
5185
|
<ul class="md-nav__list">
|
|
3854
5186
|
|
|
3855
5187
|
<li class="md-nav__item">
|
|
3856
|
-
<a href="#
|
|
5188
|
+
<a href="#added_8" class="md-nav__link">
|
|
3857
5189
|
Added
|
|
3858
5190
|
</a>
|
|
3859
5191
|
|
|
3860
5192
|
</li>
|
|
3861
5193
|
|
|
3862
5194
|
<li class="md-nav__item">
|
|
3863
|
-
<a href="#
|
|
5195
|
+
<a href="#changed_7" class="md-nav__link">
|
|
3864
5196
|
Changed
|
|
3865
5197
|
</a>
|
|
3866
5198
|
|
|
3867
5199
|
</li>
|
|
3868
5200
|
|
|
3869
5201
|
<li class="md-nav__item">
|
|
3870
|
-
<a href="#
|
|
5202
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
3871
5203
|
Dependencies
|
|
3872
5204
|
</a>
|
|
3873
5205
|
|
|
3874
5206
|
</li>
|
|
3875
5207
|
|
|
3876
5208
|
<li class="md-nav__item">
|
|
3877
|
-
<a href="#
|
|
5209
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
3878
5210
|
Fixed
|
|
3879
5211
|
</a>
|
|
3880
5212
|
|
|
3881
5213
|
</li>
|
|
3882
5214
|
|
|
3883
5215
|
<li class="md-nav__item">
|
|
3884
|
-
<a href="#
|
|
5216
|
+
<a href="#security_2" class="md-nav__link">
|
|
3885
5217
|
Security
|
|
3886
5218
|
</a>
|
|
3887
5219
|
|
|
@@ -3901,35 +5233,35 @@
|
|
|
3901
5233
|
<ul class="md-nav__list">
|
|
3902
5234
|
|
|
3903
5235
|
<li class="md-nav__item">
|
|
3904
|
-
<a href="#
|
|
5236
|
+
<a href="#added_9" class="md-nav__link">
|
|
3905
5237
|
Added
|
|
3906
5238
|
</a>
|
|
3907
5239
|
|
|
3908
5240
|
</li>
|
|
3909
5241
|
|
|
3910
5242
|
<li class="md-nav__item">
|
|
3911
|
-
<a href="#
|
|
5243
|
+
<a href="#changed_8" class="md-nav__link">
|
|
3912
5244
|
Changed
|
|
3913
5245
|
</a>
|
|
3914
5246
|
|
|
3915
5247
|
</li>
|
|
3916
5248
|
|
|
3917
5249
|
<li class="md-nav__item">
|
|
3918
|
-
<a href="#
|
|
5250
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
3919
5251
|
Dependencies
|
|
3920
5252
|
</a>
|
|
3921
5253
|
|
|
3922
5254
|
</li>
|
|
3923
5255
|
|
|
3924
5256
|
<li class="md-nav__item">
|
|
3925
|
-
<a href="#
|
|
5257
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
3926
5258
|
Fixed
|
|
3927
5259
|
</a>
|
|
3928
5260
|
|
|
3929
5261
|
</li>
|
|
3930
5262
|
|
|
3931
5263
|
<li class="md-nav__item">
|
|
3932
|
-
<a href="#
|
|
5264
|
+
<a href="#security_3" class="md-nav__link">
|
|
3933
5265
|
Security
|
|
3934
5266
|
</a>
|
|
3935
5267
|
|
|
@@ -3949,14 +5281,14 @@
|
|
|
3949
5281
|
<ul class="md-nav__list">
|
|
3950
5282
|
|
|
3951
5283
|
<li class="md-nav__item">
|
|
3952
|
-
<a href="#
|
|
5284
|
+
<a href="#changed_9" class="md-nav__link">
|
|
3953
5285
|
Changed
|
|
3954
5286
|
</a>
|
|
3955
5287
|
|
|
3956
5288
|
</li>
|
|
3957
5289
|
|
|
3958
5290
|
<li class="md-nav__item">
|
|
3959
|
-
<a href="#
|
|
5291
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
3960
5292
|
Fixed
|
|
3961
5293
|
</a>
|
|
3962
5294
|
|
|
@@ -3976,28 +5308,28 @@
|
|
|
3976
5308
|
<ul class="md-nav__list">
|
|
3977
5309
|
|
|
3978
5310
|
<li class="md-nav__item">
|
|
3979
|
-
<a href="#
|
|
5311
|
+
<a href="#added_10" class="md-nav__link">
|
|
3980
5312
|
Added
|
|
3981
5313
|
</a>
|
|
3982
5314
|
|
|
3983
5315
|
</li>
|
|
3984
5316
|
|
|
3985
5317
|
<li class="md-nav__item">
|
|
3986
|
-
<a href="#
|
|
5318
|
+
<a href="#changed_10" class="md-nav__link">
|
|
3987
5319
|
Changed
|
|
3988
5320
|
</a>
|
|
3989
5321
|
|
|
3990
5322
|
</li>
|
|
3991
5323
|
|
|
3992
5324
|
<li class="md-nav__item">
|
|
3993
|
-
<a href="#
|
|
5325
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
3994
5326
|
Fixed
|
|
3995
5327
|
</a>
|
|
3996
5328
|
|
|
3997
5329
|
</li>
|
|
3998
5330
|
|
|
3999
5331
|
<li class="md-nav__item">
|
|
4000
|
-
<a href="#
|
|
5332
|
+
<a href="#security_4" class="md-nav__link">
|
|
4001
5333
|
Security
|
|
4002
5334
|
</a>
|
|
4003
5335
|
|
|
@@ -4017,14 +5349,14 @@
|
|
|
4017
5349
|
<ul class="md-nav__list">
|
|
4018
5350
|
|
|
4019
5351
|
<li class="md-nav__item">
|
|
4020
|
-
<a href="#
|
|
5352
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
4021
5353
|
Fixed
|
|
4022
5354
|
</a>
|
|
4023
5355
|
|
|
4024
5356
|
</li>
|
|
4025
5357
|
|
|
4026
5358
|
<li class="md-nav__item">
|
|
4027
|
-
<a href="#
|
|
5359
|
+
<a href="#security_5" class="md-nav__link">
|
|
4028
5360
|
Security
|
|
4029
5361
|
</a>
|
|
4030
5362
|
|
|
@@ -4044,21 +5376,21 @@
|
|
|
4044
5376
|
<ul class="md-nav__list">
|
|
4045
5377
|
|
|
4046
5378
|
<li class="md-nav__item">
|
|
4047
|
-
<a href="#
|
|
5379
|
+
<a href="#added_11" class="md-nav__link">
|
|
4048
5380
|
Added
|
|
4049
5381
|
</a>
|
|
4050
5382
|
|
|
4051
5383
|
</li>
|
|
4052
5384
|
|
|
4053
5385
|
<li class="md-nav__item">
|
|
4054
|
-
<a href="#
|
|
5386
|
+
<a href="#changed_11" class="md-nav__link">
|
|
4055
5387
|
Changed
|
|
4056
5388
|
</a>
|
|
4057
5389
|
|
|
4058
5390
|
</li>
|
|
4059
5391
|
|
|
4060
5392
|
<li class="md-nav__item">
|
|
4061
|
-
<a href="#
|
|
5393
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
4062
5394
|
Fixed
|
|
4063
5395
|
</a>
|
|
4064
5396
|
|
|
@@ -4078,14 +5410,14 @@
|
|
|
4078
5410
|
<ul class="md-nav__list">
|
|
4079
5411
|
|
|
4080
5412
|
<li class="md-nav__item">
|
|
4081
|
-
<a href="#
|
|
5413
|
+
<a href="#changed_12" class="md-nav__link">
|
|
4082
5414
|
Changed
|
|
4083
5415
|
</a>
|
|
4084
5416
|
|
|
4085
5417
|
</li>
|
|
4086
5418
|
|
|
4087
5419
|
<li class="md-nav__item">
|
|
4088
|
-
<a href="#
|
|
5420
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
4089
5421
|
Fixed
|
|
4090
5422
|
</a>
|
|
4091
5423
|
|
|
@@ -4105,14 +5437,14 @@
|
|
|
4105
5437
|
<ul class="md-nav__list">
|
|
4106
5438
|
|
|
4107
5439
|
<li class="md-nav__item">
|
|
4108
|
-
<a href="#
|
|
5440
|
+
<a href="#added_12" class="md-nav__link">
|
|
4109
5441
|
Added
|
|
4110
5442
|
</a>
|
|
4111
5443
|
|
|
4112
5444
|
</li>
|
|
4113
5445
|
|
|
4114
5446
|
<li class="md-nav__item">
|
|
4115
|
-
<a href="#
|
|
5447
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
4116
5448
|
Fixed
|
|
4117
5449
|
</a>
|
|
4118
5450
|
|
|
@@ -4132,7 +5464,7 @@
|
|
|
4132
5464
|
<ul class="md-nav__list">
|
|
4133
5465
|
|
|
4134
5466
|
<li class="md-nav__item">
|
|
4135
|
-
<a href="#
|
|
5467
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
4136
5468
|
Fixed
|
|
4137
5469
|
</a>
|
|
4138
5470
|
|
|
@@ -4152,21 +5484,21 @@
|
|
|
4152
5484
|
<ul class="md-nav__list">
|
|
4153
5485
|
|
|
4154
5486
|
<li class="md-nav__item">
|
|
4155
|
-
<a href="#
|
|
5487
|
+
<a href="#added_13" class="md-nav__link">
|
|
4156
5488
|
Added
|
|
4157
5489
|
</a>
|
|
4158
5490
|
|
|
4159
5491
|
</li>
|
|
4160
5492
|
|
|
4161
5493
|
<li class="md-nav__item">
|
|
4162
|
-
<a href="#
|
|
5494
|
+
<a href="#changed_13" class="md-nav__link">
|
|
4163
5495
|
Changed
|
|
4164
5496
|
</a>
|
|
4165
5497
|
|
|
4166
5498
|
</li>
|
|
4167
5499
|
|
|
4168
5500
|
<li class="md-nav__item">
|
|
4169
|
-
<a href="#
|
|
5501
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
4170
5502
|
Fixed
|
|
4171
5503
|
</a>
|
|
4172
5504
|
|
|
@@ -4186,21 +5518,21 @@
|
|
|
4186
5518
|
<ul class="md-nav__list">
|
|
4187
5519
|
|
|
4188
5520
|
<li class="md-nav__item">
|
|
4189
|
-
<a href="#
|
|
5521
|
+
<a href="#added_14" class="md-nav__link">
|
|
4190
5522
|
Added
|
|
4191
5523
|
</a>
|
|
4192
5524
|
|
|
4193
5525
|
</li>
|
|
4194
5526
|
|
|
4195
5527
|
<li class="md-nav__item">
|
|
4196
|
-
<a href="#
|
|
5528
|
+
<a href="#changed_14" class="md-nav__link">
|
|
4197
5529
|
Changed
|
|
4198
5530
|
</a>
|
|
4199
5531
|
|
|
4200
5532
|
</li>
|
|
4201
5533
|
|
|
4202
5534
|
<li class="md-nav__item">
|
|
4203
|
-
<a href="#
|
|
5535
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
4204
5536
|
Fixed
|
|
4205
5537
|
</a>
|
|
4206
5538
|
|
|
@@ -4227,21 +5559,21 @@
|
|
|
4227
5559
|
<ul class="md-nav__list">
|
|
4228
5560
|
|
|
4229
5561
|
<li class="md-nav__item">
|
|
4230
|
-
<a href="#
|
|
5562
|
+
<a href="#added_15" class="md-nav__link">
|
|
4231
5563
|
Added
|
|
4232
5564
|
</a>
|
|
4233
5565
|
|
|
4234
5566
|
</li>
|
|
4235
5567
|
|
|
4236
5568
|
<li class="md-nav__item">
|
|
4237
|
-
<a href="#
|
|
5569
|
+
<a href="#changed_15" class="md-nav__link">
|
|
4238
5570
|
Changed
|
|
4239
5571
|
</a>
|
|
4240
5572
|
|
|
4241
5573
|
</li>
|
|
4242
5574
|
|
|
4243
5575
|
<li class="md-nav__item">
|
|
4244
|
-
<a href="#
|
|
5576
|
+
<a href="#fixed_18" class="md-nav__link">
|
|
4245
5577
|
Fixed
|
|
4246
5578
|
</a>
|
|
4247
5579
|
|
|
@@ -4474,13 +5806,64 @@ relationship:</p>
|
|
|
4474
5806
|
</tbody>
|
|
4475
5807
|
</table>
|
|
4476
5808
|
<!-- towncrier release notes start -->
|
|
4477
|
-
<h2 id="
|
|
5809
|
+
<h2 id="v1518-2023-05-01">v1.5.18 (2023-05-01)<a class="headerlink" href="#v1518-2023-05-01" title="Permanent link">¶</a></h2>
|
|
4478
5810
|
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
4479
5811
|
<ul>
|
|
4480
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/
|
|
5812
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/1526">#1526</a> - Added UI button and REST API to validate a <code>Secret</code> can be retrieved.</li>
|
|
5813
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3669">#3669</a> - Added indexes to <code>JobResult</code> across common fields: <code>created</code>, <code>completed</code>, and <code>status</code>.</li>
|
|
5814
|
+
</ul>
|
|
5815
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
5816
|
+
<ul>
|
|
5817
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/2800">#2800</a> - Add model documentation to navigation panel.</li>
|
|
5818
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3440">#3440</a> - Added warning admonitions for Job Hooks and Job Approvals documentation that setting <code>Meta.approval_required</code> is ignored on <code>JobHookReceiver</code> classes.</li>
|
|
5819
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3602">#3602</a> - Updated <code>.gitignore</code> to not track new UI non-source files.</li>
|
|
5820
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3621">#3621</a> - Changed development Docker compose commands to not leave temporary containers behind.</li>
|
|
5821
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3633">#3633</a> - Changed Custom Validator applicator to not require DB query.</li>
|
|
4481
5822
|
</ul>
|
|
4482
5823
|
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
4483
5824
|
<ul>
|
|
5825
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3083">#3083</a> - Fixed an issue where unit tests might fail erroneously when dealing with objects whose name/display contains characters like <code>"<></code>.</li>
|
|
5826
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3533">#3533</a> - Fixed an issue where sending a PATCH to <code>/api/dcim/interfaces/(uuid)/</code> might inadvertently reset the interface's status to <code>Active</code>.</li>
|
|
5827
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3533">#3533</a> - Fixed an issue where sending a PATCH to <code>/api/users/tokens/(uuid)/</code> might inadvertently change the token's value.</li>
|
|
5828
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3612">#3612</a> - Fixed a 500 error when filtering by <code>content_type</code> in Dynamic Groups list view.</li>
|
|
5829
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3660">#3660</a> - Fixed an issue where grouped job buttons would always be disabled due to a template rendering issue.</li>
|
|
5830
|
+
</ul>
|
|
5831
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
5832
|
+
<ul>
|
|
5833
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3642">#3642</a> - Updated <code>sqlparse</code> to <code>0.4.4</code> due to CVE-2023-30608. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
5834
|
+
</ul>
|
|
5835
|
+
<h2 id="v1517-2023-04-17">v1.5.17 (2023-04-17)<a class="headerlink" href="#v1517-2023-04-17" title="Permanent link">¶</a></h2>
|
|
5836
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
5837
|
+
<ul>
|
|
5838
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3484">#3484</a> - Added job profiling option to job execution when in DEBUG mode.</li>
|
|
5839
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - Added the ability to change the <code>CACHES["default"]["BACKEND"]</code> via an environment variable <code>NAUTOBOT_CACHES_BACKEND</code></li>
|
|
5840
|
+
</ul>
|
|
5841
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
5842
|
+
<ul>
|
|
5843
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - The default database backend if <code>METRICS_ENABLED</code> is <code>True</code> is now "django_prometheus.db.backends.postgresql"</li>
|
|
5844
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - The default CACHES backend if <code>METRICS_ENABLED</code> is <code>True</code> is now "django_prometheus.cache.backends.redis.RedisCache"</li>
|
|
5845
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3548">#3548</a> - Changed Git Repository docs to include admonition about Github Apps.</li>
|
|
5846
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3595">#3595</a> - Update the warning provided when a bad reverse entry is not found in serializer to point to correct import location.</li>
|
|
5847
|
+
</ul>
|
|
5848
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
5849
|
+
<ul>
|
|
5850
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3525">#3525</a> - Added explicit dependency on <code>packaging</code> that had been inadvertently omitted.</li>
|
|
5851
|
+
</ul>
|
|
5852
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
5853
|
+
<ul>
|
|
5854
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3116">#3116</a> - Fixed JSON comparison of <code>data_scheme</code> keys in <code>assertInstanceEqual</code> tests.</li>
|
|
5855
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3573">#3573</a> - Fixed advanced filtering on interface UI list page not working.</li>
|
|
5856
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3577">#3577</a> - Fixed <code>NautobotUIViewSet</code> documentation example for case sensitive typos.</li>
|
|
5857
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3577">#3577</a> - Fixed <code>NautobotUIViewSet</code> documentation example not including imports.</li>
|
|
5858
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3598">#3598</a> - Fixed default sanitizer patterns to account for strings beginning with <code>i</code> or <code>is</code>.</li>
|
|
5859
|
+
</ul>
|
|
5860
|
+
<h2 id="v1516-2023-04-10">v1.5.16 (2023-04-10)<a class="headerlink" href="#v1516-2023-04-10" title="Permanent link">¶</a></h2>
|
|
5861
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
5862
|
+
<ul>
|
|
5863
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3557">#3557</a> - Added docs page for Circuit Maintenance.</li>
|
|
5864
|
+
</ul>
|
|
5865
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
5866
|
+
<ul>
|
|
4484
5867
|
<li><a href="https://github.com/nautobot/nautobot/issues/2944">#2944</a> - Fixed slow performance of relationships on ObjectListView.</li>
|
|
4485
5868
|
<li><a href="https://github.com/nautobot/nautobot/issues/3345">#3345</a> - Fixed missing Relationships in DynamicFilterForm.</li>
|
|
4486
5869
|
<li><a href="https://github.com/nautobot/nautobot/issues/3477">#3477</a> - Added a note under heading Setting ViewSet Attributes to mention the caveat of not using <code>slug</code> or <code>pk</code>.</li>
|
|
@@ -4488,20 +5871,20 @@ relationship:</p>
|
|
|
4488
5871
|
<li><a href="https://github.com/nautobot/nautobot/issues/3550">#3550</a> - Fixed display name of filtered relationships on ObjectListView.</li>
|
|
4489
5872
|
</ul>
|
|
4490
5873
|
<h2 id="v1515-2023-04-04">v1.5.15 (2023-04-04)<a class="headerlink" href="#v1515-2023-04-04" title="Permanent link">¶</a></h2>
|
|
4491
|
-
<h3 id="
|
|
5874
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
4492
5875
|
<ul>
|
|
4493
5876
|
<li><a href="https://github.com/nautobot/nautobot/issues/3446">#3446</a> - Added documentation links for Device Onboarding and LifeCycle Management plugins to docs.nautobot.com menu.</li>
|
|
4494
5877
|
</ul>
|
|
4495
|
-
<h3 id="
|
|
5878
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
4496
5879
|
<ul>
|
|
4497
5880
|
<li><a href="https://github.com/nautobot/nautobot/issues/3384">#3384</a> - Moved extra information stored previously in <code>block sidebar</code> to <code>block header_extra</code> in page templates (<code>aggregate_list.html</code> and <code>objectchange_list.html</code>).</li>
|
|
4498
5881
|
<li><a href="https://github.com/nautobot/nautobot/issues/3384">#3384</a> - Documented <code>block header_extra</code> in <code>docs/development/templates.md</code>.</li>
|
|
4499
5882
|
</ul>
|
|
4500
|
-
<h3 id="
|
|
5883
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
4501
5884
|
<ul>
|
|
4502
5885
|
<li><a href="https://github.com/nautobot/nautobot/issues/3499">#3499</a> - Updated <code>redis</code> to 4.5.4. This is not a direct dependency of Nautobot so it will not auto-update when upgrading. Please update your local environment as needed.</li>
|
|
4503
5886
|
</ul>
|
|
4504
|
-
<h3 id="
|
|
5887
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
4505
5888
|
<ul>
|
|
4506
5889
|
<li><a href="https://github.com/nautobot/nautobot/issues/3206">#3206</a> - Fixed Docker tag syntax on prerelease workflow.</li>
|
|
4507
5890
|
<li><a href="https://github.com/nautobot/nautobot/issues/3480">#3480</a> - Fixed an error that could be seen in certain cases with IPAddress records.</li>
|
|
@@ -4511,42 +5894,42 @@ relationship:</p>
|
|
|
4511
5894
|
<li><a href="https://github.com/nautobot/nautobot/issues/3384">#3384</a> - Removed all remaining instances of <code>block sidebar</code> from page templates (<code>aggregate_list.html</code> and <code>objectchange_list.html</code>).</li>
|
|
4512
5895
|
<li><a href="https://github.com/nautobot/nautobot/issues/3384">#3384</a> - Removed documentation about <code>block sidebar</code> from <code>docs/development/templates.md</code>.</li>
|
|
4513
5896
|
</ul>
|
|
4514
|
-
<h3 id="
|
|
5897
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
4515
5898
|
<ul>
|
|
4516
5899
|
<li><a href="https://github.com/nautobot/nautobot/issues/3499">#3499</a> - Updated <code>redis</code> to 4.5.4 due to CVE-2023-28858 and CVE-2023-28859. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
4517
5900
|
</ul>
|
|
4518
5901
|
<h2 id="v1514-2023-03-20">v1.5.14 (2023-03-20)<a class="headerlink" href="#v1514-2023-03-20" title="Permanent link">¶</a></h2>
|
|
4519
|
-
<h3 id="
|
|
5902
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
4520
5903
|
<ul>
|
|
4521
5904
|
<li><a href="https://github.com/nautobot/nautobot/issues/2618">#2618</a> - Added the ability to stand up a local dev env for SSO using Keycloak.</li>
|
|
4522
5905
|
<li><a href="https://github.com/nautobot/nautobot/issues/3033">#3033</a> - Added <code>JobButton</code> model to create single click execution buttons in the web UI to run jobs based on a single object.</li>
|
|
4523
5906
|
<li><a href="https://github.com/nautobot/nautobot/issues/3377">#3377</a> - Added additional choices for many data types in <code>nautobot.dcim</code>.</li>
|
|
4524
5907
|
</ul>
|
|
4525
|
-
<h3 id="
|
|
5908
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
4526
5909
|
<ul>
|
|
4527
5910
|
<li><a href="https://github.com/nautobot/nautobot/issues/3434">#3434</a> - Changed the recommended exception to raise to end jobs early.</li>
|
|
4528
5911
|
</ul>
|
|
4529
|
-
<h3 id="
|
|
5912
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
4530
5913
|
<ul>
|
|
4531
5914
|
<li><a href="https://github.com/nautobot/nautobot/issues/3419">#3419</a> - Fixed <code>test_queryset_to_csv</code> to format data fetched from the model.</li>
|
|
4532
5915
|
</ul>
|
|
4533
5916
|
<h2 id="v1513-2023-03-14">v1.5.13 (2023-03-14)<a class="headerlink" href="#v1513-2023-03-14" title="Permanent link">¶</a></h2>
|
|
4534
|
-
<h3 id="
|
|
5917
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
4535
5918
|
<ul>
|
|
4536
5919
|
<li><a href="https://github.com/nautobot/nautobot/issues/766">#766</a> - Added option for apps to extend Nautobot's Prometheus metrics, based on <code>nautobot_capacity_metrics</code>.</li>
|
|
4537
5920
|
<li><a href="https://github.com/nautobot/nautobot/issues/3410">#3410</a> - Added <code>-time</code> index for ObjectChange records.</li>
|
|
4538
5921
|
</ul>
|
|
4539
|
-
<h3 id="
|
|
5922
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
4540
5923
|
<ul>
|
|
4541
5924
|
<li><a href="https://github.com/nautobot/nautobot/issues/3410">#3410</a> - Changed Homepage ObjectChange query to not join User or Content Type tables, use record cache for user entries instead.</li>
|
|
4542
5925
|
<li><a href="https://github.com/nautobot/nautobot/issues/3416">#3416</a> - Updated Windows development documentation.</li>
|
|
4543
5926
|
</ul>
|
|
4544
|
-
<h3 id="
|
|
5927
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
4545
5928
|
<ul>
|
|
4546
5929
|
<li><a href="https://github.com/nautobot/nautobot/issues/3405">#3405</a> - Updated version of <code>pyopenssl</code> in Nautobot dev environment and Docker images to 23.0.0 due to an incompatibility between older versions of <code>pyopenssl</code> and version 39.x of <code>cryptography</code>. This is not a direct dependency of Nautobot so it will not auto-update when upgrading. Please update your local environment as needed.</li>
|
|
4547
5930
|
<li><a href="https://github.com/nautobot/nautobot/issues/3405">#3405</a> - Updated <code>cryptography</code> to 39.0.2. This is not a direct dependency of Nautobot so it will not auto-update when upgrading. Please update your local environment as needed.</li>
|
|
4548
5931
|
</ul>
|
|
4549
|
-
<h3 id="
|
|
5932
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
4550
5933
|
<ul>
|
|
4551
5934
|
<li><a href="https://github.com/nautobot/nautobot/issues/3347">#3347</a> - Fixed (again) <code>Location.parent</code> not populating correctly in the form when editing an existing Location.</li>
|
|
4552
5935
|
</ul>
|
|
@@ -4555,23 +5938,23 @@ relationship:</p>
|
|
|
4555
5938
|
<li><a href="https://github.com/nautobot/nautobot/issues/3407">#3407</a> - Removed permission checks for ContentTypeAPIViewSet.</li>
|
|
4556
5939
|
</ul>
|
|
4557
5940
|
<h2 id="v1512-2023-03-03">v1.5.12 (2023-03-03)<a class="headerlink" href="#v1512-2023-03-03" title="Permanent link">¶</a></h2>
|
|
4558
|
-
<h3 id="
|
|
5941
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
4559
5942
|
<ul>
|
|
4560
5943
|
<li><a href="https://github.com/nautobot/nautobot/issues/3182">#3182</a> - Added support for assigning Config Context objects via Dynamic Groups.</li>
|
|
4561
5944
|
<li><a href="https://github.com/nautobot/nautobot/issues/3219">#3219</a> - Added support for custom fields to Dynamic Groups.</li>
|
|
4562
5945
|
<li><a href="https://github.com/nautobot/nautobot/issues/3220">#3220</a> - Added support for relationships to Dynamic Groups.</li>
|
|
4563
5946
|
</ul>
|
|
4564
|
-
<h3 id="
|
|
5947
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
4565
5948
|
<ul>
|
|
4566
5949
|
<li><a href="https://github.com/nautobot/nautobot/issues/3369">#3369</a> - Changed <code>RelationshipModelFilterSetMixin</code> to perform a single OR query including <code>select_related</code> for <code>source_type</code> and <code>destination_type</code> vs. two single queries for each source/destination types.</li>
|
|
4567
5950
|
</ul>
|
|
4568
|
-
<h3 id="
|
|
5951
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
4569
5952
|
<ul>
|
|
4570
5953
|
<li><a href="https://github.com/nautobot/nautobot/issues/3388">#3388</a> - Updated <code>GitPython</code> to 3.1.31.</li>
|
|
4571
5954
|
<li><a href="https://github.com/nautobot/nautobot/issues/3388">#3388</a> - Updated <code>drf-yasg</code> to 1.21.5. Note: this is automatic for the Nautobot-provided containers, but because our dependency on it goes away in 2.0, it's an optional update for other installations.</li>
|
|
4572
5955
|
<li><a href="https://github.com/nautobot/nautobot/issues/3388">#3388</a> - Updated <code>netutils</code> to 1.4.1.</li>
|
|
4573
5956
|
</ul>
|
|
4574
|
-
<h3 id="
|
|
5957
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
4575
5958
|
<ul>
|
|
4576
5959
|
<li><a href="https://github.com/nautobot/nautobot/issues/3295">#3295</a> - Fixed kombu serialization error on <code>User</code> object that arose when <code>CELERY_RESULT_EXTENDED == True</code> or when <code>enqueue_job</code> was called from within an existing <code>Job</code>.</li>
|
|
4577
5960
|
<li><a href="https://github.com/nautobot/nautobot/issues/3318">#3318</a> - Fixed a bug in prefix factory when a /0 ipv6 network is generated by faker.</li>
|
|
@@ -4580,13 +5963,13 @@ relationship:</p>
|
|
|
4580
5963
|
<li><a href="https://github.com/nautobot/nautobot/issues/3353">#3353</a> - Fixed a bug in <code>nautobot.utilities.filters.MappedPredicatesFilterMixin</code> (from which <code>SearchFilter</code> inherits) that was preventing <code>q</code> fields from being used in Dynamic Group filters.</li>
|
|
4581
5964
|
</ul>
|
|
4582
5965
|
<h2 id="v1511-2023-02-18">v1.5.11 (2023-02-18)<a class="headerlink" href="#v1511-2023-02-18" title="Permanent link">¶</a></h2>
|
|
4583
|
-
<h3 id="
|
|
5966
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
4584
5967
|
<ul>
|
|
4585
5968
|
<li><a href="https://github.com/nautobot/nautobot/issues/3168">#3168</a> - Add device name to bulk interface rename header.</li>
|
|
4586
5969
|
<li><a href="https://github.com/nautobot/nautobot/issues/3184">#3184</a> - Added Git 2.0+ as a mandatory dependency in the installation instructions.</li>
|
|
4587
5970
|
<li><a href="https://github.com/nautobot/nautobot/issues/3255">#3255</a> - Added <code>--cache-test-fixtures</code> command line argument to Nautobot unit and integration tests.</li>
|
|
4588
5971
|
</ul>
|
|
4589
|
-
<h3 id="
|
|
5972
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
4590
5973
|
<ul>
|
|
4591
5974
|
<li><a href="https://github.com/nautobot/nautobot/issues/3134">#3134</a> - Migrate ModelMultipleChoiceFilters to NaturalKeyOrPKMultipleChoiceFilter.</li>
|
|
4592
5975
|
<li><a href="https://github.com/nautobot/nautobot/issues/3224">#3224</a> - Updates to our deprecation policy: Prior-major REST API versions will be dropped upon next-major release.</li>
|
|
@@ -4595,14 +5978,14 @@ relationship:</p>
|
|
|
4595
5978
|
<li><a href="https://github.com/nautobot/nautobot/issues/3314">#3314</a> - Updated developer documentation for user and prototype branching conventions.</li>
|
|
4596
5979
|
<li><a href="https://github.com/nautobot/nautobot/issues/3314">#3314</a> - Updated pre-commit hook to validate user namespace prefix on branch name.</li>
|
|
4597
5980
|
</ul>
|
|
4598
|
-
<h3 id="
|
|
5981
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
4599
5982
|
<ul>
|
|
4600
5983
|
<li><a href="https://github.com/nautobot/nautobot/issues/3251">#3251</a> - Updated <code>oauthlib</code> to 3.2.2.</li>
|
|
4601
5984
|
<li><a href="https://github.com/nautobot/nautobot/issues/3258">#3258</a> - Updated <code>cryptography</code> to 39.0.1.</li>
|
|
4602
5985
|
<li><a href="https://github.com/nautobot/nautobot/issues/3320">#3320</a> - Updated <code>django</code> to 3.2.18.</li>
|
|
4603
5986
|
<li><a href="https://github.com/nautobot/nautobot/issues/3333">#3333</a> - Updated <code>netutils</code> constraint from ~1.4.0 to ^1.4.0 to permit semver upgrades.</li>
|
|
4604
5987
|
</ul>
|
|
4605
|
-
<h3 id="
|
|
5988
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
4606
5989
|
<ul>
|
|
4607
5990
|
<li><a href="https://github.com/nautobot/nautobot/issues/2580">#2580</a> - Fixed fragile generic view test.</li>
|
|
4608
5991
|
<li><a href="https://github.com/nautobot/nautobot/issues/3187">#3187</a> - Fixed <code>DynamicModelChoiceField</code>s having a generic default label when one is provided.</li>
|
|
@@ -4615,87 +5998,87 @@ relationship:</p>
|
|
|
4615
5998
|
<li><a href="https://github.com/nautobot/nautobot/issues/3332">#3332</a> - Fixed missing imports in Secrets Providers plugin development documentation.</li>
|
|
4616
5999
|
<li><a href="https://github.com/nautobot/nautobot/issues/3335">#3335</a> - Fixed inability to change filtering on custom field (selection) once filter is configured.</li>
|
|
4617
6000
|
</ul>
|
|
4618
|
-
<h3 id="
|
|
6001
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
4619
6002
|
<ul>
|
|
4620
6003
|
<li><a href="https://github.com/nautobot/nautobot/issues/3251">#3251</a> - Updated <code>oauthlib</code> to 3.2.2 due to CVE-2022-36087. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
4621
6004
|
<li><a href="https://github.com/nautobot/nautobot/issues/3258">#3258</a> - Updated <code>cryptography</code> to 39.0.1 due to CVE-2023-0286, CVE-2023-23931. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
4622
6005
|
<li><a href="https://github.com/nautobot/nautobot/issues/3320">#3320</a> - Updated <code>django</code> to 3.2.18 due to CVE-2023-24580.</li>
|
|
4623
6006
|
</ul>
|
|
4624
6007
|
<h2 id="v1510-2023-02-06">v1.5.10 (2023-02-06)<a class="headerlink" href="#v1510-2023-02-06" title="Permanent link">¶</a></h2>
|
|
4625
|
-
<h3 id="
|
|
6008
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
4626
6009
|
<ul>
|
|
4627
6010
|
<li><a href="https://github.com/nautobot/nautobot/issues/3013">#3013</a> - Added <code>CELERY_WORKER_PROMETHEUS_PORTS</code> configuration setting</li>
|
|
4628
6011
|
<li><a href="https://github.com/nautobot/nautobot/issues/3013">#3013</a> - Added prometheus HTTP server listening on the worker to expose worker metrics</li>
|
|
4629
6012
|
<li><a href="https://github.com/nautobot/nautobot/issues/3013">#3013</a> - Added <code>nautobot_job_duration_seconds</code> counter metric that reports on job execution</li>
|
|
4630
6013
|
</ul>
|
|
4631
|
-
<h3 id="
|
|
6014
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
4632
6015
|
<ul>
|
|
4633
6016
|
<li><a href="https://github.com/nautobot/nautobot/issues/3177">#3177</a> - Updated VLANFactory to generate longer and more "realistic" VLAN names.</li>
|
|
4634
6017
|
<li><a href="https://github.com/nautobot/nautobot/issues/3198">#3198</a> - Added dependencies towncrier section, removed extra newline.</li>
|
|
4635
6018
|
</ul>
|
|
4636
|
-
<h3 id="
|
|
6019
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
4637
6020
|
<ul>
|
|
4638
6021
|
<li><a href="https://github.com/nautobot/nautobot/issues/3227">#3227</a> - Updated <code>django</code> to 3.2.17.</li>
|
|
4639
6022
|
</ul>
|
|
4640
|
-
<h3 id="
|
|
6023
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
4641
6024
|
<ul>
|
|
4642
6025
|
<li><a href="https://github.com/nautobot/nautobot/issues/3126">#3126</a> - Fixed interface not raising exception when adding a VLAN from a different site in tagged_vlans.</li>
|
|
4643
6026
|
<li><a href="https://github.com/nautobot/nautobot/issues/3153">#3153</a> - Made integration test <code>CableConnectFormTestCase.test_js_functionality</code> more resilient and less prone to erroneous failures.</li>
|
|
4644
6027
|
<li><a href="https://github.com/nautobot/nautobot/issues/3177">#3177</a> - Fixed a spurious failure in BulkEditObjectsViewTestCase.test_bulk_edit_objects_with_constrained_permission.</li>
|
|
4645
6028
|
<li><a href="https://github.com/nautobot/nautobot/issues/3200">#3200</a> - Added <code>dependencies</code> to the list of valid change fragment types in the documentation.</li>
|
|
4646
6029
|
</ul>
|
|
4647
|
-
<h3 id="
|
|
6030
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
4648
6031
|
<ul>
|
|
4649
6032
|
<li><a href="https://github.com/nautobot/nautobot/issues/3227">#3227</a> - Updated <code>django</code> to 3.2.17 due to CVE-2023-23969.</li>
|
|
4650
6033
|
</ul>
|
|
4651
6034
|
<h2 id="v159-2023-01-26">v1.5.9 (2023-01-26)<a class="headerlink" href="#v159-2023-01-26" title="Permanent link">¶</a></h2>
|
|
4652
|
-
<h3 id="
|
|
6035
|
+
<h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">¶</a></h3>
|
|
4653
6036
|
<ul>
|
|
4654
6037
|
<li><a href="https://github.com/nautobot/nautobot/issues/3117">#3117</a> - Update Renovate config to batch lockfile updates to next.</li>
|
|
4655
6038
|
<li><a href="https://github.com/nautobot/nautobot/issues/3144">#3144</a> - Updated <code>netutils</code> to <code>~1.4.0</code></li>
|
|
4656
6039
|
<li><a href="https://github.com/nautobot/nautobot/issues/3171">#3171</a> - Increased maximum VLAN name length from 64 characters to 255 characters.</li>
|
|
4657
6040
|
</ul>
|
|
4658
|
-
<h3 id="
|
|
6041
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
4659
6042
|
<ul>
|
|
4660
6043
|
<li><a href="https://github.com/nautobot/nautobot/issues/3114">#3114</a> - Fixed Navbar scroll through top-level menu in low resolution desktop screens.</li>
|
|
4661
6044
|
<li><a href="https://github.com/nautobot/nautobot/issues/3155">#3155</a> - Aligned buttons on device component create page.</li>
|
|
4662
6045
|
<li><a href="https://github.com/nautobot/nautobot/issues/3169">#3169</a> - Fixed data mismatch in <code>ScheduledJob</code> causing celery workers to fail when running scheduled jobs created in versions prior to <code>v1.5.8</code>. ⚠ <strong>NOTE</strong>: If your celery workers are failing on startup after upgrading to <code>v1.5.8</code>, you may need to purge the celery queue with <code>nautobot-server celery purge</code> or <code>nautobot-server celery purge -Q <queues></code> to purge custom queues.</li>
|
|
4663
6046
|
</ul>
|
|
4664
6047
|
<h2 id="v158-2023-01-23">v1.5.8 (2023-01-23)<a class="headerlink" href="#v158-2023-01-23" title="Permanent link">¶</a></h2>
|
|
4665
|
-
<h3 id="
|
|
6048
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
4666
6049
|
<ul>
|
|
4667
6050
|
<li><a href="https://github.com/nautobot/nautobot/issues/3103">#3103</a> - Added Redis troubleshooting section to installation docs.</li>
|
|
4668
6051
|
</ul>
|
|
4669
|
-
<h3 id="
|
|
6052
|
+
<h3 id="changed_10">Changed<a class="headerlink" href="#changed_10" title="Permanent link">¶</a></h3>
|
|
4670
6053
|
<ul>
|
|
4671
6054
|
<li><a href="https://github.com/nautobot/nautobot/issues/3072">#3072</a> - In Nautobot's unit tests, all HTTP requests are now sent with SERVER_NAME set to <code>nautobot.example.com</code> instead of <code>testserver</code> (Django's default) and the test configuration for Nautobot itself sets <code>ALLOWED_HOSTS</code> to expect <code>nautobot.example.com</code>. This is intended to protect against issues such as #3065.</li>
|
|
4672
6055
|
<li><a href="https://github.com/nautobot/nautobot/issues/3077">#3077</a> - Updated Nautobot release checklist to reflect current branching and pull request process.</li>
|
|
4673
6056
|
<li><a href="https://github.com/nautobot/nautobot/issues/3112">#3112</a> - Converted eligible <code>prefetch_related()</code> to <code>select_related()</code> queries. Users should note a performance gain from this change, but note that cacheops is no longer recommended in v1.5 and this change will likely result in invalid data responses if cacheops remains enabled in your environment. Cacheops will be removed entirely in a future release.</li>
|
|
4674
6057
|
<li><a href="https://github.com/nautobot/nautobot/issues/3121">#3121</a> - Updated Config Contexts documentation to denote support for associating by Device Redundancy Group membership.</li>
|
|
4675
6058
|
</ul>
|
|
4676
|
-
<h3 id="
|
|
6059
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
4677
6060
|
<ul>
|
|
4678
6061
|
<li><a href="https://github.com/nautobot/nautobot/issues/2244">#2244</a> - Fixed an unnecessary and sometimes problematic database access from the Celery worker before it forks off to execute an individual job.</li>
|
|
4679
6062
|
<li><a href="https://github.com/nautobot/nautobot/issues/3097">#3097</a> - Fixed scrolling past select dropdown in modals.</li>
|
|
4680
6063
|
<li><a href="https://github.com/nautobot/nautobot/issues/3104">#3104</a> - Fixed bug preventing filters from being removed from list views.</li>
|
|
4681
6064
|
</ul>
|
|
4682
|
-
<h3 id="
|
|
6065
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
4683
6066
|
<ul>
|
|
4684
6067
|
<li><a href="https://github.com/nautobot/nautobot/issues/3055">#3055</a> - Updated <code>setuptools</code> to <code>65.5.1</code> to address <code>CVE-2022-40897</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
4685
6068
|
<li><a href="https://github.com/nautobot/nautobot/issues/3082">#3082</a> - Updated <code>gitpython</code> to <code>~3.1.30</code> to address <code>CVE-2022-24439</code>.</li>
|
|
4686
6069
|
<li><a href="https://github.com/nautobot/nautobot/issues/3119">#3119</a> - Updated <code>future</code> to <code>0.18.3</code> due to <code>CVE-2022-40899</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
4687
6070
|
</ul>
|
|
4688
6071
|
<h2 id="v157-2023-01-04">v1.5.7 (2023-01-04)<a class="headerlink" href="#v157-2023-01-04" title="Permanent link">¶</a></h2>
|
|
4689
|
-
<h3 id="
|
|
6072
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
4690
6073
|
<ul>
|
|
4691
6074
|
<li><a href="https://github.com/nautobot/nautobot/issues/3065">#3065</a> - Rolled back the changes made in 1.5.6 by #3016 to fix a breaking issue with <code>ALLOWED_HOSTS</code> and change-logging.</li>
|
|
4692
6075
|
</ul>
|
|
4693
|
-
<h3 id="
|
|
6076
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
4694
6077
|
<ul>
|
|
4695
6078
|
<li><a href="https://github.com/nautobot/nautobot/issues/3074">#3074</a> - Sandboxed rendering of Jinja2 templates is now enforced by default in keeping with <a href="https://jinja.palletsprojects.com/en/3.0.x/sandbox/#sandbox">Jinja2 best practices</a>. To enable template sandboxing in a Nautobot instance without needing to upgrade, add the following value to your <code>nautobot_config.py</code> and restart your Nautobot services: <code>TEMPLATES[1]["OPTIONS"]["environment"] = "jinja2.sandbox.SandboxedEnvironment"</code></li>
|
|
4696
6079
|
</ul>
|
|
4697
6080
|
<h2 id="v156-2022-12-23">v1.5.6 (2022-12-23)<a class="headerlink" href="#v156-2022-12-23" title="Permanent link">¶</a></h2>
|
|
4698
|
-
<h3 id="
|
|
6081
|
+
<h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">¶</a></h3>
|
|
4699
6082
|
<ul>
|
|
4700
6083
|
<li><a href="https://github.com/nautobot/nautobot/issues/1768">#1768</a> - Added the display of half-depth rack items from the rear face.</li>
|
|
4701
6084
|
<li><a href="https://github.com/nautobot/nautobot/issues/2481">#2481</a> - Added <code>clone_fields</code> definition to Custom Field class.</li>
|
|
@@ -4705,7 +6088,7 @@ relationship:</p>
|
|
|
4705
6088
|
<li><a href="https://github.com/nautobot/nautobot/issues/3014">#3014</a> - Added support for Git repositories to provide config contexts filtered by Location.</li>
|
|
4706
6089
|
<li><a href="https://github.com/nautobot/nautobot/issues/3025">#3025</a> - Added plugin banner test back to ListObjectsViewTestCase and ensured <code>example_plugin</code> installation before running it.</li>
|
|
4707
6090
|
</ul>
|
|
4708
|
-
<h3 id="
|
|
6091
|
+
<h3 id="changed_11">Changed<a class="headerlink" href="#changed_11" title="Permanent link">¶</a></h3>
|
|
4709
6092
|
<ul>
|
|
4710
6093
|
<li><a href="https://github.com/nautobot/nautobot/issues/2589">#2589</a> - Updated all screenshots on the README.md to gifs.</li>
|
|
4711
6094
|
<li><a href="https://github.com/nautobot/nautobot/issues/2970">#2970</a> - Updated <code>certifi</code> to <code>2022.12.7</code> for <code>CVE-2022-23491</code>. This is a nested dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
@@ -4713,7 +6096,7 @@ relationship:</p>
|
|
|
4713
6096
|
<li><a href="https://github.com/nautobot/nautobot/issues/2995">#2995</a> - Updated <code>Poetry</code> lockfile to use new v2 version format (requiring <code>Poetry>=1.3</code>).</li>
|
|
4714
6097
|
<li><a href="https://github.com/nautobot/nautobot/issues/2995">#2995</a> - Updated included <code>poetry</code> version in <code>nautobot-dev</code> container to <code>1.3.1</code>.</li>
|
|
4715
6098
|
</ul>
|
|
4716
|
-
<h3 id="
|
|
6099
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
4717
6100
|
<ul>
|
|
4718
6101
|
<li><a href="https://github.com/nautobot/nautobot/issues/2898">#2898</a> - Disabled sorting on Computed Field column.</li>
|
|
4719
6102
|
<li><a href="https://github.com/nautobot/nautobot/issues/2967">#2967</a> - Fixed inverted device images in dark mode.</li>
|
|
@@ -4724,34 +6107,34 @@ relationship:</p>
|
|
|
4724
6107
|
<li><a href="https://github.com/nautobot/nautobot/issues/3036">#3036</a> - Fixed MultiValueUUIDFilter's value input field in ObjectListView Advanced FilterSet Form.</li>
|
|
4725
6108
|
</ul>
|
|
4726
6109
|
<h2 id="v155-2022-12-12">v1.5.5 (2022-12-12)<a class="headerlink" href="#v155-2022-12-12" title="Permanent link">¶</a></h2>
|
|
4727
|
-
<h3 id="
|
|
6110
|
+
<h3 id="changed_12">Changed<a class="headerlink" href="#changed_12" title="Permanent link">¶</a></h3>
|
|
4728
6111
|
<ul>
|
|
4729
6112
|
<li><a href="https://github.com/nautobot/nautobot/issues/2663">#2663</a> - Changed <code>tags</code> field in ConfigContextForm to <code>DynamicModelMultipleChoiceField</code>.</li>
|
|
4730
6113
|
</ul>
|
|
4731
|
-
<h3 id="
|
|
6114
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
4732
6115
|
<ul>
|
|
4733
6116
|
<li><a href="https://github.com/nautobot/nautobot/issues/2948">#2948</a> - Fixed incorrect assumption in test base that <code>example_plugin</code> would always be installed.</li>
|
|
4734
6117
|
<li><a href="https://github.com/nautobot/nautobot/issues/2962">#2962</a> - Fixed an error raised when logging errors about a <code>Secret</code> with an invalid <code>provider</code>.</li>
|
|
4735
6118
|
<li><a href="https://github.com/nautobot/nautobot/issues/2963">#2963</a> - Fixed 500 error when combining filtering on relationships with concrete fields.</li>
|
|
4736
6119
|
</ul>
|
|
4737
6120
|
<h2 id="v154-2022-12-02">v1.5.4 (2022-12-02)<a class="headerlink" href="#v154-2022-12-02" title="Permanent link">¶</a></h2>
|
|
4738
|
-
<h3 id="
|
|
6121
|
+
<h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">¶</a></h3>
|
|
4739
6122
|
<ul>
|
|
4740
6123
|
<li><a href="https://github.com/nautobot/nautobot/issues/86">#86</a> - Added user-guide for relationships and S3 storage backends.</li>
|
|
4741
6124
|
</ul>
|
|
4742
|
-
<h3 id="
|
|
6125
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
4743
6126
|
<ul>
|
|
4744
6127
|
<li><a href="https://github.com/nautobot/nautobot/issues/2154">#2154</a> - Fixed SwaggerUI use of Authorization Token, API calls in SwaggerUI now use appropriate token pattern and curl command match the correct pattern.</li>
|
|
4745
6128
|
<li><a href="https://github.com/nautobot/nautobot/issues/2931">#2931</a> - Fixed title and breadcrumb rendering in NautobotUIViewSet list views.</li>
|
|
4746
6129
|
<li><a href="https://github.com/nautobot/nautobot/issues/2936">#2936</a> - Fixed NautobotUIViewSet views not being able to delete objects.</li>
|
|
4747
6130
|
</ul>
|
|
4748
6131
|
<h2 id="v153-2022-11-29">v1.5.3 (2022-11-29)<a class="headerlink" href="#v153-2022-11-29" title="Permanent link">¶</a></h2>
|
|
4749
|
-
<h3 id="
|
|
6132
|
+
<h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">¶</a></h3>
|
|
4750
6133
|
<ul>
|
|
4751
6134
|
<li><a href="https://github.com/nautobot/nautobot/issues/2924">#2924</a> - Fix deprecation warning flag check throwing error on startup with plugins installed.</li>
|
|
4752
6135
|
</ul>
|
|
4753
6136
|
<h2 id="v152-2022-11-28">v1.5.2 (2022-11-28)<a class="headerlink" href="#v152-2022-11-28" title="Permanent link">¶</a></h2>
|
|
4754
|
-
<h3 id="
|
|
6137
|
+
<h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">¶</a></h3>
|
|
4755
6138
|
<ul>
|
|
4756
6139
|
<li><a href="https://github.com/nautobot/nautobot/issues/1273">#1273</a> - Added section "VS Code Remote Debugging Configuration" to development chapter in documentation.</li>
|
|
4757
6140
|
<li><a href="https://github.com/nautobot/nautobot/issues/2473">#2473</a> - Added <code>multipart/form-data</code> support to Job run API.</li>
|
|
@@ -4760,7 +6143,7 @@ relationship:</p>
|
|
|
4760
6143
|
<li><a href="https://github.com/nautobot/nautobot/issues/2759">#2759</a> - Add prometheus metrics for health check results</li>
|
|
4761
6144
|
<li><a href="https://github.com/nautobot/nautobot/issues/2798">#2798</a> - Added <code>LOG_DEPRECATION_WARNINGS</code> configuration variable and corresponding environment-variable support.</li>
|
|
4762
6145
|
</ul>
|
|
4763
|
-
<h3 id="
|
|
6146
|
+
<h3 id="changed_13">Changed<a class="headerlink" href="#changed_13" title="Permanent link">¶</a></h3>
|
|
4764
6147
|
<ul>
|
|
4765
6148
|
<li><a href="https://github.com/nautobot/nautobot/issues/2644">#2644</a> - Changed published accepted content types for REST API to remove unsupported types.</li>
|
|
4766
6149
|
<li><a href="https://github.com/nautobot/nautobot/issues/2723">#2723</a> - Moved app (plugin) development documentation into its own section.</li>
|
|
@@ -4773,7 +6156,7 @@ relationship:</p>
|
|
|
4773
6156
|
<li><a href="https://github.com/nautobot/nautobot/issues/2838">#2838</a> - Fixed filter selection box colors in dark mode.</li>
|
|
4774
6157
|
<li><a href="https://github.com/nautobot/nautobot/issues/2878">#2878</a> - Changed Upstream Workflow Job to continue on error for group, not each specific job.</li>
|
|
4775
6158
|
</ul>
|
|
4776
|
-
<h3 id="
|
|
6159
|
+
<h3 id="fixed_16">Fixed<a class="headerlink" href="#fixed_16" title="Permanent link">¶</a></h3>
|
|
4777
6160
|
<ul>
|
|
4778
6161
|
<li><a href="https://github.com/nautobot/nautobot/issues/1519">#1519</a> - Extending the model table columns that need to display copy button when hovered over.</li>
|
|
4779
6162
|
<li><a href="https://github.com/nautobot/nautobot/issues/2477">#2477</a> - Fixed last login time being updated during maintenance mode when remote user authentication is used.</li>
|
|
@@ -4786,17 +6169,17 @@ relationship:</p>
|
|
|
4786
6169
|
<li><a href="https://github.com/nautobot/nautobot/issues/2837">#2837</a> - Fixed incorrect logic in <code>nautobot.utilities.utils.is_single_choice_field</code> that was causing valid filters to report as invalid.</li>
|
|
4787
6170
|
</ul>
|
|
4788
6171
|
<h2 id="v151-2022-11-14">v1.5.1 (2022-11-14)<a class="headerlink" href="#v151-2022-11-14" title="Permanent link">¶</a></h2>
|
|
4789
|
-
<h3 id="
|
|
6172
|
+
<h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">¶</a></h3>
|
|
4790
6173
|
<ul>
|
|
4791
6174
|
<li><a href="https://github.com/nautobot/nautobot/issues/2500">#2500</a> - Added <code>try/except</code> block to catch <code>NoReverseMatch</code> exception in NotesSerializerMixin and return helpful message.</li>
|
|
4792
6175
|
<li><a href="https://github.com/nautobot/nautobot/issues/2556">#2556</a> - Revised TODO/FIXME comments for more clarity.</li>
|
|
4793
6176
|
<li><a href="https://github.com/nautobot/nautobot/issues/2740">#2740</a> - Added ObjectChangeLogView and ObjectNotesView Viewset mixins and routes.</li>
|
|
4794
6177
|
</ul>
|
|
4795
|
-
<h3 id="
|
|
6178
|
+
<h3 id="changed_14">Changed<a class="headerlink" href="#changed_14" title="Permanent link">¶</a></h3>
|
|
4796
6179
|
<ul>
|
|
4797
6180
|
<li><a href="https://github.com/nautobot/nautobot/issues/1813">#1813</a> - Updated Example_Plugin to use NautobotUIViewSet.</li>
|
|
4798
6181
|
</ul>
|
|
4799
|
-
<h3 id="
|
|
6182
|
+
<h3 id="fixed_17">Fixed<a class="headerlink" href="#fixed_17" title="Permanent link">¶</a></h3>
|
|
4800
6183
|
<ul>
|
|
4801
6184
|
<li><a href="https://github.com/nautobot/nautobot/issues/2470">#2470</a> - Fixed incorrect automatic generation of Location slugs in the UI.</li>
|
|
4802
6185
|
<li><a href="https://github.com/nautobot/nautobot/issues/2757">#2757</a> - Fixed filters on default filter form replaces filters on dynamic filter form on submit</li>
|
|
@@ -4807,7 +6190,7 @@ relationship:</p>
|
|
|
4807
6190
|
<h2 id="v150-2022-11-08">v1.5.0 (2022-11-08)<a class="headerlink" href="#v150-2022-11-08" title="Permanent link">¶</a></h2>
|
|
4808
6191
|
<p>Unchanged from v1.5.0-beta.1.</p>
|
|
4809
6192
|
<h2 id="v150-beta1-2022-11-07">v1.5.0-beta.1 (2022-11-07)<a class="headerlink" href="#v150-beta1-2022-11-07" title="Permanent link">¶</a></h2>
|
|
4810
|
-
<h3 id="
|
|
6193
|
+
<h3 id="added_15">Added<a class="headerlink" href="#added_15" title="Permanent link">¶</a></h3>
|
|
4811
6194
|
<ul>
|
|
4812
6195
|
<li><a href="https://github.com/nautobot/nautobot/issues/270">#270</a> - Added custom fields user guide to documentation.</li>
|
|
4813
6196
|
<li><a href="https://github.com/nautobot/nautobot/issues/873">#873</a> - Made it possible to require Relationships to be included when editing or creating the related models.</li>
|
|
@@ -4835,7 +6218,7 @@ relationship:</p>
|
|
|
4835
6218
|
<li><a href="https://github.com/nautobot/nautobot/issues/2617">#2617</a> - Added dynamic filter form support to specialized list views.</li>
|
|
4836
6219
|
<li><a href="https://github.com/nautobot/nautobot/issues/2686">#2686</a> - Added test helper method to <code>FilterTestCases</code> to find values suitable for testing multiple choice filters.</li>
|
|
4837
6220
|
</ul>
|
|
4838
|
-
<h3 id="
|
|
6221
|
+
<h3 id="changed_15">Changed<a class="headerlink" href="#changed_15" title="Permanent link">¶</a></h3>
|
|
4839
6222
|
<ul>
|
|
4840
6223
|
<li><a href="https://github.com/nautobot/nautobot/issues/1892">#1892</a> - Updated <code>Device</code> to have <code>device_redundancy_group</code> relationship, <code>device_redundancy_group_priority</code> numeric property.</li>
|
|
4841
6224
|
<li><a href="https://github.com/nautobot/nautobot/issues/1892">#1892</a> - Updated <code>ConfigContext</code> to have <code>ManyToManyField</code> to <code>dcim.DeviceRedundancyGroup</code> for the purposes of applying a <code>ConfigContext</code> based upon a <code>Device</code>s <code>DeviceRedundancyGroup</code> membership.</li>
|
|
@@ -4860,7 +6243,7 @@ relationship:</p>
|
|
|
4860
6243
|
<li><a href="https://github.com/nautobot/nautobot/issues/2711">#2711</a> - Updated <code>Pillow</code> package dependency from 9.2.0 to 9.3.0.</li>
|
|
4861
6244
|
<li><a href="https://github.com/nautobot/nautobot/issues/2746">#2746</a> - Changed <code>LocationType</code> test case to not attempt to re-parent a <code>LocationType</code> with descendant <code>Locations</code>.</li>
|
|
4862
6245
|
</ul>
|
|
4863
|
-
<h3 id="
|
|
6246
|
+
<h3 id="fixed_18">Fixed<a class="headerlink" href="#fixed_18" title="Permanent link">¶</a></h3>
|
|
4864
6247
|
<ul>
|
|
4865
6248
|
<li><a href="https://github.com/nautobot/nautobot/issues/192">#192</a> - Eliminated Unit Test noisy output.</li>
|
|
4866
6249
|
<li><a href="https://github.com/nautobot/nautobot/issues/2266">#2266</a> - Fixed navbar floating over main viewport scrollbar.</li>
|