nautobot 2.1.0b1__py3-none-any.whl → 2.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nautobot/__init__.py +1 -3
- nautobot/apps/__init__.py +1 -2
- nautobot/apps/admin.py +0 -1
- nautobot/apps/api.py +0 -1
- nautobot/apps/change_logging.py +0 -1
- nautobot/apps/choices.py +0 -3
- nautobot/apps/datasources.py +2 -2
- nautobot/apps/exceptions.py +0 -1
- nautobot/apps/factory.py +0 -1
- nautobot/apps/filters.py +6 -9
- nautobot/apps/forms.py +1 -2
- nautobot/apps/graphql.py +0 -1
- nautobot/apps/jobs.py +2 -1
- nautobot/apps/models.py +4 -2
- nautobot/apps/querysets.py +0 -1
- nautobot/apps/secrets.py +0 -1
- nautobot/apps/tables.py +0 -1
- nautobot/apps/testing.py +0 -1
- nautobot/apps/ui.py +1 -3
- nautobot/apps/urls.py +0 -1
- nautobot/apps/utils.py +0 -1
- nautobot/apps/views.py +0 -1
- nautobot/circuits/api/serializers.py +1 -1
- nautobot/circuits/api/urls.py +1 -1
- nautobot/circuits/api/views.py +2 -1
- nautobot/circuits/apps.py +1 -1
- nautobot/circuits/choices.py +0 -1
- nautobot/circuits/factory.py +1 -1
- nautobot/circuits/filters.py +2 -1
- nautobot/circuits/forms.py +2 -2
- nautobot/circuits/homepage.py +0 -1
- nautobot/circuits/migrations/0001_initial_part_1.py +3 -1
- nautobot/circuits/migrations/0002_initial_part_2.py +2 -1
- nautobot/circuits/migrations/0003_auto_slug.py +1 -0
- nautobot/circuits/migrations/0005_providernetwork.py +4 -2
- nautobot/circuits/migrations/0013_alter_circuittermination__path.py +1 -0
- nautobot/circuits/migrations/0014_related_name_changes.py +1 -0
- nautobot/circuits/migrations/0016_tagsfield.py +1 -0
- nautobot/circuits/migrations/0018_status_nonnullable.py +1 -0
- nautobot/circuits/models.py +2 -2
- nautobot/circuits/navigation.py +0 -1
- nautobot/circuits/signals.py +3 -2
- nautobot/circuits/tables.py +1 -0
- nautobot/circuits/tests/integration/test_relationships.py +1 -1
- nautobot/circuits/tests/test_api.py +1 -1
- nautobot/circuits/tests/test_urls.py +1 -1
- nautobot/circuits/tests/test_views.py +1 -0
- nautobot/circuits/urls.py +1 -1
- nautobot/circuits/views.py +1 -10
- nautobot/core/__init__.py +0 -1
- nautobot/core/admin.py +3 -5
- nautobot/core/api/__init__.py +0 -1
- nautobot/core/api/metadata.py +4 -6
- nautobot/core/api/pagination.py +2 -2
- nautobot/core/api/parsers.py +1 -3
- nautobot/core/api/renderers.py +0 -1
- nautobot/core/api/schema.py +2 -3
- nautobot/core/api/serializers.py +9 -7
- nautobot/core/api/urls.py +1 -5
- nautobot/core/api/utils.py +14 -15
- nautobot/core/api/versioning.py +1 -1
- nautobot/core/api/views.py +22 -91
- nautobot/core/apps/__init__.py +5 -7
- nautobot/core/authentication.py +1 -1
- nautobot/core/celery/__init__.py +1 -2
- nautobot/core/celery/control.py +0 -2
- nautobot/core/celery/encoders.py +0 -1
- nautobot/core/celery/schedulers.py +1 -2
- nautobot/core/celery/task.py +1 -1
- nautobot/core/checks.py +31 -2
- nautobot/core/choices.py +2 -2
- nautobot/core/cli/__init__.py +8 -17
- nautobot/core/context_processors.py +1 -5
- nautobot/core/factory.py +2 -2
- nautobot/core/filters.py +1 -1
- nautobot/core/forms/fields.py +2 -4
- nautobot/core/forms/forms.py +1 -1
- nautobot/core/forms/search.py +1 -1
- nautobot/core/forms/utils.py +1 -1
- nautobot/core/graphql/__init__.py +2 -3
- nautobot/core/graphql/generators.py +2 -2
- nautobot/core/graphql/schema.py +21 -8
- nautobot/core/graphql/schema_init.py +0 -1
- nautobot/core/graphql/types.py +10 -0
- nautobot/core/graphql/utils.py +1 -2
- nautobot/core/management/commands/generate_test_data.py +7 -6
- nautobot/core/management/commands/makemigrations.py +1 -1
- nautobot/core/management/commands/migrate.py +1 -1
- nautobot/core/management/commands/post_upgrade.py +1 -15
- nautobot/core/management/commands/refresh_content_type_cache.py +1 -2
- nautobot/core/management/commands/send_installation_metrics.py +2 -3
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/middleware.py +2 -2
- nautobot/core/models/__init__.py +12 -12
- nautobot/core/models/fields.py +1 -1
- nautobot/core/models/generics.py +2 -3
- nautobot/core/models/managers.py +0 -1
- nautobot/core/models/name_color_content_types.py +2 -2
- nautobot/core/models/tree_queries.py +2 -4
- nautobot/core/models/validators.py +1 -1
- nautobot/core/releases.py +1 -1
- nautobot/core/runner/importer.py +2 -25
- nautobot/core/runner/runner.py +2 -2
- nautobot/core/runner/settings.py +1 -1
- nautobot/core/settings.py +15 -21
- nautobot/core/settings_funcs.py +1 -2
- nautobot/core/signals.py +0 -1
- nautobot/core/tables.py +1 -1
- nautobot/core/templates/admin/base.html +9 -9
- nautobot/core/templates/exceptions/programming_error.html +2 -2
- nautobot/core/templates/graphene/graphiql.html +9 -3
- nautobot/core/templates/home.html +26 -6
- nautobot/core/templates/inc/footer.html +0 -7
- nautobot/core/templates/inc/javascript.html +4 -2
- nautobot/core/templates/inc/media.html +2 -2
- nautobot/core/templates/inc/nav_menu.html +27 -25
- nautobot/core/templates/inc/object_details_advanced_panel.html +12 -0
- nautobot/core/templates/nautobot_config.py.j2 +4 -4
- nautobot/core/templates/utilities/theme_preview.html +883 -0
- nautobot/core/templatetags/bootstrapped_goodies_tags.py +6 -3
- nautobot/core/templatetags/buttons.py +2 -1
- nautobot/core/templatetags/helpers.py +45 -18
- nautobot/core/testing/__init__.py +1 -2
- nautobot/core/testing/api.py +2 -4
- nautobot/core/testing/filters.py +1 -1
- nautobot/core/testing/integration.py +2 -2
- nautobot/core/testing/migrations.py +1 -0
- nautobot/core/testing/mixins.py +1 -2
- nautobot/core/testing/schema.py +1 -1
- nautobot/core/testing/utils.py +3 -3
- nautobot/core/testing/views.py +8 -8
- nautobot/core/tests/integration/test_home.py +1 -1
- nautobot/core/tests/integration/test_navbar.py +2 -2
- nautobot/core/tests/integration/test_plugin_home.py +2 -1
- nautobot/core/tests/integration/test_plugin_navbar.py +6 -6
- nautobot/core/tests/nautobot_config.py +3 -3
- nautobot/core/tests/runner.py +3 -4
- nautobot/core/tests/test_api.py +6 -51
- nautobot/core/tests/test_authentication.py +2 -3
- nautobot/core/tests/test_checks.py +1 -2
- nautobot/core/tests/test_config.py +1 -1
- nautobot/core/tests/test_csv.py +4 -4
- nautobot/core/tests/test_factory.py +1 -3
- nautobot/core/tests/test_filters.py +4 -7
- nautobot/core/tests/test_forms.py +3 -6
- nautobot/core/tests/test_graphql.py +33 -17
- nautobot/core/tests/test_jinja_filters.py +5 -4
- nautobot/core/tests/test_jobs.py +1 -1
- nautobot/core/tests/test_models.py +28 -3
- nautobot/core/tests/test_navigations.py +2 -1
- nautobot/core/tests/test_openapi.py +0 -1
- nautobot/core/tests/test_paginator.py +2 -2
- nautobot/core/tests/test_releases.py +2 -2
- nautobot/core/tests/test_tables.py +1 -1
- nautobot/core/tests/test_templatetags_helpers.py +17 -2
- nautobot/core/tests/test_templatetags_netutils.py +1 -2
- nautobot/core/tests/test_utils.py +4 -8
- nautobot/core/tests/test_views.py +95 -1
- nautobot/core/tests/test_views_utils.py +0 -1
- nautobot/core/urls.py +24 -4
- nautobot/core/utils/color.py +1 -1
- nautobot/core/utils/data.py +1 -2
- nautobot/core/utils/filtering.py +4 -5
- nautobot/core/utils/git.py +6 -2
- nautobot/core/utils/logging.py +2 -1
- nautobot/core/utils/lookup.py +4 -6
- nautobot/core/utils/migrations.py +1 -0
- nautobot/core/utils/permissions.py +2 -4
- nautobot/core/utils/requests.py +10 -0
- nautobot/core/views/__init__.py +32 -8
- nautobot/core/views/generic.py +14 -13
- nautobot/core/views/mixins.py +24 -22
- nautobot/core/views/renderers.py +1 -1
- nautobot/core/views/routers.py +6 -0
- nautobot/core/views/utils.py +2 -1
- nautobot/dcim/api/urls.py +1 -1
- nautobot/dcim/api/views.py +6 -5
- nautobot/dcim/apps.py +1 -1
- nautobot/dcim/choices.py +4 -1
- nautobot/dcim/constants.py +0 -1
- nautobot/dcim/elevations.py +1 -2
- nautobot/dcim/factory.py +125 -13
- nautobot/dcim/fields.py +1 -0
- nautobot/dcim/filters/__init__.py +2 -3
- nautobot/dcim/filters/mixins.py +1 -1
- nautobot/dcim/forms.py +37 -44
- nautobot/dcim/graphql/types.py +16 -17
- nautobot/dcim/migrations/0001_initial_part_1.py +4 -2
- nautobot/dcim/migrations/0002_initial_part_2.py +2 -1
- nautobot/dcim/migrations/0003_initial_part_3.py +2 -1
- nautobot/dcim/migrations/0004_initial_part_4.py +2 -1
- nautobot/dcim/migrations/0006_auto_slug.py +1 -0
- nautobot/dcim/migrations/0009_add_natural_indexing.py +1 -0
- nautobot/dcim/migrations/0010_interface_status.py +1 -0
- nautobot/dcim/migrations/0011_interface_status_data_migration.py +1 -0
- nautobot/dcim/migrations/0013_location_location_type.py +4 -2
- nautobot/dcim/migrations/0014_location_status_data_migration.py +1 -0
- nautobot/dcim/migrations/0016_device_components__timestamp_data_migration.py +0 -1
- nautobot/dcim/migrations/0018_device_redundancy_group.py +4 -2
- nautobot/dcim/migrations/0019_device_redundancy_group_data_migration.py +1 -0
- nautobot/dcim/migrations/0022_interface_redundancy_group.py +3 -1
- nautobot/dcim/migrations/0023_interface_redundancy_group_data_migration.py +1 -0
- nautobot/dcim/migrations/0024_move_site_fields_to_location_model.py +2 -1
- nautobot/dcim/migrations/0027_alter_interface_mac_address.py +1 -0
- nautobot/dcim/migrations/0028_alter_device_and_rack_role_add_new_role.py +1 -0
- nautobot/dcim/migrations/0029_device_and_rack_roles_data_migrations.py +1 -0
- nautobot/dcim/migrations/0033_add_tree_managers_and_foreign_keys_pre_data_migration.py +1 -0
- nautobot/dcim/migrations/0034_migrate_region_and_site_data_to_locations.py +1 -2
- nautobot/dcim/migrations/0038_fixup_fks_and_related_names.py +1 -0
- nautobot/dcim/migrations/0039_related_name_changes.py +1 -0
- nautobot/dcim/migrations/0042_alter_location_managers.py +1 -0
- nautobot/dcim/migrations/0044_tagsfield.py +1 -0
- nautobot/dcim/migrations/0047_status_nonnullable.py +1 -0
- nautobot/dcim/migrations/0051_interface_redundancy_group_nullable_status.py +1 -0
- nautobot/dcim/models/cables.py +3 -3
- nautobot/dcim/models/device_component_templates.py +6 -6
- nautobot/dcim/models/devices.py +9 -4
- nautobot/dcim/models/locations.py +6 -1
- nautobot/dcim/models/power.py +1 -1
- nautobot/dcim/models/racks.py +5 -4
- nautobot/dcim/navigation.py +0 -1
- nautobot/dcim/signals.py +3 -2
- nautobot/dcim/tables/__init__.py +5 -4
- nautobot/dcim/tables/cables.py +1 -0
- nautobot/dcim/tables/devices.py +1 -0
- nautobot/dcim/tables/locations.py +1 -1
- nautobot/dcim/tables/power.py +1 -0
- nautobot/dcim/tables/racks.py +2 -1
- nautobot/dcim/templates/dcim/device/consoleports.html +2 -2
- nautobot/dcim/templates/dcim/device/consoleserverports.html +2 -2
- nautobot/dcim/templates/dcim/device/devicebays.html +1 -1
- nautobot/dcim/templates/dcim/device/frontports.html +2 -2
- nautobot/dcim/templates/dcim/device/interfaces.html +4 -4
- nautobot/dcim/templates/dcim/device/inventory.html +1 -1
- nautobot/dcim/templates/dcim/device/poweroutlets.html +2 -2
- nautobot/dcim/templates/dcim/device/powerports.html +2 -2
- nautobot/dcim/templates/dcim/device/rearports.html +2 -2
- nautobot/dcim/templates/dcim/inc/location_hierarchy.html +4 -2
- nautobot/dcim/templates/dcim/rack.html +1 -1
- nautobot/dcim/templates/dcim/rack_elevation_list.html +1 -1
- nautobot/dcim/templates/dcim/rackreservation.html +1 -1
- nautobot/dcim/tests/test_api.py +7 -7
- nautobot/dcim/tests/test_cablepaths.py +0 -1
- nautobot/dcim/tests/test_filters.py +16 -13
- nautobot/dcim/tests/test_forms.py +2 -3
- nautobot/dcim/tests/test_graphql.py +1 -0
- nautobot/dcim/tests/test_migrations.py +2 -2
- nautobot/dcim/tests/test_models.py +2 -2
- nautobot/dcim/tests/test_views.py +77 -14
- nautobot/dcim/urls.py +3 -2
- nautobot/dcim/utils.py +1 -1
- nautobot/dcim/views.py +4 -3
- nautobot/extras/admin.py +2 -1
- nautobot/extras/api/customfields.py +0 -2
- nautobot/extras/api/mixins.py +0 -1
- nautobot/extras/api/serializers.py +4 -4
- nautobot/extras/api/urls.py +1 -1
- nautobot/extras/api/views.py +1 -1
- nautobot/extras/apps.py +3 -4
- nautobot/extras/choices.py +3 -18
- nautobot/extras/context_managers.py +1 -1
- nautobot/extras/datasources/__init__.py +3 -1
- nautobot/extras/datasources/git.py +33 -12
- nautobot/extras/datasources/utils.py +0 -1
- nautobot/extras/factory.py +20 -0
- nautobot/extras/filters/__init__.py +2 -3
- nautobot/extras/filters/customfields.py +0 -1
- nautobot/extras/filters/mixins.py +1 -1
- nautobot/extras/forms/__init__.py +3 -4
- nautobot/extras/forms/base.py +1 -1
- nautobot/extras/forms/forms.py +29 -11
- nautobot/extras/forms/mixins.py +1 -1
- nautobot/extras/graphql/types.py +2 -2
- nautobot/extras/health_checks.py +1 -1
- nautobot/extras/jobs.py +43 -25
- nautobot/extras/management/__init__.py +0 -1
- nautobot/extras/management/commands/refresh_dynamic_group_member_caches.py +1 -1
- nautobot/extras/management/commands/runjob.py +3 -3
- nautobot/extras/management/commands/webhook_receiver.py +1 -2
- nautobot/extras/migrations/0001_initial_part_1.py +2 -1
- nautobot/extras/migrations/0002_initial_part_2.py +2 -1
- nautobot/extras/migrations/0003_initial_part_3.py +1 -0
- nautobot/extras/migrations/0006_graphqlquery.py +2 -1
- nautobot/extras/migrations/0007_configcontextschema.py +3 -1
- nautobot/extras/migrations/0009_computedfield.py +3 -1
- nautobot/extras/migrations/0011_fileattachment_fileproxy.py +3 -1
- nautobot/extras/migrations/0012_healthchecktestmodel.py +2 -1
- nautobot/extras/migrations/0014_auto_slug.py +1 -0
- nautobot/extras/migrations/0015_scheduled_job.py +3 -1
- nautobot/extras/migrations/0016_secret.py +4 -2
- nautobot/extras/migrations/0017_joblogentry.py +2 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +2 -1
- nautobot/extras/migrations/0021_customfield_changelog_data.py +3 -2
- nautobot/extras/migrations/0022_objectchange_object_datav2.py +1 -0
- nautobot/extras/migrations/0023_job_model.py +4 -2
- nautobot/extras/migrations/0026_job_add_gitrepository_fk.py +1 -0
- nautobot/extras/migrations/0029_dynamicgroup.py +3 -1
- nautobot/extras/migrations/0031_tag_content_types.py +1 -0
- nautobot/extras/migrations/0032_tag_content_types_data_migration.py +1 -0
- nautobot/extras/migrations/0040_dynamicgroup__dynamicgroupmembership.py +2 -1
- nautobot/extras/migrations/0041_jobresult_job_kwargs.py +1 -0
- nautobot/extras/migrations/0043_note.py +3 -1
- nautobot/extras/migrations/0044_add_job_hook.py +3 -1
- nautobot/extras/migrations/0046_populate_custom_field_slug_label.py +1 -0
- nautobot/extras/migrations/0047_enforce_custom_field_slug.py +1 -0
- nautobot/extras/migrations/0051_add_job_task_queues.py +1 -0
- nautobot/extras/migrations/0055_configcontext_dynamic_groups.py +1 -0
- nautobot/extras/migrations/0057_jobbutton.py +3 -1
- nautobot/extras/migrations/0065_configcontext_data_migrations.py +1 -0
- nautobot/extras/migrations/0067_migrate_job_result_status.py +0 -1
- nautobot/extras/migrations/0068_jobresult__add_celery_fields.py +1 -0
- nautobot/extras/migrations/0071_replace_related_names.py +1 -0
- nautobot/extras/migrations/0077_migrate_custom_field_data.py +1 -0
- nautobot/extras/migrations/0078_remove_name_field_and_make_label_field_non_nullable.py +1 -0
- nautobot/extras/migrations/0080_tagsfield.py +1 -0
- nautobot/extras/migrations/0082_rename_relationship_name_to_label.py +1 -0
- nautobot/extras/migrations/0083_ensure_relationship_keys_are_unique.py +1 -0
- nautobot/extras/migrations/0090_joblogentry__log_level_data_migration.py +0 -1
- nautobot/extras/migrations/0095_ensure_note_timestamps_are_unique.py +4 -5
- nautobot/extras/migrations/0097_alter_job_result_remove_result.py +1 -0
- nautobot/extras/migrations/0100_fileproxy_job_result.py +1 -0
- nautobot/extras/migrations/0101_externalintegration.py +9 -1
- nautobot/extras/models/__init__.py +2 -3
- nautobot/extras/models/change_logging.py +0 -1
- nautobot/extras/models/customfields.py +13 -4
- nautobot/extras/models/datasources.py +2 -2
- nautobot/extras/models/groups.py +3 -4
- nautobot/extras/models/jobs.py +13 -7
- nautobot/extras/models/models.py +61 -24
- nautobot/extras/models/relationships.py +8 -4
- nautobot/extras/models/roles.py +1 -1
- nautobot/extras/models/secrets.py +1 -3
- nautobot/extras/models/tags.py +0 -1
- nautobot/extras/navigation.py +0 -1
- nautobot/extras/plugins/__init__.py +6 -7
- nautobot/extras/plugins/tables.py +1 -2
- nautobot/extras/plugins/utils.py +1 -1
- nautobot/extras/plugins/views.py +21 -21
- nautobot/extras/querysets.py +30 -13
- nautobot/extras/signals.py +6 -7
- nautobot/extras/tables.py +13 -5
- nautobot/extras/tasks.py +1 -2
- nautobot/extras/templates/extras/configcontext_edit.html +1 -1
- nautobot/extras/templates/extras/customfield_edit.html +7 -12
- nautobot/extras/templates/extras/dynamicgroup_edit.html +42 -47
- nautobot/extras/templates/extras/externalintegration_retrieve.html +12 -0
- nautobot/extras/templates/extras/externalintegration_update.html +28 -0
- nautobot/extras/templates/extras/gitrepository_result.html +2 -2
- nautobot/extras/templates/extras/graphqlquery.html +4 -2
- nautobot/extras/templates/extras/inc/jobresult_js.html +1 -1
- nautobot/extras/templates/extras/job_list.html +1 -1
- nautobot/extras/templates/extras/jobresult.html +2 -2
- nautobot/extras/templates/extras/secretsgroup_edit.html +40 -45
- nautobot/extras/templatetags/custom_links.py +2 -3
- nautobot/extras/templatetags/job_buttons.py +76 -83
- nautobot/extras/templatetags/log_levels.py +0 -1
- nautobot/extras/templatetags/plugins.py +1 -1
- nautobot/extras/test_jobs/api_test_job.py +1 -2
- nautobot/extras/test_jobs/atomic_transaction.py +1 -2
- nautobot/extras/test_jobs/dry_run.py +1 -2
- nautobot/extras/test_jobs/fail.py +1 -2
- nautobot/extras/test_jobs/field_order.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -2
- nautobot/extras/test_jobs/file_upload_pass.py +1 -2
- nautobot/extras/test_jobs/has_sensitive_variables.py +1 -2
- nautobot/extras/test_jobs/ipaddress_vars.py +1 -4
- nautobot/extras/test_jobs/job_button_receiver.py +1 -2
- nautobot/extras/test_jobs/job_hook_receiver.py +1 -2
- nautobot/extras/test_jobs/job_variables.py +7 -2
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -2
- nautobot/extras/test_jobs/log_redaction.py +1 -2
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -2
- nautobot/extras/test_jobs/modify_db.py +1 -2
- nautobot/extras/test_jobs/object_var_optional.py +1 -2
- nautobot/extras/test_jobs/object_var_required.py +1 -2
- nautobot/extras/test_jobs/object_vars.py +1 -2
- nautobot/extras/test_jobs/pass.py +1 -2
- nautobot/extras/test_jobs/profiling.py +1 -2
- nautobot/extras/tests/integration/__init__.py +1 -1
- nautobot/extras/tests/integration/test_computedfields.py +2 -2
- nautobot/extras/tests/integration/test_configcontextschema.py +5 -5
- nautobot/extras/tests/integration/test_plugins.py +5 -4
- nautobot/extras/tests/integration/test_tagfilter.py +1 -1
- nautobot/extras/tests/test_api.py +15 -9
- nautobot/extras/tests/test_changelog.py +3 -2
- nautobot/extras/tests/test_context_managers.py +6 -3
- nautobot/extras/tests/test_customfields.py +4 -4
- nautobot/extras/tests/test_datasources.py +1 -1
- nautobot/extras/tests/test_dynamicgroups.py +3 -3
- nautobot/extras/tests/test_filters.py +3 -2
- nautobot/extras/tests/test_forms.py +5 -6
- nautobot/extras/tests/test_git.py +1 -1
- nautobot/extras/tests/test_job_variables.py +20 -1
- nautobot/extras/tests/test_jobs.py +34 -5
- nautobot/extras/tests/test_models.py +156 -6
- nautobot/extras/tests/test_notes.py +0 -1
- nautobot/extras/tests/test_plugins.py +71 -9
- nautobot/extras/tests/test_relationships.py +3 -3
- nautobot/extras/tests/test_tags.py +1 -1
- nautobot/extras/tests/test_views.py +105 -25
- nautobot/extras/tests/test_webhooks.py +4 -5
- nautobot/extras/urls.py +0 -2
- nautobot/extras/utils.py +11 -9
- nautobot/extras/views.py +42 -44
- nautobot/generate_secret_key.py +10 -5
- nautobot/ipam/api/serializers.py +1 -2
- nautobot/ipam/api/urls.py +1 -1
- nautobot/ipam/api/views.py +1 -0
- nautobot/ipam/apps.py +2 -1
- nautobot/ipam/factory.py +6 -9
- nautobot/ipam/fields.py +1 -1
- nautobot/ipam/filters.py +42 -58
- nautobot/ipam/formfields.py +1 -2
- nautobot/ipam/forms.py +5 -4
- nautobot/ipam/graphql/types.py +1 -1
- nautobot/ipam/homepage.py +0 -1
- nautobot/ipam/lookups.py +2 -3
- nautobot/ipam/migrations/0002_initial_part_2.py +2 -1
- nautobot/ipam/migrations/0003_remove_max_length.py +1 -0
- nautobot/ipam/migrations/0004_fixup_p2p_broadcast.py +0 -1
- nautobot/ipam/migrations/0005_auto_slug.py +1 -0
- nautobot/ipam/migrations/0010_alter_ipam_role_add_new_role.py +1 -0
- nautobot/ipam/migrations/0011_migrate_ipam_role_data.py +1 -0
- nautobot/ipam/migrations/0020_related_name_changes.py +1 -0
- nautobot/ipam/migrations/0022_aggregate_to_prefix_data_migration.py +1 -2
- nautobot/ipam/migrations/0024_interface_to_ipaddress_m2m.py +2 -1
- nautobot/ipam/migrations/0025_interface_ipaddress_m2m_data_migration.py +15 -13
- nautobot/ipam/migrations/0028_tagsfield.py +1 -0
- nautobot/ipam/migrations/0030_ipam__namespaces.py +3 -1
- nautobot/ipam/migrations/0034_status_nonnullable.py +1 -0
- nautobot/ipam/migrations/0037_data_migration_vlan_group_name_uniqueness.py +0 -1
- nautobot/ipam/migrations/0039_alter_ipaddresstointerface_ip_address.py +20 -0
- nautobot/ipam/models.py +11 -8
- nautobot/ipam/navigation.py +0 -1
- nautobot/ipam/querysets.py +48 -49
- nautobot/ipam/tables.py +11 -2
- nautobot/ipam/templates/ipam/ipaddress.html +30 -6
- nautobot/ipam/templates/ipam/ipaddress_interfaces.html +3 -3
- nautobot/ipam/templates/ipam/ipaddress_vm_interfaces.html +32 -0
- nautobot/ipam/tests/test_api.py +2 -2
- nautobot/ipam/tests/test_filters.py +13 -17
- nautobot/ipam/tests/test_migrations.py +1 -2
- nautobot/ipam/tests/test_models.py +17 -2
- nautobot/ipam/tests/test_ordering.py +1 -1
- nautobot/ipam/tests/test_querysets.py +2 -2
- nautobot/ipam/tests/test_views.py +6 -6
- nautobot/ipam/urls.py +6 -0
- nautobot/ipam/utils/migrations.py +0 -1
- nautobot/ipam/views.py +26 -6
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css +142 -142
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +307 -307
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/css/base.css +59 -30
- nautobot/project-static/css/dark.css +38 -31
- nautobot/project-static/docs/404.html +17 -87
- nautobot/project-static/docs/apps/index.html +17 -87
- nautobot/project-static/docs/apps/nautobot-apps.html +17 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +405 -475
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +28 -98
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +2334 -2396
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +17 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +132 -202
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +17 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +155 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +17 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +17 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +42 -112
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +1028 -1098
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +186 -256
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +1454 -1156
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +1443 -1507
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +157 -203
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +17 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +32 -102
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3822 -3888
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +990 -1060
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +65 -123
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +1431 -1495
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +3618 -3640
- nautobot/project-static/docs/development/apps/api/configuration-view.html +17 -87
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +19 -89
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +17 -87
- nautobot/project-static/docs/development/apps/api/models/global-search.html +17 -87
- nautobot/project-static/docs/development/apps/api/models/graphql.html +17 -87
- nautobot/project-static/docs/development/apps/api/models/index.html +17 -87
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +17 -87
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +17 -87
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +19 -89
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +19 -89
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +19 -89
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +17 -87
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +17 -87
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +21 -87
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +17 -87
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +17 -87
- nautobot/project-static/docs/development/apps/api/prometheus.html +17 -87
- nautobot/project-static/docs/development/apps/api/setup.html +17 -87
- nautobot/project-static/docs/development/apps/api/testing.html +20 -90
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +17 -87
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +17 -87
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +17 -87
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +19 -89
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-detail-views.html +209 -140
- nautobot/project-static/docs/development/apps/api/ui-extensions/tabs.html +13 -5390
- nautobot/project-static/docs/development/apps/api/views/base-template.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +22 -92
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/index.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/notes.html +19 -89
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/urls.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/view-overrides.html +13 -5385
- nautobot/project-static/docs/development/apps/index.html +17 -87
- nautobot/project-static/docs/development/apps/migration/code-updates.html +17 -87
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +17 -87
- nautobot/project-static/docs/development/apps/migration/from-v1.html +17 -88
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +17 -87
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +17 -87
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +17 -87
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +17 -87
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +17 -87
- nautobot/project-static/docs/development/core/application-registry.html +20 -90
- nautobot/project-static/docs/development/core/best-practices.html +20 -90
- nautobot/project-static/docs/development/core/bootstrap-ui.html +5360 -0
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +17 -87
- nautobot/project-static/docs/development/core/extending-models.html +21 -87
- nautobot/project-static/docs/development/core/generic-views.html +17 -87
- nautobot/project-static/docs/development/core/getting-started.html +124 -301
- nautobot/project-static/docs/development/core/homepage.html +17 -87
- nautobot/project-static/docs/development/core/index.html +17 -87
- nautobot/project-static/docs/development/core/model-features.html +17 -87
- nautobot/project-static/docs/development/core/natural-keys.html +17 -87
- nautobot/project-static/docs/development/core/navigation-menu.html +17 -87
- nautobot/project-static/docs/development/core/react-ui.html +13 -5668
- nautobot/project-static/docs/development/core/release-checklist.html +20 -96
- nautobot/project-static/docs/development/core/role-internals.html +20 -90
- nautobot/project-static/docs/development/core/style-guide.html +77 -146
- nautobot/project-static/docs/development/core/templates.html +20 -90
- nautobot/project-static/docs/development/core/testing.html +17 -87
- nautobot/project-static/docs/development/core/user-preferences.html +17 -87
- nautobot/project-static/docs/development/index.html +17 -87
- nautobot/project-static/docs/development/jobs/index.html +424 -425
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +75 -98
- nautobot/project-static/docs/development/react-ui.html +3 -3
- nautobot/project-static/docs/img/relationship_w_json_filter.png +0 -0
- nautobot/project-static/docs/index.html +90 -93
- nautobot/project-static/docs/media/admin_ui_run_permission.png +0 -0
- nautobot/project-static/docs/media/development/homepage_changelog_panel.png +0 -0
- nautobot/project-static/docs/media/development/homepage_dcim_panel.png +0 -0
- nautobot/project-static/docs/media/installation/nautobot_ui_admin.png +0 -0
- nautobot/project-static/docs/media/installation/nautobot_ui_login.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_filtering_01.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_01.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_02.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_03.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_04.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_05.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_01.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_02.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_03.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_04.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_05.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_06.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_07.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_basic_01.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_basic_02.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_basic_03.png +0 -0
- nautobot/project-static/docs/media/models/jobbutton_form.png +0 -0
- nautobot/project-static/docs/media/models/site_jobbuttons.png +0 -0
- nautobot/project-static/docs/media/plugins/plugin_admin_config.png +0 -0
- nautobot/project-static/docs/media/plugins/plugin_admin_ui.png +0 -0
- nautobot/project-static/docs/media/ss_config_contexts.png +0 -0
- nautobot/project-static/docs/media/ss_graphiql.png +0 -0
- nautobot/project-static/docs/media/ss_main_page.png +0 -0
- nautobot/project-static/docs/media/ss_plugin_chatops.png +0 -0
- nautobot/project-static/docs/media/ss_plugin_golden_config.png +0 -0
- nautobot/project-static/docs/media/ss_prefix_hierarchy.png +0 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +17 -87
- nautobot/project-static/docs/release-notes/version-1.0.html +17 -87
- nautobot/project-static/docs/release-notes/version-1.1.html +17 -87
- nautobot/project-static/docs/release-notes/version-1.2.html +17 -87
- nautobot/project-static/docs/release-notes/version-1.3.html +17 -87
- nautobot/project-static/docs/release-notes/version-1.4.html +18 -88
- nautobot/project-static/docs/release-notes/version-1.5.html +17 -87
- nautobot/project-static/docs/release-notes/version-1.6.html +17 -87
- nautobot/project-static/docs/release-notes/version-2.0.html +467 -336
- nautobot/project-static/docs/release-notes/version-2.1.html +470 -108
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +240 -255
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +17 -87
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +20 -90
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +17 -87
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +17 -87
- nautobot/project-static/docs/user-guide/administration/configuration/node-configuration.html +13 -5417
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +47 -113
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +17 -87
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +17 -87
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +17 -87
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +17 -87
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +17 -87
- nautobot/project-static/docs/user-guide/administration/installation/index.html +22 -109
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +18 -101
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +23 -140
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +17 -87
- nautobot/project-static/docs/user-guide/administration/installation/services.html +17 -87
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +17 -87
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +17 -87
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +92 -181
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +18 -88
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +23 -89
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +18 -88
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio +259 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio.png +0 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +18 -88
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +17 -87
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +17 -87
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +23 -93
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +17 -87
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +17 -87
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +26 -96
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +35 -103
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +19 -89
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +19 -91
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +19 -89
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +24 -94
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +39 -258
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +45 -243
- nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_choices.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_detail_grouped.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_detail_label.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_edit.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_select.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/1-create-location-type.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/10-add-platform.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/11-platforms-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/12-add-tenant.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/13-assign-tenant-to-device.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/14-assign-tenant-to-device-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/15-create-device-type.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/16-interface-templates.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/17-templated-interfaces.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/18-assign-device-type.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/19-edit-ints-for-lag.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/2-create-manufacturer.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/20-ints-int-lag.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/21-device-type.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/22-create-vlans.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/23-create-vlans-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/24-vlan-main-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/25-add-vlan-to-interface.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/26-add-vlan-to-interface-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/27-add-rir.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/3-create-role.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/30-add-prefix.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/32-add-ip-addr.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/33-assign-address.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/34-assign-address-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/35-assign-address-3.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/36-verify-address.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/37-verify-prefix.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/38-verify-prefix2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/4-create-device-type.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/41-device-search-results.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/42-address-search-v2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/43-get-to-device-main-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/44-add-platform.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/5-create-device.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/6-create-location.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/7-location-type-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/8-location-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/01-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/02-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/03-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/04-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/05-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/06-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/07-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/08-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/09-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/10-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/11-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/12-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/13-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/14-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/15-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/16-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/17-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/00-graphiql.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/01-graphiql-explorer.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/02-graphiql-explorer-device-query.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/03-graphiql-explorer-device-attributes.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/04-graphql-query-01.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/05-graphiql-autocomplete.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/06-graphql-query-02.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/07-graphql-query-03.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/08-graphql-query-04.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/09-graphql-query-05.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/10-graphql-swagger.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/11-graphql-query-06.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/ip_merge_button.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/merge_button.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/merge_view.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/no_more_dup_ips.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/skip_button.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/unselect_ips.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/01-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/02-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/03-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/04-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/05-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/06-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/07-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/08-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/09-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/10-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/11-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +20 -90
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +22 -92
- nautobot/project-static/docs/user-guide/index.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +22 -88
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +68 -87
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +18 -88
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +22 -88
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +18 -88
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +43 -91
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +21 -87
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +17 -87
- nautobot/project-static/js/homepage_layout.js +170 -0
- nautobot/project-static/js/theme.js +0 -5
- nautobot/tenancy/api/urls.py +1 -1
- nautobot/tenancy/api/views.py +1 -0
- nautobot/tenancy/factory.py +2 -2
- nautobot/tenancy/filters/__init__.py +1 -2
- nautobot/tenancy/forms.py +2 -2
- nautobot/tenancy/homepage.py +0 -1
- nautobot/tenancy/migrations/0001_initial.py +2 -1
- nautobot/tenancy/migrations/0002_auto_slug.py +1 -0
- nautobot/tenancy/migrations/0004_change_tree_manager_on_tree_models.py +1 -0
- nautobot/tenancy/migrations/0008_tagsfield.py +1 -0
- nautobot/tenancy/models.py +0 -1
- nautobot/tenancy/navigation.py +0 -1
- nautobot/tenancy/tables.py +1 -0
- nautobot/tenancy/templates/tenancy/tenantgroup.html +1 -1
- nautobot/tenancy/tests/test_filters.py +5 -5
- nautobot/tenancy/urls.py +1 -0
- nautobot/tenancy/views.py +2 -2
- nautobot/users/admin.py +1 -2
- nautobot/users/api/urls.py +1 -1
- nautobot/users/api/views.py +6 -4
- nautobot/users/factory.py +8 -24
- nautobot/users/filters.py +4 -4
- nautobot/users/forms.py +1 -0
- nautobot/users/migrations/0004_alter_user_managers.py +1 -0
- nautobot/users/migrations/0008_make_object_permission_a_changelogged_model.py +22 -0
- nautobot/users/models.py +2 -2
- nautobot/users/tests/test_api.py +7 -6
- nautobot/users/tests/test_filters.py +0 -1
- nautobot/users/tests/test_models.py +0 -1
- nautobot/users/tests/test_password_ui.py +1 -1
- nautobot/users/views.py +5 -4
- nautobot/virtualization/api/urls.py +1 -1
- nautobot/virtualization/api/views.py +2 -1
- nautobot/virtualization/apps.py +1 -1
- nautobot/virtualization/choices.py +0 -1
- nautobot/virtualization/factory.py +1 -1
- nautobot/virtualization/filters.py +1 -1
- nautobot/virtualization/forms.py +6 -6
- nautobot/virtualization/homepage.py +0 -1
- nautobot/virtualization/migrations/0003_vminterface_verbose_name.py +1 -0
- nautobot/virtualization/migrations/0004_auto_slug.py +1 -0
- nautobot/virtualization/migrations/0005_add_natural_indexing.py +1 -0
- nautobot/virtualization/migrations/0006_vminterface_status.py +1 -0
- nautobot/virtualization/migrations/0007_vminterface_status_data_migration.py +1 -0
- nautobot/virtualization/migrations/0011_alter_vminterface_mac_address.py +1 -0
- nautobot/virtualization/migrations/0012_alter_virtualmachine_role_add_new_role.py +1 -0
- nautobot/virtualization/migrations/0013_migrate_virtualmachine_role_data.py +1 -0
- nautobot/virtualization/migrations/0018_related_name_changes.py +1 -0
- nautobot/virtualization/migrations/0021_tagsfield_and_vminterface_to_primarymodel.py +1 -0
- nautobot/virtualization/migrations/0025_status_nonnullable.py +1 -0
- nautobot/virtualization/models.py +1 -2
- nautobot/virtualization/navigation.py +0 -1
- nautobot/virtualization/signals.py +0 -1
- nautobot/virtualization/tables.py +1 -0
- nautobot/virtualization/templates/virtualization/virtualmachine.html +2 -2
- nautobot/virtualization/tests/test_filters.py +3 -3
- nautobot/virtualization/tests/test_models.py +1 -1
- nautobot/virtualization/tests/test_views.py +2 -2
- nautobot/virtualization/urls.py +1 -0
- nautobot/virtualization/views.py +1 -1
- {nautobot-2.1.0b1.dist-info → nautobot-2.1.1.dist-info}/METADATA +10 -2
- {nautobot-2.1.0b1.dist-info → nautobot-2.1.1.dist-info}/RECORD +895 -993
- nautobot/core/management/commands/build_ui.py +0 -281
- nautobot/core/templates/base_react.html +0 -55
- nautobot/core/tests/test_cli.py +0 -25
- nautobot/project-static/docs/media/installation/nautobot_ui_guest.png +0 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio.svg +0 -4
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/39-address-search.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/40-addr-main-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/18-git-data-source.png +0 -0
- nautobot/ui/.eslintignore +0 -3
- nautobot/ui/.gitignore +0 -7
- nautobot/ui/.prettierignore +0 -6
- nautobot/ui/.prettierrc +0 -4
- nautobot/ui/README.md +0 -27
- nautobot/ui/config/env.js +0 -102
- nautobot/ui/config/getHttpsConfig.js +0 -68
- nautobot/ui/config/jest/babelTransform.js +0 -14
- nautobot/ui/config/jest/cssTransform.js +0 -12
- nautobot/ui/config/jest/fileTransform.js +0 -38
- nautobot/ui/config/modules.js +0 -151
- nautobot/ui/config/paths.js +0 -67
- nautobot/ui/config/webpack/persistentCache/createEnvironmentHash.js +0 -8
- nautobot/ui/config/webpack.config.js +0 -674
- nautobot/ui/config/webpackDevServer.config.js +0 -127
- nautobot/ui/jest.config.js +0 -35
- nautobot/ui/jsconfig.json +0 -4
- nautobot/ui/package-lock.json +0 -22947
- nautobot/ui/package.json +0 -119
- nautobot/ui/public/index.html +0 -47
- nautobot/ui/public/logo192.png +0 -0
- nautobot/ui/public/logo512.png +0 -0
- nautobot/ui/public/manifest.json +0 -25
- nautobot/ui/public/nautobot_logo.svg +0 -131
- nautobot/ui/public/robots.txt +0 -3
- nautobot/ui/scripts/build.js +0 -224
- nautobot/ui/scripts/start.js +0 -140
- nautobot/ui/scripts/test.js +0 -40
- nautobot/ui/src/App.js +0 -79
- nautobot/ui/src/components/AppFullWidthComponents.js +0 -8
- nautobot/ui/src/components/AppTab.js +0 -40
- nautobot/ui/src/components/Apps.js +0 -60
- nautobot/ui/src/components/FeedbackModal.js +0 -123
- nautobot/ui/src/components/FiltersPanel.js +0 -693
- nautobot/ui/src/components/HomeChangelogPanel.js +0 -98
- nautobot/ui/src/components/HomePanel.js +0 -58
- nautobot/ui/src/components/JobHistoryTable.js +0 -78
- nautobot/ui/src/components/Layout.js +0 -76
- nautobot/ui/src/components/LoadingWidget.js +0 -14
- nautobot/ui/src/components/Navbar.js +0 -204
- nautobot/ui/src/components/NotificationPopover.js +0 -27
- nautobot/ui/src/components/ObjectTable/ObjectListTable.js +0 -300
- nautobot/ui/src/components/ObjectTable/ObjectTable.js +0 -96
- nautobot/ui/src/components/ObjectTable/ObjectTableItem.js +0 -70
- nautobot/ui/src/components/ObjectTable/index.js +0 -3
- nautobot/ui/src/components/Pagination/PageNumberForm.js +0 -228
- nautobot/ui/src/components/Pagination/PageSizeForm.js +0 -65
- nautobot/ui/src/components/Pagination/Pagination.js +0 -67
- nautobot/ui/src/components/Pagination/index.js +0 -3
- nautobot/ui/src/components/ReferenceDataTag.js +0 -35
- nautobot/ui/src/components/Retrieve/RenderChangeLogsTab.js +0 -58
- nautobot/ui/src/components/Retrieve/RenderColumn.js +0 -30
- nautobot/ui/src/components/Retrieve/RenderGroup.js +0 -24
- nautobot/ui/src/components/Retrieve/RenderHeader.js +0 -125
- nautobot/ui/src/components/Retrieve/RenderNotesTab.js +0 -60
- nautobot/ui/src/components/Retrieve/RenderTable.js +0 -33
- nautobot/ui/src/components/Retrieve/RenderTabs.js +0 -56
- nautobot/ui/src/components/Retrieve/index.js +0 -7
- nautobot/ui/src/components/RouterButton.js +0 -10
- nautobot/ui/src/components/RouterLink.js +0 -10
- nautobot/ui/src/components/SidebarNav.js +0 -156
- nautobot/ui/src/components/__tests__/AppFullWidthComponents.test.js +0 -16
- nautobot/ui/src/components/__tests__/AppTab.test.js +0 -21
- nautobot/ui/src/components/__tests__/Apps.test.js +0 -14
- nautobot/ui/src/components/__tests__/Layout.test.js +0 -33
- nautobot/ui/src/components/__tests__/PageSizeForm.test.js +0 -13
- nautobot/ui/src/components/__tests__/Pagination.test.js +0 -43
- nautobot/ui/src/components/__tests__/Table.test.js +0 -39
- nautobot/ui/src/components/__tests__/TableItem.test.js +0 -39
- nautobot/ui/src/components/index.js +0 -4
- nautobot/ui/src/constants/apiPath.js +0 -13
- nautobot/ui/src/constants/icons.js +0 -15
- nautobot/ui/src/constants/size.js +0 -15
- nautobot/ui/src/file_templates/app_imports.js.j2 +0 -7
- nautobot/ui/src/file_templates/jsconfig-base.json +0 -12
- nautobot/ui/src/index.js +0 -65
- nautobot/ui/src/reportWebVitals.js +0 -15
- nautobot/ui/src/router.js +0 -77
- nautobot/ui/src/utils/api.js +0 -160
- nautobot/ui/src/utils/app-import.js +0 -15
- nautobot/ui/src/utils/color.js +0 -15
- nautobot/ui/src/utils/date.js +0 -14
- nautobot/ui/src/utils/index.js +0 -15
- nautobot/ui/src/utils/navigation.js +0 -48
- nautobot/ui/src/utils/session.js +0 -64
- nautobot/ui/src/utils/store.js +0 -242
- nautobot/ui/src/utils/string.js +0 -6
- nautobot/ui/src/utils/url.js +0 -4
- nautobot/ui/src/views/Home.js +0 -142
- nautobot/ui/src/views/InstalledApps.js +0 -80
- nautobot/ui/src/views/Login.js +0 -48
- nautobot/ui/src/views/Logout.js +0 -20
- nautobot/ui/src/views/__tests__/BSCreateViewTemplate.test.js +0 -11
- nautobot/ui/src/views/__tests__/BSListViewTemplate.test.js +0 -107
- nautobot/ui/src/views/__tests__/Login.test.js +0 -15
- nautobot/ui/src/views/generic/GenericView.js +0 -191
- nautobot/ui/src/views/generic/ObjectCreate.js +0 -96
- nautobot/ui/src/views/generic/ObjectList.js +0 -137
- nautobot/ui/src/views/generic/ObjectRetrieve.js +0 -87
- {nautobot-2.1.0b1.dist-info → nautobot-2.1.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.1.0b1.dist-info → nautobot-2.1.1.dist-info}/WHEEL +0 -0
- {nautobot-2.1.0b1.dist-info → nautobot-2.1.1.dist-info}/entry_points.txt +0 -0
|
@@ -977,20 +977,6 @@
|
|
|
977
977
|
|
|
978
978
|
|
|
979
979
|
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
<li class="md-nav__item">
|
|
986
|
-
<a href="../user-guide/administration/configuration/node-configuration.html" class="md-nav__link">
|
|
987
|
-
Node.js Configuration
|
|
988
|
-
</a>
|
|
989
|
-
</li>
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
980
|
</ul>
|
|
995
981
|
</nav>
|
|
996
982
|
</li>
|
|
@@ -1439,34 +1425,6 @@
|
|
|
1439
1425
|
|
|
1440
1426
|
|
|
1441
1427
|
|
|
1442
|
-
<li class="md-nav__item">
|
|
1443
|
-
<a href="../user-guide/feature-guides/git-data-source.html" class="md-nav__link">
|
|
1444
|
-
Git as a Data Source
|
|
1445
|
-
</a>
|
|
1446
|
-
</li>
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
<li class="md-nav__item">
|
|
1457
|
-
<a href="../user-guide/feature-guides/graphql.html" class="md-nav__link">
|
|
1458
|
-
GraphQL
|
|
1459
|
-
</a>
|
|
1460
|
-
</li>
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
1428
|
<li class="md-nav__item">
|
|
1471
1429
|
<a href="../user-guide/feature-guides/relationships.html" class="md-nav__link">
|
|
1472
1430
|
Relationships
|
|
@@ -3552,23 +3510,9 @@
|
|
|
3552
3510
|
|
|
3553
3511
|
|
|
3554
3512
|
|
|
3555
|
-
<li class="md-nav__item">
|
|
3556
|
-
<a href="../development/apps/api/views/view-overrides.html" class="md-nav__link">
|
|
3557
|
-
View Overrides
|
|
3558
|
-
</a>
|
|
3559
|
-
</li>
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
3513
|
<li class="md-nav__item">
|
|
3570
3514
|
<a href="../development/apps/api/views/core-view-overrides.html" class="md-nav__link">
|
|
3571
|
-
|
|
3515
|
+
View Overrides
|
|
3572
3516
|
</a>
|
|
3573
3517
|
</li>
|
|
3574
3518
|
|
|
@@ -3657,7 +3601,7 @@
|
|
|
3657
3601
|
|
|
3658
3602
|
<li class="md-nav__item">
|
|
3659
3603
|
<a href="../development/apps/api/platform-features/filter-extensions.html" class="md-nav__link">
|
|
3660
|
-
Filter
|
|
3604
|
+
Filter Extensions
|
|
3661
3605
|
</a>
|
|
3662
3606
|
</li>
|
|
3663
3607
|
|
|
@@ -3865,21 +3809,7 @@
|
|
|
3865
3809
|
|
|
3866
3810
|
<li class="md-nav__item">
|
|
3867
3811
|
<a href="../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
|
|
3868
|
-
Object Detail Views
|
|
3869
|
-
</a>
|
|
3870
|
-
</li>
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
<li class="md-nav__item">
|
|
3881
|
-
<a href="../development/apps/api/ui-extensions/tabs.html" class="md-nav__link">
|
|
3882
|
-
Tabs
|
|
3812
|
+
Object Detail Views and Tabs
|
|
3883
3813
|
</a>
|
|
3884
3814
|
</li>
|
|
3885
3815
|
|
|
@@ -4550,6 +4480,20 @@
|
|
|
4550
4480
|
|
|
4551
4481
|
|
|
4552
4482
|
|
|
4483
|
+
<li class="md-nav__item">
|
|
4484
|
+
<a href="../development/core/bootstrap-ui.html" class="md-nav__link">
|
|
4485
|
+
Bootstrap UI
|
|
4486
|
+
</a>
|
|
4487
|
+
</li>
|
|
4488
|
+
|
|
4489
|
+
|
|
4490
|
+
|
|
4491
|
+
|
|
4492
|
+
|
|
4493
|
+
|
|
4494
|
+
|
|
4495
|
+
|
|
4496
|
+
|
|
4553
4497
|
<li class="md-nav__item">
|
|
4554
4498
|
<a href="../development/core/best-practices.html" class="md-nav__link">
|
|
4555
4499
|
Best Practices
|
|
@@ -4662,20 +4606,6 @@
|
|
|
4662
4606
|
|
|
4663
4607
|
|
|
4664
4608
|
|
|
4665
|
-
<li class="md-nav__item">
|
|
4666
|
-
<a href="../development/core/react-ui.html" class="md-nav__link">
|
|
4667
|
-
React UI
|
|
4668
|
-
</a>
|
|
4669
|
-
</li>
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
4609
|
<li class="md-nav__item">
|
|
4680
4610
|
<a href="../development/core/role-internals.html" class="md-nav__link">
|
|
4681
4611
|
Role Internals
|
|
@@ -5099,11 +5029,11 @@
|
|
|
5099
5029
|
</li>
|
|
5100
5030
|
|
|
5101
5031
|
<li class="md-nav__item">
|
|
5102
|
-
<a href="#
|
|
5103
|
-
v2.0.
|
|
5032
|
+
<a href="#v206-2023-12-11" class="md-nav__link">
|
|
5033
|
+
v2.0.6 (2023-12-11)
|
|
5104
5034
|
</a>
|
|
5105
5035
|
|
|
5106
|
-
<nav class="md-nav" aria-label="v2.0.
|
|
5036
|
+
<nav class="md-nav" aria-label="v2.0.6 (2023-12-11)">
|
|
5107
5037
|
<ul class="md-nav__list">
|
|
5108
5038
|
|
|
5109
5039
|
<li class="md-nav__item">
|
|
@@ -5111,6 +5041,13 @@
|
|
|
5111
5041
|
Security
|
|
5112
5042
|
</a>
|
|
5113
5043
|
|
|
5044
|
+
</li>
|
|
5045
|
+
|
|
5046
|
+
<li class="md-nav__item">
|
|
5047
|
+
<a href="#added_1" class="md-nav__link">
|
|
5048
|
+
Added
|
|
5049
|
+
</a>
|
|
5050
|
+
|
|
5114
5051
|
</li>
|
|
5115
5052
|
|
|
5116
5053
|
<li class="md-nav__item">
|
|
@@ -5118,6 +5055,13 @@
|
|
|
5118
5055
|
Changed
|
|
5119
5056
|
</a>
|
|
5120
5057
|
|
|
5058
|
+
</li>
|
|
5059
|
+
|
|
5060
|
+
<li class="md-nav__item">
|
|
5061
|
+
<a href="#removed_1" class="md-nav__link">
|
|
5062
|
+
Removed
|
|
5063
|
+
</a>
|
|
5064
|
+
|
|
5121
5065
|
</li>
|
|
5122
5066
|
|
|
5123
5067
|
<li class="md-nav__item">
|
|
@@ -5154,11 +5098,11 @@
|
|
|
5154
5098
|
</li>
|
|
5155
5099
|
|
|
5156
5100
|
<li class="md-nav__item">
|
|
5157
|
-
<a href="#
|
|
5158
|
-
v2.0.
|
|
5101
|
+
<a href="#v205-2023-11-21" class="md-nav__link">
|
|
5102
|
+
v2.0.5 (2023-11-21)
|
|
5159
5103
|
</a>
|
|
5160
5104
|
|
|
5161
|
-
<nav class="md-nav" aria-label="v2.0.
|
|
5105
|
+
<nav class="md-nav" aria-label="v2.0.5 (2023-11-21)">
|
|
5162
5106
|
<ul class="md-nav__list">
|
|
5163
5107
|
|
|
5164
5108
|
<li class="md-nav__item">
|
|
@@ -5169,22 +5113,22 @@
|
|
|
5169
5113
|
</li>
|
|
5170
5114
|
|
|
5171
5115
|
<li class="md-nav__item">
|
|
5172
|
-
<a href="#
|
|
5173
|
-
|
|
5116
|
+
<a href="#changed_2" class="md-nav__link">
|
|
5117
|
+
Changed
|
|
5174
5118
|
</a>
|
|
5175
5119
|
|
|
5176
5120
|
</li>
|
|
5177
5121
|
|
|
5178
5122
|
<li class="md-nav__item">
|
|
5179
|
-
<a href="#
|
|
5180
|
-
|
|
5123
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
5124
|
+
Fixed
|
|
5181
5125
|
</a>
|
|
5182
5126
|
|
|
5183
5127
|
</li>
|
|
5184
5128
|
|
|
5185
5129
|
<li class="md-nav__item">
|
|
5186
|
-
<a href="#
|
|
5187
|
-
|
|
5130
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
5131
|
+
Dependencies
|
|
5188
5132
|
</a>
|
|
5189
5133
|
|
|
5190
5134
|
</li>
|
|
@@ -5209,11 +5153,11 @@
|
|
|
5209
5153
|
</li>
|
|
5210
5154
|
|
|
5211
5155
|
<li class="md-nav__item">
|
|
5212
|
-
<a href="#
|
|
5213
|
-
v2.0.
|
|
5156
|
+
<a href="#v204-2023-11-13" class="md-nav__link">
|
|
5157
|
+
v2.0.4 (2023-11-13)
|
|
5214
5158
|
</a>
|
|
5215
5159
|
|
|
5216
|
-
<nav class="md-nav" aria-label="v2.0.
|
|
5160
|
+
<nav class="md-nav" aria-label="v2.0.4 (2023-11-13)">
|
|
5217
5161
|
<ul class="md-nav__list">
|
|
5218
5162
|
|
|
5219
5163
|
<li class="md-nav__item">
|
|
@@ -5264,11 +5208,11 @@
|
|
|
5264
5208
|
</li>
|
|
5265
5209
|
|
|
5266
5210
|
<li class="md-nav__item">
|
|
5267
|
-
<a href="#
|
|
5268
|
-
v2.0.
|
|
5211
|
+
<a href="#v203-2023-10-23" class="md-nav__link">
|
|
5212
|
+
v2.0.3 (2023-10-23)
|
|
5269
5213
|
</a>
|
|
5270
5214
|
|
|
5271
|
-
<nav class="md-nav" aria-label="v2.0.
|
|
5215
|
+
<nav class="md-nav" aria-label="v2.0.3 (2023-10-23)">
|
|
5272
5216
|
<ul class="md-nav__list">
|
|
5273
5217
|
|
|
5274
5218
|
<li class="md-nav__item">
|
|
@@ -5316,6 +5260,61 @@
|
|
|
5316
5260
|
</ul>
|
|
5317
5261
|
</nav>
|
|
5318
5262
|
|
|
5263
|
+
</li>
|
|
5264
|
+
|
|
5265
|
+
<li class="md-nav__item">
|
|
5266
|
+
<a href="#v202-2023-10-16" class="md-nav__link">
|
|
5267
|
+
v2.0.2 (2023-10-16)
|
|
5268
|
+
</a>
|
|
5269
|
+
|
|
5270
|
+
<nav class="md-nav" aria-label="v2.0.2 (2023-10-16)">
|
|
5271
|
+
<ul class="md-nav__list">
|
|
5272
|
+
|
|
5273
|
+
<li class="md-nav__item">
|
|
5274
|
+
<a href="#security_4" class="md-nav__link">
|
|
5275
|
+
Security
|
|
5276
|
+
</a>
|
|
5277
|
+
|
|
5278
|
+
</li>
|
|
5279
|
+
|
|
5280
|
+
<li class="md-nav__item">
|
|
5281
|
+
<a href="#added_4" class="md-nav__link">
|
|
5282
|
+
Added
|
|
5283
|
+
</a>
|
|
5284
|
+
|
|
5285
|
+
</li>
|
|
5286
|
+
|
|
5287
|
+
<li class="md-nav__item">
|
|
5288
|
+
<a href="#changed_5" class="md-nav__link">
|
|
5289
|
+
Changed
|
|
5290
|
+
</a>
|
|
5291
|
+
|
|
5292
|
+
</li>
|
|
5293
|
+
|
|
5294
|
+
<li class="md-nav__item">
|
|
5295
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
5296
|
+
Fixed
|
|
5297
|
+
</a>
|
|
5298
|
+
|
|
5299
|
+
</li>
|
|
5300
|
+
|
|
5301
|
+
<li class="md-nav__item">
|
|
5302
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
5303
|
+
Documentation
|
|
5304
|
+
</a>
|
|
5305
|
+
|
|
5306
|
+
</li>
|
|
5307
|
+
|
|
5308
|
+
<li class="md-nav__item">
|
|
5309
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
5310
|
+
Housekeeping
|
|
5311
|
+
</a>
|
|
5312
|
+
|
|
5313
|
+
</li>
|
|
5314
|
+
|
|
5315
|
+
</ul>
|
|
5316
|
+
</nav>
|
|
5317
|
+
|
|
5319
5318
|
</li>
|
|
5320
5319
|
|
|
5321
5320
|
<li class="md-nav__item">
|
|
@@ -5327,14 +5326,14 @@
|
|
|
5327
5326
|
<ul class="md-nav__list">
|
|
5328
5327
|
|
|
5329
5328
|
<li class="md-nav__item">
|
|
5330
|
-
<a href="#
|
|
5329
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
5331
5330
|
Fixed
|
|
5332
5331
|
</a>
|
|
5333
5332
|
|
|
5334
5333
|
</li>
|
|
5335
5334
|
|
|
5336
5335
|
<li class="md-nav__item">
|
|
5337
|
-
<a href="#
|
|
5336
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
5338
5337
|
Housekeeping
|
|
5339
5338
|
</a>
|
|
5340
5339
|
|
|
@@ -5354,21 +5353,21 @@
|
|
|
5354
5353
|
<ul class="md-nav__list">
|
|
5355
5354
|
|
|
5356
5355
|
<li class="md-nav__item">
|
|
5357
|
-
<a href="#
|
|
5356
|
+
<a href="#added_5" class="md-nav__link">
|
|
5358
5357
|
Added
|
|
5359
5358
|
</a>
|
|
5360
5359
|
|
|
5361
5360
|
</li>
|
|
5362
5361
|
|
|
5363
5362
|
<li class="md-nav__item">
|
|
5364
|
-
<a href="#
|
|
5363
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
5365
5364
|
Fixed
|
|
5366
5365
|
</a>
|
|
5367
5366
|
|
|
5368
5367
|
</li>
|
|
5369
5368
|
|
|
5370
5369
|
<li class="md-nav__item">
|
|
5371
|
-
<a href="#
|
|
5370
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
5372
5371
|
Documentation
|
|
5373
5372
|
</a>
|
|
5374
5373
|
|
|
@@ -5388,56 +5387,56 @@
|
|
|
5388
5387
|
<ul class="md-nav__list">
|
|
5389
5388
|
|
|
5390
5389
|
<li class="md-nav__item">
|
|
5391
|
-
<a href="#
|
|
5390
|
+
<a href="#security_5" class="md-nav__link">
|
|
5392
5391
|
Security
|
|
5393
5392
|
</a>
|
|
5394
5393
|
|
|
5395
5394
|
</li>
|
|
5396
5395
|
|
|
5397
5396
|
<li class="md-nav__item">
|
|
5398
|
-
<a href="#
|
|
5397
|
+
<a href="#added_6" class="md-nav__link">
|
|
5399
5398
|
Added
|
|
5400
5399
|
</a>
|
|
5401
5400
|
|
|
5402
5401
|
</li>
|
|
5403
5402
|
|
|
5404
5403
|
<li class="md-nav__item">
|
|
5405
|
-
<a href="#
|
|
5404
|
+
<a href="#changed_6" class="md-nav__link">
|
|
5406
5405
|
Changed
|
|
5407
5406
|
</a>
|
|
5408
5407
|
|
|
5409
5408
|
</li>
|
|
5410
5409
|
|
|
5411
5410
|
<li class="md-nav__item">
|
|
5412
|
-
<a href="#
|
|
5411
|
+
<a href="#removed_2" class="md-nav__link">
|
|
5413
5412
|
Removed
|
|
5414
5413
|
</a>
|
|
5415
5414
|
|
|
5416
5415
|
</li>
|
|
5417
5416
|
|
|
5418
5417
|
<li class="md-nav__item">
|
|
5419
|
-
<a href="#
|
|
5418
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
5420
5419
|
Fixed
|
|
5421
5420
|
</a>
|
|
5422
5421
|
|
|
5423
5422
|
</li>
|
|
5424
5423
|
|
|
5425
5424
|
<li class="md-nav__item">
|
|
5426
|
-
<a href="#
|
|
5425
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
5427
5426
|
Dependencies
|
|
5428
5427
|
</a>
|
|
5429
5428
|
|
|
5430
5429
|
</li>
|
|
5431
5430
|
|
|
5432
5431
|
<li class="md-nav__item">
|
|
5433
|
-
<a href="#
|
|
5432
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
5434
5433
|
Documentation
|
|
5435
5434
|
</a>
|
|
5436
5435
|
|
|
5437
5436
|
</li>
|
|
5438
5437
|
|
|
5439
5438
|
<li class="md-nav__item">
|
|
5440
|
-
<a href="#
|
|
5439
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
5441
5440
|
Housekeeping
|
|
5442
5441
|
</a>
|
|
5443
5442
|
|
|
@@ -5457,49 +5456,49 @@
|
|
|
5457
5456
|
<ul class="md-nav__list">
|
|
5458
5457
|
|
|
5459
5458
|
<li class="md-nav__item">
|
|
5460
|
-
<a href="#
|
|
5459
|
+
<a href="#security_6" class="md-nav__link">
|
|
5461
5460
|
Security
|
|
5462
5461
|
</a>
|
|
5463
5462
|
|
|
5464
5463
|
</li>
|
|
5465
5464
|
|
|
5466
5465
|
<li class="md-nav__item">
|
|
5467
|
-
<a href="#
|
|
5466
|
+
<a href="#added_7" class="md-nav__link">
|
|
5468
5467
|
Added
|
|
5469
5468
|
</a>
|
|
5470
5469
|
|
|
5471
5470
|
</li>
|
|
5472
5471
|
|
|
5473
5472
|
<li class="md-nav__item">
|
|
5474
|
-
<a href="#
|
|
5473
|
+
<a href="#changed_7" class="md-nav__link">
|
|
5475
5474
|
Changed
|
|
5476
5475
|
</a>
|
|
5477
5476
|
|
|
5478
5477
|
</li>
|
|
5479
5478
|
|
|
5480
5479
|
<li class="md-nav__item">
|
|
5481
|
-
<a href="#
|
|
5480
|
+
<a href="#removed_3" class="md-nav__link">
|
|
5482
5481
|
Removed
|
|
5483
5482
|
</a>
|
|
5484
5483
|
|
|
5485
5484
|
</li>
|
|
5486
5485
|
|
|
5487
5486
|
<li class="md-nav__item">
|
|
5488
|
-
<a href="#
|
|
5487
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
5489
5488
|
Fixed
|
|
5490
5489
|
</a>
|
|
5491
5490
|
|
|
5492
5491
|
</li>
|
|
5493
5492
|
|
|
5494
5493
|
<li class="md-nav__item">
|
|
5495
|
-
<a href="#
|
|
5494
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
5496
5495
|
Documentation
|
|
5497
5496
|
</a>
|
|
5498
5497
|
|
|
5499
5498
|
</li>
|
|
5500
5499
|
|
|
5501
5500
|
<li class="md-nav__item">
|
|
5502
|
-
<a href="#
|
|
5501
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
5503
5502
|
Housekeeping
|
|
5504
5503
|
</a>
|
|
5505
5504
|
|
|
@@ -5519,28 +5518,28 @@
|
|
|
5519
5518
|
<ul class="md-nav__list">
|
|
5520
5519
|
|
|
5521
5520
|
<li class="md-nav__item">
|
|
5522
|
-
<a href="#
|
|
5521
|
+
<a href="#added_8" class="md-nav__link">
|
|
5523
5522
|
Added
|
|
5524
5523
|
</a>
|
|
5525
5524
|
|
|
5526
5525
|
</li>
|
|
5527
5526
|
|
|
5528
5527
|
<li class="md-nav__item">
|
|
5529
|
-
<a href="#
|
|
5528
|
+
<a href="#changed_8" class="md-nav__link">
|
|
5530
5529
|
Changed
|
|
5531
5530
|
</a>
|
|
5532
5531
|
|
|
5533
5532
|
</li>
|
|
5534
5533
|
|
|
5535
5534
|
<li class="md-nav__item">
|
|
5536
|
-
<a href="#
|
|
5535
|
+
<a href="#removed_4" class="md-nav__link">
|
|
5537
5536
|
Removed
|
|
5538
5537
|
</a>
|
|
5539
5538
|
|
|
5540
5539
|
</li>
|
|
5541
5540
|
|
|
5542
5541
|
<li class="md-nav__item">
|
|
5543
|
-
<a href="#
|
|
5542
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
5544
5543
|
Fixed
|
|
5545
5544
|
</a>
|
|
5546
5545
|
|
|
@@ -5560,49 +5559,49 @@
|
|
|
5560
5559
|
<ul class="md-nav__list">
|
|
5561
5560
|
|
|
5562
5561
|
<li class="md-nav__item">
|
|
5563
|
-
<a href="#
|
|
5562
|
+
<a href="#added_9" class="md-nav__link">
|
|
5564
5563
|
Added
|
|
5565
5564
|
</a>
|
|
5566
5565
|
|
|
5567
5566
|
</li>
|
|
5568
5567
|
|
|
5569
5568
|
<li class="md-nav__item">
|
|
5570
|
-
<a href="#
|
|
5569
|
+
<a href="#changed_9" class="md-nav__link">
|
|
5571
5570
|
Changed
|
|
5572
5571
|
</a>
|
|
5573
5572
|
|
|
5574
5573
|
</li>
|
|
5575
5574
|
|
|
5576
5575
|
<li class="md-nav__item">
|
|
5577
|
-
<a href="#
|
|
5576
|
+
<a href="#removed_5" class="md-nav__link">
|
|
5578
5577
|
Removed
|
|
5579
5578
|
</a>
|
|
5580
5579
|
|
|
5581
5580
|
</li>
|
|
5582
5581
|
|
|
5583
5582
|
<li class="md-nav__item">
|
|
5584
|
-
<a href="#
|
|
5583
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
5585
5584
|
Fixed
|
|
5586
5585
|
</a>
|
|
5587
5586
|
|
|
5588
5587
|
</li>
|
|
5589
5588
|
|
|
5590
5589
|
<li class="md-nav__item">
|
|
5591
|
-
<a href="#
|
|
5590
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
5592
5591
|
Dependencies
|
|
5593
5592
|
</a>
|
|
5594
5593
|
|
|
5595
5594
|
</li>
|
|
5596
5595
|
|
|
5597
5596
|
<li class="md-nav__item">
|
|
5598
|
-
<a href="#
|
|
5597
|
+
<a href="#documentation_8" class="md-nav__link">
|
|
5599
5598
|
Documentation
|
|
5600
5599
|
</a>
|
|
5601
5600
|
|
|
5602
5601
|
</li>
|
|
5603
5602
|
|
|
5604
5603
|
<li class="md-nav__item">
|
|
5605
|
-
<a href="#
|
|
5604
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
5606
5605
|
Housekeeping
|
|
5607
5606
|
</a>
|
|
5608
5607
|
|
|
@@ -5622,49 +5621,49 @@
|
|
|
5622
5621
|
<ul class="md-nav__list">
|
|
5623
5622
|
|
|
5624
5623
|
<li class="md-nav__item">
|
|
5625
|
-
<a href="#
|
|
5624
|
+
<a href="#added_10" class="md-nav__link">
|
|
5626
5625
|
Added
|
|
5627
5626
|
</a>
|
|
5628
5627
|
|
|
5629
5628
|
</li>
|
|
5630
5629
|
|
|
5631
5630
|
<li class="md-nav__item">
|
|
5632
|
-
<a href="#
|
|
5631
|
+
<a href="#changed_10" class="md-nav__link">
|
|
5633
5632
|
Changed
|
|
5634
5633
|
</a>
|
|
5635
5634
|
|
|
5636
5635
|
</li>
|
|
5637
5636
|
|
|
5638
5637
|
<li class="md-nav__item">
|
|
5639
|
-
<a href="#
|
|
5638
|
+
<a href="#removed_6" class="md-nav__link">
|
|
5640
5639
|
Removed
|
|
5641
5640
|
</a>
|
|
5642
5641
|
|
|
5643
5642
|
</li>
|
|
5644
5643
|
|
|
5645
5644
|
<li class="md-nav__item">
|
|
5646
|
-
<a href="#
|
|
5645
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
5647
5646
|
Fixed
|
|
5648
5647
|
</a>
|
|
5649
5648
|
|
|
5650
5649
|
</li>
|
|
5651
5650
|
|
|
5652
5651
|
<li class="md-nav__item">
|
|
5653
|
-
<a href="#
|
|
5652
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
5654
5653
|
Dependencies
|
|
5655
5654
|
</a>
|
|
5656
5655
|
|
|
5657
5656
|
</li>
|
|
5658
5657
|
|
|
5659
5658
|
<li class="md-nav__item">
|
|
5660
|
-
<a href="#
|
|
5659
|
+
<a href="#documentation_9" class="md-nav__link">
|
|
5661
5660
|
Documentation
|
|
5662
5661
|
</a>
|
|
5663
5662
|
|
|
5664
5663
|
</li>
|
|
5665
5664
|
|
|
5666
5665
|
<li class="md-nav__item">
|
|
5667
|
-
<a href="#
|
|
5666
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
5668
5667
|
Housekeeping
|
|
5669
5668
|
</a>
|
|
5670
5669
|
|
|
@@ -5684,49 +5683,49 @@
|
|
|
5684
5683
|
<ul class="md-nav__list">
|
|
5685
5684
|
|
|
5686
5685
|
<li class="md-nav__item">
|
|
5687
|
-
<a href="#
|
|
5686
|
+
<a href="#added_11" class="md-nav__link">
|
|
5688
5687
|
Added
|
|
5689
5688
|
</a>
|
|
5690
5689
|
|
|
5691
5690
|
</li>
|
|
5692
5691
|
|
|
5693
5692
|
<li class="md-nav__item">
|
|
5694
|
-
<a href="#
|
|
5693
|
+
<a href="#changed_11" class="md-nav__link">
|
|
5695
5694
|
Changed
|
|
5696
5695
|
</a>
|
|
5697
5696
|
|
|
5698
5697
|
</li>
|
|
5699
5698
|
|
|
5700
5699
|
<li class="md-nav__item">
|
|
5701
|
-
<a href="#
|
|
5700
|
+
<a href="#removed_7" class="md-nav__link">
|
|
5702
5701
|
Removed
|
|
5703
5702
|
</a>
|
|
5704
5703
|
|
|
5705
5704
|
</li>
|
|
5706
5705
|
|
|
5707
5706
|
<li class="md-nav__item">
|
|
5708
|
-
<a href="#
|
|
5707
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
5709
5708
|
Fixed
|
|
5710
5709
|
</a>
|
|
5711
5710
|
|
|
5712
5711
|
</li>
|
|
5713
5712
|
|
|
5714
5713
|
<li class="md-nav__item">
|
|
5715
|
-
<a href="#
|
|
5714
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
5716
5715
|
Dependencies
|
|
5717
5716
|
</a>
|
|
5718
5717
|
|
|
5719
5718
|
</li>
|
|
5720
5719
|
|
|
5721
5720
|
<li class="md-nav__item">
|
|
5722
|
-
<a href="#
|
|
5721
|
+
<a href="#documentation_10" class="md-nav__link">
|
|
5723
5722
|
Documentation
|
|
5724
5723
|
</a>
|
|
5725
5724
|
|
|
5726
5725
|
</li>
|
|
5727
5726
|
|
|
5728
5727
|
<li class="md-nav__item">
|
|
5729
|
-
<a href="#
|
|
5728
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
5730
5729
|
Housekeeping
|
|
5731
5730
|
</a>
|
|
5732
5731
|
|
|
@@ -5746,35 +5745,35 @@
|
|
|
5746
5745
|
<ul class="md-nav__list">
|
|
5747
5746
|
|
|
5748
5747
|
<li class="md-nav__item">
|
|
5749
|
-
<a href="#
|
|
5748
|
+
<a href="#added_12" class="md-nav__link">
|
|
5750
5749
|
Added
|
|
5751
5750
|
</a>
|
|
5752
5751
|
|
|
5753
5752
|
</li>
|
|
5754
5753
|
|
|
5755
5754
|
<li class="md-nav__item">
|
|
5756
|
-
<a href="#
|
|
5755
|
+
<a href="#changed_12" class="md-nav__link">
|
|
5757
5756
|
Changed
|
|
5758
5757
|
</a>
|
|
5759
5758
|
|
|
5760
5759
|
</li>
|
|
5761
5760
|
|
|
5762
5761
|
<li class="md-nav__item">
|
|
5763
|
-
<a href="#
|
|
5762
|
+
<a href="#removed_8" class="md-nav__link">
|
|
5764
5763
|
Removed
|
|
5765
5764
|
</a>
|
|
5766
5765
|
|
|
5767
5766
|
</li>
|
|
5768
5767
|
|
|
5769
5768
|
<li class="md-nav__item">
|
|
5770
|
-
<a href="#
|
|
5769
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
5771
5770
|
Dependencies
|
|
5772
5771
|
</a>
|
|
5773
5772
|
|
|
5774
5773
|
</li>
|
|
5775
5774
|
|
|
5776
5775
|
<li class="md-nav__item">
|
|
5777
|
-
<a href="#
|
|
5776
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
5778
5777
|
Housekeeping
|
|
5779
5778
|
</a>
|
|
5780
5779
|
|
|
@@ -5794,42 +5793,42 @@
|
|
|
5794
5793
|
<ul class="md-nav__list">
|
|
5795
5794
|
|
|
5796
5795
|
<li class="md-nav__item">
|
|
5797
|
-
<a href="#
|
|
5796
|
+
<a href="#added_13" class="md-nav__link">
|
|
5798
5797
|
Added
|
|
5799
5798
|
</a>
|
|
5800
5799
|
|
|
5801
5800
|
</li>
|
|
5802
5801
|
|
|
5803
5802
|
<li class="md-nav__item">
|
|
5804
|
-
<a href="#
|
|
5803
|
+
<a href="#changed_13" class="md-nav__link">
|
|
5805
5804
|
Changed
|
|
5806
5805
|
</a>
|
|
5807
5806
|
|
|
5808
5807
|
</li>
|
|
5809
5808
|
|
|
5810
5809
|
<li class="md-nav__item">
|
|
5811
|
-
<a href="#
|
|
5810
|
+
<a href="#removed_9" class="md-nav__link">
|
|
5812
5811
|
Removed
|
|
5813
5812
|
</a>
|
|
5814
5813
|
|
|
5815
5814
|
</li>
|
|
5816
5815
|
|
|
5817
5816
|
<li class="md-nav__item">
|
|
5818
|
-
<a href="#
|
|
5817
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
5819
5818
|
Fixed
|
|
5820
5819
|
</a>
|
|
5821
5820
|
|
|
5822
5821
|
</li>
|
|
5823
5822
|
|
|
5824
5823
|
<li class="md-nav__item">
|
|
5825
|
-
<a href="#
|
|
5824
|
+
<a href="#dependencies_7" class="md-nav__link">
|
|
5826
5825
|
Dependencies
|
|
5827
5826
|
</a>
|
|
5828
5827
|
|
|
5829
5828
|
</li>
|
|
5830
5829
|
|
|
5831
5830
|
<li class="md-nav__item">
|
|
5832
|
-
<a href="#
|
|
5831
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
5833
5832
|
Housekeeping
|
|
5834
5833
|
</a>
|
|
5835
5834
|
|
|
@@ -5849,49 +5848,49 @@
|
|
|
5849
5848
|
<ul class="md-nav__list">
|
|
5850
5849
|
|
|
5851
5850
|
<li class="md-nav__item">
|
|
5852
|
-
<a href="#
|
|
5851
|
+
<a href="#added_14" class="md-nav__link">
|
|
5853
5852
|
Added
|
|
5854
5853
|
</a>
|
|
5855
5854
|
|
|
5856
5855
|
</li>
|
|
5857
5856
|
|
|
5858
5857
|
<li class="md-nav__item">
|
|
5859
|
-
<a href="#
|
|
5858
|
+
<a href="#changed_14" class="md-nav__link">
|
|
5860
5859
|
Changed
|
|
5861
5860
|
</a>
|
|
5862
5861
|
|
|
5863
5862
|
</li>
|
|
5864
5863
|
|
|
5865
5864
|
<li class="md-nav__item">
|
|
5866
|
-
<a href="#
|
|
5865
|
+
<a href="#removed_10" class="md-nav__link">
|
|
5867
5866
|
Removed
|
|
5868
5867
|
</a>
|
|
5869
5868
|
|
|
5870
5869
|
</li>
|
|
5871
5870
|
|
|
5872
5871
|
<li class="md-nav__item">
|
|
5873
|
-
<a href="#
|
|
5872
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
5874
5873
|
Fixed
|
|
5875
5874
|
</a>
|
|
5876
5875
|
|
|
5877
5876
|
</li>
|
|
5878
5877
|
|
|
5879
5878
|
<li class="md-nav__item">
|
|
5880
|
-
<a href="#
|
|
5879
|
+
<a href="#dependencies_8" class="md-nav__link">
|
|
5881
5880
|
Dependencies
|
|
5882
5881
|
</a>
|
|
5883
5882
|
|
|
5884
5883
|
</li>
|
|
5885
5884
|
|
|
5886
5885
|
<li class="md-nav__item">
|
|
5887
|
-
<a href="#
|
|
5886
|
+
<a href="#documentation_11" class="md-nav__link">
|
|
5888
5887
|
Documentation
|
|
5889
5888
|
</a>
|
|
5890
5889
|
|
|
5891
5890
|
</li>
|
|
5892
5891
|
|
|
5893
5892
|
<li class="md-nav__item">
|
|
5894
|
-
<a href="#
|
|
5893
|
+
<a href="#housekeeping_13" class="md-nav__link">
|
|
5895
5894
|
Housekeeping
|
|
5896
5895
|
</a>
|
|
5897
5896
|
|
|
@@ -6526,11 +6525,11 @@
|
|
|
6526
6525
|
</li>
|
|
6527
6526
|
|
|
6528
6527
|
<li class="md-nav__item">
|
|
6529
|
-
<a href="#
|
|
6530
|
-
v2.0.
|
|
6528
|
+
<a href="#v206-2023-12-11" class="md-nav__link">
|
|
6529
|
+
v2.0.6 (2023-12-11)
|
|
6531
6530
|
</a>
|
|
6532
6531
|
|
|
6533
|
-
<nav class="md-nav" aria-label="v2.0.
|
|
6532
|
+
<nav class="md-nav" aria-label="v2.0.6 (2023-12-11)">
|
|
6534
6533
|
<ul class="md-nav__list">
|
|
6535
6534
|
|
|
6536
6535
|
<li class="md-nav__item">
|
|
@@ -6538,6 +6537,13 @@
|
|
|
6538
6537
|
Security
|
|
6539
6538
|
</a>
|
|
6540
6539
|
|
|
6540
|
+
</li>
|
|
6541
|
+
|
|
6542
|
+
<li class="md-nav__item">
|
|
6543
|
+
<a href="#added_1" class="md-nav__link">
|
|
6544
|
+
Added
|
|
6545
|
+
</a>
|
|
6546
|
+
|
|
6541
6547
|
</li>
|
|
6542
6548
|
|
|
6543
6549
|
<li class="md-nav__item">
|
|
@@ -6545,6 +6551,13 @@
|
|
|
6545
6551
|
Changed
|
|
6546
6552
|
</a>
|
|
6547
6553
|
|
|
6554
|
+
</li>
|
|
6555
|
+
|
|
6556
|
+
<li class="md-nav__item">
|
|
6557
|
+
<a href="#removed_1" class="md-nav__link">
|
|
6558
|
+
Removed
|
|
6559
|
+
</a>
|
|
6560
|
+
|
|
6548
6561
|
</li>
|
|
6549
6562
|
|
|
6550
6563
|
<li class="md-nav__item">
|
|
@@ -6581,11 +6594,11 @@
|
|
|
6581
6594
|
</li>
|
|
6582
6595
|
|
|
6583
6596
|
<li class="md-nav__item">
|
|
6584
|
-
<a href="#
|
|
6585
|
-
v2.0.
|
|
6597
|
+
<a href="#v205-2023-11-21" class="md-nav__link">
|
|
6598
|
+
v2.0.5 (2023-11-21)
|
|
6586
6599
|
</a>
|
|
6587
6600
|
|
|
6588
|
-
<nav class="md-nav" aria-label="v2.0.
|
|
6601
|
+
<nav class="md-nav" aria-label="v2.0.5 (2023-11-21)">
|
|
6589
6602
|
<ul class="md-nav__list">
|
|
6590
6603
|
|
|
6591
6604
|
<li class="md-nav__item">
|
|
@@ -6596,22 +6609,22 @@
|
|
|
6596
6609
|
</li>
|
|
6597
6610
|
|
|
6598
6611
|
<li class="md-nav__item">
|
|
6599
|
-
<a href="#
|
|
6600
|
-
|
|
6612
|
+
<a href="#changed_2" class="md-nav__link">
|
|
6613
|
+
Changed
|
|
6601
6614
|
</a>
|
|
6602
6615
|
|
|
6603
6616
|
</li>
|
|
6604
6617
|
|
|
6605
6618
|
<li class="md-nav__item">
|
|
6606
|
-
<a href="#
|
|
6607
|
-
|
|
6619
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
6620
|
+
Fixed
|
|
6608
6621
|
</a>
|
|
6609
6622
|
|
|
6610
6623
|
</li>
|
|
6611
6624
|
|
|
6612
6625
|
<li class="md-nav__item">
|
|
6613
|
-
<a href="#
|
|
6614
|
-
|
|
6626
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
6627
|
+
Dependencies
|
|
6615
6628
|
</a>
|
|
6616
6629
|
|
|
6617
6630
|
</li>
|
|
@@ -6636,11 +6649,11 @@
|
|
|
6636
6649
|
</li>
|
|
6637
6650
|
|
|
6638
6651
|
<li class="md-nav__item">
|
|
6639
|
-
<a href="#
|
|
6640
|
-
v2.0.
|
|
6652
|
+
<a href="#v204-2023-11-13" class="md-nav__link">
|
|
6653
|
+
v2.0.4 (2023-11-13)
|
|
6641
6654
|
</a>
|
|
6642
6655
|
|
|
6643
|
-
<nav class="md-nav" aria-label="v2.0.
|
|
6656
|
+
<nav class="md-nav" aria-label="v2.0.4 (2023-11-13)">
|
|
6644
6657
|
<ul class="md-nav__list">
|
|
6645
6658
|
|
|
6646
6659
|
<li class="md-nav__item">
|
|
@@ -6691,11 +6704,11 @@
|
|
|
6691
6704
|
</li>
|
|
6692
6705
|
|
|
6693
6706
|
<li class="md-nav__item">
|
|
6694
|
-
<a href="#
|
|
6695
|
-
v2.0.
|
|
6707
|
+
<a href="#v203-2023-10-23" class="md-nav__link">
|
|
6708
|
+
v2.0.3 (2023-10-23)
|
|
6696
6709
|
</a>
|
|
6697
6710
|
|
|
6698
|
-
<nav class="md-nav" aria-label="v2.0.
|
|
6711
|
+
<nav class="md-nav" aria-label="v2.0.3 (2023-10-23)">
|
|
6699
6712
|
<ul class="md-nav__list">
|
|
6700
6713
|
|
|
6701
6714
|
<li class="md-nav__item">
|
|
@@ -6743,6 +6756,61 @@
|
|
|
6743
6756
|
</ul>
|
|
6744
6757
|
</nav>
|
|
6745
6758
|
|
|
6759
|
+
</li>
|
|
6760
|
+
|
|
6761
|
+
<li class="md-nav__item">
|
|
6762
|
+
<a href="#v202-2023-10-16" class="md-nav__link">
|
|
6763
|
+
v2.0.2 (2023-10-16)
|
|
6764
|
+
</a>
|
|
6765
|
+
|
|
6766
|
+
<nav class="md-nav" aria-label="v2.0.2 (2023-10-16)">
|
|
6767
|
+
<ul class="md-nav__list">
|
|
6768
|
+
|
|
6769
|
+
<li class="md-nav__item">
|
|
6770
|
+
<a href="#security_4" class="md-nav__link">
|
|
6771
|
+
Security
|
|
6772
|
+
</a>
|
|
6773
|
+
|
|
6774
|
+
</li>
|
|
6775
|
+
|
|
6776
|
+
<li class="md-nav__item">
|
|
6777
|
+
<a href="#added_4" class="md-nav__link">
|
|
6778
|
+
Added
|
|
6779
|
+
</a>
|
|
6780
|
+
|
|
6781
|
+
</li>
|
|
6782
|
+
|
|
6783
|
+
<li class="md-nav__item">
|
|
6784
|
+
<a href="#changed_5" class="md-nav__link">
|
|
6785
|
+
Changed
|
|
6786
|
+
</a>
|
|
6787
|
+
|
|
6788
|
+
</li>
|
|
6789
|
+
|
|
6790
|
+
<li class="md-nav__item">
|
|
6791
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
6792
|
+
Fixed
|
|
6793
|
+
</a>
|
|
6794
|
+
|
|
6795
|
+
</li>
|
|
6796
|
+
|
|
6797
|
+
<li class="md-nav__item">
|
|
6798
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
6799
|
+
Documentation
|
|
6800
|
+
</a>
|
|
6801
|
+
|
|
6802
|
+
</li>
|
|
6803
|
+
|
|
6804
|
+
<li class="md-nav__item">
|
|
6805
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
6806
|
+
Housekeeping
|
|
6807
|
+
</a>
|
|
6808
|
+
|
|
6809
|
+
</li>
|
|
6810
|
+
|
|
6811
|
+
</ul>
|
|
6812
|
+
</nav>
|
|
6813
|
+
|
|
6746
6814
|
</li>
|
|
6747
6815
|
|
|
6748
6816
|
<li class="md-nav__item">
|
|
@@ -6754,14 +6822,14 @@
|
|
|
6754
6822
|
<ul class="md-nav__list">
|
|
6755
6823
|
|
|
6756
6824
|
<li class="md-nav__item">
|
|
6757
|
-
<a href="#
|
|
6825
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
6758
6826
|
Fixed
|
|
6759
6827
|
</a>
|
|
6760
6828
|
|
|
6761
6829
|
</li>
|
|
6762
6830
|
|
|
6763
6831
|
<li class="md-nav__item">
|
|
6764
|
-
<a href="#
|
|
6832
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
6765
6833
|
Housekeeping
|
|
6766
6834
|
</a>
|
|
6767
6835
|
|
|
@@ -6781,21 +6849,21 @@
|
|
|
6781
6849
|
<ul class="md-nav__list">
|
|
6782
6850
|
|
|
6783
6851
|
<li class="md-nav__item">
|
|
6784
|
-
<a href="#
|
|
6852
|
+
<a href="#added_5" class="md-nav__link">
|
|
6785
6853
|
Added
|
|
6786
6854
|
</a>
|
|
6787
6855
|
|
|
6788
6856
|
</li>
|
|
6789
6857
|
|
|
6790
6858
|
<li class="md-nav__item">
|
|
6791
|
-
<a href="#
|
|
6859
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
6792
6860
|
Fixed
|
|
6793
6861
|
</a>
|
|
6794
6862
|
|
|
6795
6863
|
</li>
|
|
6796
6864
|
|
|
6797
6865
|
<li class="md-nav__item">
|
|
6798
|
-
<a href="#
|
|
6866
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
6799
6867
|
Documentation
|
|
6800
6868
|
</a>
|
|
6801
6869
|
|
|
@@ -6815,56 +6883,56 @@
|
|
|
6815
6883
|
<ul class="md-nav__list">
|
|
6816
6884
|
|
|
6817
6885
|
<li class="md-nav__item">
|
|
6818
|
-
<a href="#
|
|
6886
|
+
<a href="#security_5" class="md-nav__link">
|
|
6819
6887
|
Security
|
|
6820
6888
|
</a>
|
|
6821
6889
|
|
|
6822
6890
|
</li>
|
|
6823
6891
|
|
|
6824
6892
|
<li class="md-nav__item">
|
|
6825
|
-
<a href="#
|
|
6893
|
+
<a href="#added_6" class="md-nav__link">
|
|
6826
6894
|
Added
|
|
6827
6895
|
</a>
|
|
6828
6896
|
|
|
6829
6897
|
</li>
|
|
6830
6898
|
|
|
6831
6899
|
<li class="md-nav__item">
|
|
6832
|
-
<a href="#
|
|
6900
|
+
<a href="#changed_6" class="md-nav__link">
|
|
6833
6901
|
Changed
|
|
6834
6902
|
</a>
|
|
6835
6903
|
|
|
6836
6904
|
</li>
|
|
6837
6905
|
|
|
6838
6906
|
<li class="md-nav__item">
|
|
6839
|
-
<a href="#
|
|
6907
|
+
<a href="#removed_2" class="md-nav__link">
|
|
6840
6908
|
Removed
|
|
6841
6909
|
</a>
|
|
6842
6910
|
|
|
6843
6911
|
</li>
|
|
6844
6912
|
|
|
6845
6913
|
<li class="md-nav__item">
|
|
6846
|
-
<a href="#
|
|
6914
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
6847
6915
|
Fixed
|
|
6848
6916
|
</a>
|
|
6849
6917
|
|
|
6850
6918
|
</li>
|
|
6851
6919
|
|
|
6852
6920
|
<li class="md-nav__item">
|
|
6853
|
-
<a href="#
|
|
6921
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
6854
6922
|
Dependencies
|
|
6855
6923
|
</a>
|
|
6856
6924
|
|
|
6857
6925
|
</li>
|
|
6858
6926
|
|
|
6859
6927
|
<li class="md-nav__item">
|
|
6860
|
-
<a href="#
|
|
6928
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
6861
6929
|
Documentation
|
|
6862
6930
|
</a>
|
|
6863
6931
|
|
|
6864
6932
|
</li>
|
|
6865
6933
|
|
|
6866
6934
|
<li class="md-nav__item">
|
|
6867
|
-
<a href="#
|
|
6935
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
6868
6936
|
Housekeeping
|
|
6869
6937
|
</a>
|
|
6870
6938
|
|
|
@@ -6884,49 +6952,49 @@
|
|
|
6884
6952
|
<ul class="md-nav__list">
|
|
6885
6953
|
|
|
6886
6954
|
<li class="md-nav__item">
|
|
6887
|
-
<a href="#
|
|
6955
|
+
<a href="#security_6" class="md-nav__link">
|
|
6888
6956
|
Security
|
|
6889
6957
|
</a>
|
|
6890
6958
|
|
|
6891
6959
|
</li>
|
|
6892
6960
|
|
|
6893
6961
|
<li class="md-nav__item">
|
|
6894
|
-
<a href="#
|
|
6962
|
+
<a href="#added_7" class="md-nav__link">
|
|
6895
6963
|
Added
|
|
6896
6964
|
</a>
|
|
6897
6965
|
|
|
6898
6966
|
</li>
|
|
6899
6967
|
|
|
6900
6968
|
<li class="md-nav__item">
|
|
6901
|
-
<a href="#
|
|
6969
|
+
<a href="#changed_7" class="md-nav__link">
|
|
6902
6970
|
Changed
|
|
6903
6971
|
</a>
|
|
6904
6972
|
|
|
6905
6973
|
</li>
|
|
6906
6974
|
|
|
6907
6975
|
<li class="md-nav__item">
|
|
6908
|
-
<a href="#
|
|
6976
|
+
<a href="#removed_3" class="md-nav__link">
|
|
6909
6977
|
Removed
|
|
6910
6978
|
</a>
|
|
6911
6979
|
|
|
6912
6980
|
</li>
|
|
6913
6981
|
|
|
6914
6982
|
<li class="md-nav__item">
|
|
6915
|
-
<a href="#
|
|
6983
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
6916
6984
|
Fixed
|
|
6917
6985
|
</a>
|
|
6918
6986
|
|
|
6919
6987
|
</li>
|
|
6920
6988
|
|
|
6921
6989
|
<li class="md-nav__item">
|
|
6922
|
-
<a href="#
|
|
6990
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
6923
6991
|
Documentation
|
|
6924
6992
|
</a>
|
|
6925
6993
|
|
|
6926
6994
|
</li>
|
|
6927
6995
|
|
|
6928
6996
|
<li class="md-nav__item">
|
|
6929
|
-
<a href="#
|
|
6997
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
6930
6998
|
Housekeeping
|
|
6931
6999
|
</a>
|
|
6932
7000
|
|
|
@@ -6946,28 +7014,28 @@
|
|
|
6946
7014
|
<ul class="md-nav__list">
|
|
6947
7015
|
|
|
6948
7016
|
<li class="md-nav__item">
|
|
6949
|
-
<a href="#
|
|
7017
|
+
<a href="#added_8" class="md-nav__link">
|
|
6950
7018
|
Added
|
|
6951
7019
|
</a>
|
|
6952
7020
|
|
|
6953
7021
|
</li>
|
|
6954
7022
|
|
|
6955
7023
|
<li class="md-nav__item">
|
|
6956
|
-
<a href="#
|
|
7024
|
+
<a href="#changed_8" class="md-nav__link">
|
|
6957
7025
|
Changed
|
|
6958
7026
|
</a>
|
|
6959
7027
|
|
|
6960
7028
|
</li>
|
|
6961
7029
|
|
|
6962
7030
|
<li class="md-nav__item">
|
|
6963
|
-
<a href="#
|
|
7031
|
+
<a href="#removed_4" class="md-nav__link">
|
|
6964
7032
|
Removed
|
|
6965
7033
|
</a>
|
|
6966
7034
|
|
|
6967
7035
|
</li>
|
|
6968
7036
|
|
|
6969
7037
|
<li class="md-nav__item">
|
|
6970
|
-
<a href="#
|
|
7038
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
6971
7039
|
Fixed
|
|
6972
7040
|
</a>
|
|
6973
7041
|
|
|
@@ -6987,49 +7055,49 @@
|
|
|
6987
7055
|
<ul class="md-nav__list">
|
|
6988
7056
|
|
|
6989
7057
|
<li class="md-nav__item">
|
|
6990
|
-
<a href="#
|
|
7058
|
+
<a href="#added_9" class="md-nav__link">
|
|
6991
7059
|
Added
|
|
6992
7060
|
</a>
|
|
6993
7061
|
|
|
6994
7062
|
</li>
|
|
6995
7063
|
|
|
6996
7064
|
<li class="md-nav__item">
|
|
6997
|
-
<a href="#
|
|
7065
|
+
<a href="#changed_9" class="md-nav__link">
|
|
6998
7066
|
Changed
|
|
6999
7067
|
</a>
|
|
7000
7068
|
|
|
7001
7069
|
</li>
|
|
7002
7070
|
|
|
7003
7071
|
<li class="md-nav__item">
|
|
7004
|
-
<a href="#
|
|
7072
|
+
<a href="#removed_5" class="md-nav__link">
|
|
7005
7073
|
Removed
|
|
7006
7074
|
</a>
|
|
7007
7075
|
|
|
7008
7076
|
</li>
|
|
7009
7077
|
|
|
7010
7078
|
<li class="md-nav__item">
|
|
7011
|
-
<a href="#
|
|
7079
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
7012
7080
|
Fixed
|
|
7013
7081
|
</a>
|
|
7014
7082
|
|
|
7015
7083
|
</li>
|
|
7016
7084
|
|
|
7017
7085
|
<li class="md-nav__item">
|
|
7018
|
-
<a href="#
|
|
7086
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
7019
7087
|
Dependencies
|
|
7020
7088
|
</a>
|
|
7021
7089
|
|
|
7022
7090
|
</li>
|
|
7023
7091
|
|
|
7024
7092
|
<li class="md-nav__item">
|
|
7025
|
-
<a href="#
|
|
7093
|
+
<a href="#documentation_8" class="md-nav__link">
|
|
7026
7094
|
Documentation
|
|
7027
7095
|
</a>
|
|
7028
7096
|
|
|
7029
7097
|
</li>
|
|
7030
7098
|
|
|
7031
7099
|
<li class="md-nav__item">
|
|
7032
|
-
<a href="#
|
|
7100
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
7033
7101
|
Housekeeping
|
|
7034
7102
|
</a>
|
|
7035
7103
|
|
|
@@ -7049,49 +7117,49 @@
|
|
|
7049
7117
|
<ul class="md-nav__list">
|
|
7050
7118
|
|
|
7051
7119
|
<li class="md-nav__item">
|
|
7052
|
-
<a href="#
|
|
7120
|
+
<a href="#added_10" class="md-nav__link">
|
|
7053
7121
|
Added
|
|
7054
7122
|
</a>
|
|
7055
7123
|
|
|
7056
7124
|
</li>
|
|
7057
7125
|
|
|
7058
7126
|
<li class="md-nav__item">
|
|
7059
|
-
<a href="#
|
|
7127
|
+
<a href="#changed_10" class="md-nav__link">
|
|
7060
7128
|
Changed
|
|
7061
7129
|
</a>
|
|
7062
7130
|
|
|
7063
7131
|
</li>
|
|
7064
7132
|
|
|
7065
7133
|
<li class="md-nav__item">
|
|
7066
|
-
<a href="#
|
|
7134
|
+
<a href="#removed_6" class="md-nav__link">
|
|
7067
7135
|
Removed
|
|
7068
7136
|
</a>
|
|
7069
7137
|
|
|
7070
7138
|
</li>
|
|
7071
7139
|
|
|
7072
7140
|
<li class="md-nav__item">
|
|
7073
|
-
<a href="#
|
|
7141
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
7074
7142
|
Fixed
|
|
7075
7143
|
</a>
|
|
7076
7144
|
|
|
7077
7145
|
</li>
|
|
7078
7146
|
|
|
7079
7147
|
<li class="md-nav__item">
|
|
7080
|
-
<a href="#
|
|
7148
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
7081
7149
|
Dependencies
|
|
7082
7150
|
</a>
|
|
7083
7151
|
|
|
7084
7152
|
</li>
|
|
7085
7153
|
|
|
7086
7154
|
<li class="md-nav__item">
|
|
7087
|
-
<a href="#
|
|
7155
|
+
<a href="#documentation_9" class="md-nav__link">
|
|
7088
7156
|
Documentation
|
|
7089
7157
|
</a>
|
|
7090
7158
|
|
|
7091
7159
|
</li>
|
|
7092
7160
|
|
|
7093
7161
|
<li class="md-nav__item">
|
|
7094
|
-
<a href="#
|
|
7162
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
7095
7163
|
Housekeeping
|
|
7096
7164
|
</a>
|
|
7097
7165
|
|
|
@@ -7111,49 +7179,49 @@
|
|
|
7111
7179
|
<ul class="md-nav__list">
|
|
7112
7180
|
|
|
7113
7181
|
<li class="md-nav__item">
|
|
7114
|
-
<a href="#
|
|
7182
|
+
<a href="#added_11" class="md-nav__link">
|
|
7115
7183
|
Added
|
|
7116
7184
|
</a>
|
|
7117
7185
|
|
|
7118
7186
|
</li>
|
|
7119
7187
|
|
|
7120
7188
|
<li class="md-nav__item">
|
|
7121
|
-
<a href="#
|
|
7189
|
+
<a href="#changed_11" class="md-nav__link">
|
|
7122
7190
|
Changed
|
|
7123
7191
|
</a>
|
|
7124
7192
|
|
|
7125
7193
|
</li>
|
|
7126
7194
|
|
|
7127
7195
|
<li class="md-nav__item">
|
|
7128
|
-
<a href="#
|
|
7196
|
+
<a href="#removed_7" class="md-nav__link">
|
|
7129
7197
|
Removed
|
|
7130
7198
|
</a>
|
|
7131
7199
|
|
|
7132
7200
|
</li>
|
|
7133
7201
|
|
|
7134
7202
|
<li class="md-nav__item">
|
|
7135
|
-
<a href="#
|
|
7203
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
7136
7204
|
Fixed
|
|
7137
7205
|
</a>
|
|
7138
7206
|
|
|
7139
7207
|
</li>
|
|
7140
7208
|
|
|
7141
7209
|
<li class="md-nav__item">
|
|
7142
|
-
<a href="#
|
|
7210
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
7143
7211
|
Dependencies
|
|
7144
7212
|
</a>
|
|
7145
7213
|
|
|
7146
7214
|
</li>
|
|
7147
7215
|
|
|
7148
7216
|
<li class="md-nav__item">
|
|
7149
|
-
<a href="#
|
|
7217
|
+
<a href="#documentation_10" class="md-nav__link">
|
|
7150
7218
|
Documentation
|
|
7151
7219
|
</a>
|
|
7152
7220
|
|
|
7153
7221
|
</li>
|
|
7154
7222
|
|
|
7155
7223
|
<li class="md-nav__item">
|
|
7156
|
-
<a href="#
|
|
7224
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
7157
7225
|
Housekeeping
|
|
7158
7226
|
</a>
|
|
7159
7227
|
|
|
@@ -7173,35 +7241,35 @@
|
|
|
7173
7241
|
<ul class="md-nav__list">
|
|
7174
7242
|
|
|
7175
7243
|
<li class="md-nav__item">
|
|
7176
|
-
<a href="#
|
|
7244
|
+
<a href="#added_12" class="md-nav__link">
|
|
7177
7245
|
Added
|
|
7178
7246
|
</a>
|
|
7179
7247
|
|
|
7180
7248
|
</li>
|
|
7181
7249
|
|
|
7182
7250
|
<li class="md-nav__item">
|
|
7183
|
-
<a href="#
|
|
7251
|
+
<a href="#changed_12" class="md-nav__link">
|
|
7184
7252
|
Changed
|
|
7185
7253
|
</a>
|
|
7186
7254
|
|
|
7187
7255
|
</li>
|
|
7188
7256
|
|
|
7189
7257
|
<li class="md-nav__item">
|
|
7190
|
-
<a href="#
|
|
7258
|
+
<a href="#removed_8" class="md-nav__link">
|
|
7191
7259
|
Removed
|
|
7192
7260
|
</a>
|
|
7193
7261
|
|
|
7194
7262
|
</li>
|
|
7195
7263
|
|
|
7196
7264
|
<li class="md-nav__item">
|
|
7197
|
-
<a href="#
|
|
7265
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
7198
7266
|
Dependencies
|
|
7199
7267
|
</a>
|
|
7200
7268
|
|
|
7201
7269
|
</li>
|
|
7202
7270
|
|
|
7203
7271
|
<li class="md-nav__item">
|
|
7204
|
-
<a href="#
|
|
7272
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
7205
7273
|
Housekeeping
|
|
7206
7274
|
</a>
|
|
7207
7275
|
|
|
@@ -7221,42 +7289,42 @@
|
|
|
7221
7289
|
<ul class="md-nav__list">
|
|
7222
7290
|
|
|
7223
7291
|
<li class="md-nav__item">
|
|
7224
|
-
<a href="#
|
|
7292
|
+
<a href="#added_13" class="md-nav__link">
|
|
7225
7293
|
Added
|
|
7226
7294
|
</a>
|
|
7227
7295
|
|
|
7228
7296
|
</li>
|
|
7229
7297
|
|
|
7230
7298
|
<li class="md-nav__item">
|
|
7231
|
-
<a href="#
|
|
7299
|
+
<a href="#changed_13" class="md-nav__link">
|
|
7232
7300
|
Changed
|
|
7233
7301
|
</a>
|
|
7234
7302
|
|
|
7235
7303
|
</li>
|
|
7236
7304
|
|
|
7237
7305
|
<li class="md-nav__item">
|
|
7238
|
-
<a href="#
|
|
7306
|
+
<a href="#removed_9" class="md-nav__link">
|
|
7239
7307
|
Removed
|
|
7240
7308
|
</a>
|
|
7241
7309
|
|
|
7242
7310
|
</li>
|
|
7243
7311
|
|
|
7244
7312
|
<li class="md-nav__item">
|
|
7245
|
-
<a href="#
|
|
7313
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
7246
7314
|
Fixed
|
|
7247
7315
|
</a>
|
|
7248
7316
|
|
|
7249
7317
|
</li>
|
|
7250
7318
|
|
|
7251
7319
|
<li class="md-nav__item">
|
|
7252
|
-
<a href="#
|
|
7320
|
+
<a href="#dependencies_7" class="md-nav__link">
|
|
7253
7321
|
Dependencies
|
|
7254
7322
|
</a>
|
|
7255
7323
|
|
|
7256
7324
|
</li>
|
|
7257
7325
|
|
|
7258
7326
|
<li class="md-nav__item">
|
|
7259
|
-
<a href="#
|
|
7327
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
7260
7328
|
Housekeeping
|
|
7261
7329
|
</a>
|
|
7262
7330
|
|
|
@@ -7276,49 +7344,49 @@
|
|
|
7276
7344
|
<ul class="md-nav__list">
|
|
7277
7345
|
|
|
7278
7346
|
<li class="md-nav__item">
|
|
7279
|
-
<a href="#
|
|
7347
|
+
<a href="#added_14" class="md-nav__link">
|
|
7280
7348
|
Added
|
|
7281
7349
|
</a>
|
|
7282
7350
|
|
|
7283
7351
|
</li>
|
|
7284
7352
|
|
|
7285
7353
|
<li class="md-nav__item">
|
|
7286
|
-
<a href="#
|
|
7354
|
+
<a href="#changed_14" class="md-nav__link">
|
|
7287
7355
|
Changed
|
|
7288
7356
|
</a>
|
|
7289
7357
|
|
|
7290
7358
|
</li>
|
|
7291
7359
|
|
|
7292
7360
|
<li class="md-nav__item">
|
|
7293
|
-
<a href="#
|
|
7361
|
+
<a href="#removed_10" class="md-nav__link">
|
|
7294
7362
|
Removed
|
|
7295
7363
|
</a>
|
|
7296
7364
|
|
|
7297
7365
|
</li>
|
|
7298
7366
|
|
|
7299
7367
|
<li class="md-nav__item">
|
|
7300
|
-
<a href="#
|
|
7368
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
7301
7369
|
Fixed
|
|
7302
7370
|
</a>
|
|
7303
7371
|
|
|
7304
7372
|
</li>
|
|
7305
7373
|
|
|
7306
7374
|
<li class="md-nav__item">
|
|
7307
|
-
<a href="#
|
|
7375
|
+
<a href="#dependencies_8" class="md-nav__link">
|
|
7308
7376
|
Dependencies
|
|
7309
7377
|
</a>
|
|
7310
7378
|
|
|
7311
7379
|
</li>
|
|
7312
7380
|
|
|
7313
7381
|
<li class="md-nav__item">
|
|
7314
|
-
<a href="#
|
|
7382
|
+
<a href="#documentation_11" class="md-nav__link">
|
|
7315
7383
|
Documentation
|
|
7316
7384
|
</a>
|
|
7317
7385
|
|
|
7318
7386
|
</li>
|
|
7319
7387
|
|
|
7320
7388
|
<li class="md-nav__item">
|
|
7321
|
-
<a href="#
|
|
7389
|
+
<a href="#housekeeping_13" class="md-nav__link">
|
|
7322
7390
|
Housekeeping
|
|
7323
7391
|
</a>
|
|
7324
7392
|
|
|
@@ -7630,17 +7698,80 @@
|
|
|
7630
7698
|
<p>A <code>natural_slug</code> property has been added to all models that inherit from <code>BaseModel</code> to provide a human-readable value for use in tools that require a loose reference to a Nautobot object, but this value is not equivalent to the <code>slug</code> field and is not guaranteed to be unique.</p>
|
|
7631
7699
|
<p>A natural key interface has been provided for most models to allow for uniquely referencing objects by a name that is friendlier than the primary key. For more information on the usage of natural keys vs primary keys see the documentation for <a href="../development/apps/api/platform-features/uniquely-identify-objects.html">Uniquely Identifying a Nautobot Object</a>.</p>
|
|
7632
7700
|
<!-- towncrier release notes start -->
|
|
7633
|
-
<h2 id="
|
|
7701
|
+
<h2 id="v206-2023-12-11">v2.0.6 (2023-12-11)<a class="headerlink" href="#v206-2023-12-11" title="Permanent link">¶</a></h2>
|
|
7634
7702
|
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
7635
7703
|
<ul>
|
|
7636
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/
|
|
7704
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4876">#4876</a> - Updated <code>cryptography</code> to <code>~41.0.6</code> due to CVE-2023-49083. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
7705
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4890">#4890</a> - Updated alpha UI dependency <code>@adobe/css-tools</code> to version 4.3.2 due to CVE-2023-48631.</li>
|
|
7706
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4959">#4959</a> - Enforce authentication and object permissions on DB file storage views (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-75mc-3pjc-727q">GHSA-75mc-3pjc-727q</a>).</li>
|
|
7707
|
+
</ul>
|
|
7708
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
7709
|
+
<ul>
|
|
7710
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4854">#4854</a> - Added invocations of <code>clean()</code> methods to <code>save()</code> methods for <code>ComputedField</code>, <code>CustomField</code>, and <code>Relationship</code> models to protect against creation of invalid data.</li>
|
|
7711
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
|
|
7712
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4883">#4883</a> - Added <code>get_default_namespace</code> and <code>get_default_namespace_pk</code> methods to <code>nautobot.apps.models</code> API.</li>
|
|
7637
7713
|
</ul>
|
|
7638
7714
|
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
7639
7715
|
<ul>
|
|
7640
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/
|
|
7716
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4813">#4813</a> - Changed <code>generate_secret_key.py</code> to use Python <code>secrets</code> library instead of <code>random</code>.</li>
|
|
7717
|
+
</ul>
|
|
7718
|
+
<h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">¶</a></h3>
|
|
7719
|
+
<ul>
|
|
7720
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4805">#4805</a> - Removed unused <code>nautobot.extras.choices.JobSourceChoices</code>.</li>
|
|
7721
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4805">#4805</a> - Removed check for <code>__init__.py</code> in <code>JOBS_ROOT</code> directory.</li>
|
|
7722
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4858">#4858</a> - Removed Jathan McCollum as a point of contact in <code>SECURITY.md</code>.</li>
|
|
7641
7723
|
</ul>
|
|
7642
7724
|
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
7643
7725
|
<ul>
|
|
7726
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3488">#3488</a> - Corrected positioning and style of "Collapse All" button in Jobs list view.</li>
|
|
7727
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4142">#4142</a> - Fixed unnecessary git operations when calling <code>ensure_git_repository</code> while the desired commit is already checked out.</li>
|
|
7728
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4179">#4179</a> - Fixed error in creation of storage directories (GIT_ROOT, JOBS_ROOT, MEDIA_ROOT, etc.) when running tests in parallel.</li>
|
|
7729
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4747">#4747</a> - Fixed an issue when appending nautobot version to a static file path with existing query parameters resulted in an invalid URL generation.</li>
|
|
7730
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4768">#4768</a> - Fixed incorrect link in TenantGroup template.</li>
|
|
7731
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4768">#4768</a> - Fixed ConfigContext not applied to nested TenantGroup objects.</li>
|
|
7732
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4819">#4819</a> - Fixed empty assignment field in IPAddress detail view.</li>
|
|
7733
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4845">#4845</a> - Fixed issues with installing an app that is nested inside a python package (e.g. <code>my_apps/app1/</code> + <code>my_apps/app2/</code>), and lookups for UI view testing.</li>
|
|
7734
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4851">#4851</a> - Fixed an exception when trying to access computed fields via GraphQL.</li>
|
|
7735
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4854">#4854</a> - Fixed GraphQL UI unable to load when some ComputedField instances have non-graphql-safe keys.</li>
|
|
7736
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4856">#4856</a> - Fix ConfigContext application logic for Locations and TenantGroups.</li>
|
|
7737
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4867">#4867</a> - Added try/except block to handle the <code>AttributeError</code> raised by <code>get_absolute_url()</code> when a valid absolute url cannot be found.</li>
|
|
7738
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4883">#4883</a> - Fixed <code>IPAddress</code> default namespace, when no namespace is provided.</li>
|
|
7739
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4891">#4891</a> - Fixed Prefix API and UI inability to filter on multiple values for the fields <code>prefix</code>, <code>within</code>, <code>within_include</code>, <code>contains</code>.</li>
|
|
7740
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4891">#4891</a> - Fixed IPAddress API and UI inability to filter on multiple values of <code>prefix</code>.</li>
|
|
7741
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4911">#4911</a> - Fixed the ability to modify tags on Namespaces via the UI.</li>
|
|
7742
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4922">#4922</a> - Fixed incorrect position of "actions" column in Location table view.</li>
|
|
7743
|
+
</ul>
|
|
7744
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
7745
|
+
<ul>
|
|
7746
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4812">#4812</a> - Updated <code>django-tree-queries</code> to <code>0.16.1</code> to bring in some desired feature fixes.</li>
|
|
7747
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4937">#4937</a> - Updated alpha UI dependency @rjsf/core to version 5.13.6.</li>
|
|
7748
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4937">#4937</a> - Updated alpha UI dependency @rjsf/utils to version 5.13.6.</li>
|
|
7749
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4937">#4937</a> - Updated alpha UI dependency @rjsf/validator-ajv8 to version 5.13.6.</li>
|
|
7750
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4937">#4937</a> - Updated alpha UI dependency react-refresh to version 0.14.0.</li>
|
|
7751
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4937">#4937</a> - Updated alpha UI dependency react-router-dom to version 6.18.0.</li>
|
|
7752
|
+
</ul>
|
|
7753
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
7754
|
+
<ul>
|
|
7755
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4805">#4805</a> - Updated documentation on jobs registration.</li>
|
|
7756
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4871">#4871</a> - Removed some duplicate documentation links in the Feature Guides.</li>
|
|
7757
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4923">#4923</a> - Fixed border for namespace image in docs.</li>
|
|
7758
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4952">#4952</a> - Corrected spelling of "extensions" in the navigation menu.</li>
|
|
7759
|
+
</ul>
|
|
7760
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
7761
|
+
<ul>
|
|
7762
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4945">#4945</a> - Replaced calls to deprecated <code>is_safe_url()</code> Django API with <code>url_has_allowed_host_and_scheme()</code> replacement API.</li>
|
|
7763
|
+
</ul>
|
|
7764
|
+
<h2 id="v205-2023-11-21">v2.0.5 (2023-11-21)<a class="headerlink" href="#v205-2023-11-21" title="Permanent link">¶</a></h2>
|
|
7765
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
7766
|
+
<ul>
|
|
7767
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4832">#4832</a> - Fixed cross-site-scripting (XSS) potential with maliciously crafted Custom Links, Computed Fields, and Job Buttons (GHSA-cf9f-wmhp-v4pr).</li>
|
|
7768
|
+
</ul>
|
|
7769
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
7770
|
+
<ul>
|
|
7771
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4832">#4832</a> - Changed the <code>render_jinja2()</code> API to no longer automatically call <code>mark_safe()</code> on the output.</li>
|
|
7772
|
+
</ul>
|
|
7773
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
7774
|
+
<ul>
|
|
7644
7775
|
<li><a href="https://github.com/nautobot/nautobot/issues/3015">#3015</a> - Fixed multiple jobhooks and/or webhooks triggered by a single change.</li>
|
|
7645
7776
|
<li><a href="https://github.com/nautobot/nautobot/issues/3015">#3015</a> - Fixed change logging behavior to properly combine multiple changes to an object in the same request.</li>
|
|
7646
7777
|
<li><a href="https://github.com/nautobot/nautobot/issues/4280">#4280</a> - Fixed text color of linked labels to use the same color as the text color of the non-linked labels.</li>
|
|
@@ -7649,39 +7780,39 @@
|
|
|
7649
7780
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Reduced size of Nautobot <code>sdist</code> and <code>wheel</code> packages from 86 MB to 31 MB.</li>
|
|
7650
7781
|
<li><a href="https://github.com/nautobot/nautobot/issues/4804">#4804</a> - Fixed VarbinaryIPField storing None or empty values as the binary representation of b'' thereby ignoring the non-null constraint on the field.</li>
|
|
7651
7782
|
</ul>
|
|
7652
|
-
<h3 id="
|
|
7783
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
7653
7784
|
<ul>
|
|
7654
7785
|
<li><a href="https://github.com/nautobot/nautobot/issues/4615">#4615</a> - Updated <code>psycopg2-binary</code> dependency to version 2.9.9.</li>
|
|
7655
7786
|
<li><a href="https://github.com/nautobot/nautobot/issues/4615">#4615</a> - Updated <code>pylint</code> development dependency to version 2.17.7.</li>
|
|
7656
7787
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated <code>mkdocs</code> development dependency to <code>1.5.3</code>.</li>
|
|
7657
7788
|
</ul>
|
|
7658
|
-
<h3 id="
|
|
7789
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
7659
7790
|
<ul>
|
|
7660
7791
|
<li><a href="https://github.com/nautobot/nautobot/issues/4008">#4008</a> - Removed CacheOps reference from application stack diagram.</li>
|
|
7661
7792
|
</ul>
|
|
7662
|
-
<h3 id="
|
|
7793
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
7663
7794
|
<ul>
|
|
7664
7795
|
<li><a href="https://github.com/nautobot/nautobot/issues/3179">#3179</a> - Added unittest for CircuitTermination with a cable connected to CircuitTermination, FrontPort, or RearPort fix in #4815.</li>
|
|
7665
7796
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
|
|
7666
7797
|
<li><a href="https://github.com/nautobot/nautobot/issues/4832">#4832</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
7667
7798
|
</ul>
|
|
7668
7799
|
<h2 id="v204-2023-11-13">v2.0.4 (2023-11-13)<a class="headerlink" href="#v204-2023-11-13" title="Permanent link">¶</a></h2>
|
|
7669
|
-
<h3 id="
|
|
7800
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
7670
7801
|
<ul>
|
|
7671
7802
|
<li><a href="https://github.com/nautobot/nautobot/issues/4748">#4748</a> - Updated <code>Django</code> minimum version to 3.2.23 to protect against CVE-2023-46695.</li>
|
|
7672
7803
|
<li><a href="https://github.com/nautobot/nautobot/issues/4782">#4782</a> - Updated alpha-UI dependency <code>axios</code> to version 1.6.0 due to CVE-2023-45857.</li>
|
|
7673
7804
|
</ul>
|
|
7674
|
-
<h3 id="
|
|
7805
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
7675
7806
|
<ul>
|
|
7676
7807
|
<li><a href="https://github.com/nautobot/nautobot/issues/4349">#4349</a> - Added Note List View.</li>
|
|
7677
7808
|
<li><a href="https://github.com/nautobot/nautobot/issues/4704">#4704</a> - Added missing Rack table to Role Detail View.</li>
|
|
7678
7809
|
<li><a href="https://github.com/nautobot/nautobot/issues/4709">#4709</a> - Added form field to allow assignment of IP addresses when creating a new Interface.</li>
|
|
7679
7810
|
</ul>
|
|
7680
|
-
<h3 id="
|
|
7811
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
7681
7812
|
<ul>
|
|
7682
7813
|
<li><a href="https://github.com/nautobot/nautobot/issues/4709">#4709</a> - Changed order of fields displayed when editing an Interface to be the same as when creating a new Interface.</li>
|
|
7683
7814
|
</ul>
|
|
7684
|
-
<h3 id="
|
|
7815
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
7685
7816
|
<ul>
|
|
7686
7817
|
<li><a href="https://github.com/nautobot/nautobot/issues/3990">#3990</a> - Fixed the issue preventing associated Note objects from being deleted when the assigned object is deleted.</li>
|
|
7687
7818
|
<li><a href="https://github.com/nautobot/nautobot/issues/4626">#4626</a> - Fixed incorrect "Prefixes" link from VRF detail view.</li>
|
|
@@ -7700,7 +7831,7 @@
|
|
|
7700
7831
|
<li><a href="https://github.com/nautobot/nautobot/issues/4751">#4751</a> - Fixed a bug with <code>BaseModel.get_absolute_url</code> returning an AttributeError instead of raising it.</li>
|
|
7701
7832
|
<li><a href="https://github.com/nautobot/nautobot/issues/4779">#4779</a> - Fixed an error when syncing a git repo without a worker running.</li>
|
|
7702
7833
|
</ul>
|
|
7703
|
-
<h3 id="
|
|
7834
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
7704
7835
|
<ul>
|
|
7705
7836
|
<li><a href="https://github.com/nautobot/nautobot/issues/3927">#3927</a> - Fixed documentation for creating databases on PostgreSQL version 15.</li>
|
|
7706
7837
|
<li><a href="https://github.com/nautobot/nautobot/issues/4622">#4622</a> - Fixed docs incorrectly referencing Nautobot 1.5 as the LTM release for 1.x.</li>
|
|
@@ -7711,7 +7842,7 @@
|
|
|
7711
7842
|
<li><a href="https://github.com/nautobot/nautobot/issues/4720">#4720</a> - Added redeployment demo environment step to release-checklist.md.</li>
|
|
7712
7843
|
<li><a href="https://github.com/nautobot/nautobot/issues/4767">#4767</a> - Updated Job and App Developer docs to import from the <code>nautobot.apps</code> module throughout.</li>
|
|
7713
7844
|
</ul>
|
|
7714
|
-
<h3 id="
|
|
7845
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
7715
7846
|
<ul>
|
|
7716
7847
|
<li><a href="https://github.com/nautobot/nautobot/issues/4638">#4638</a> - Updated Apps upstream testing CI to use the correct branch pairings post-2.0.</li>
|
|
7717
7848
|
<li><a href="https://github.com/nautobot/nautobot/issues/4686">#4686</a> - Fixed incorrect tagging of 1.6.x Docker <code>nautobot-dev</code> images as <code>latest</code>.</li>
|
|
@@ -7719,53 +7850,53 @@
|
|
|
7719
7850
|
<li><a href="https://github.com/nautobot/nautobot/issues/4709">#4709</a> - Replaced a number of <code>ModelChoiceField</code> in DCIM forms with more appropriate <code>DynamicModelChoiceField</code>.</li>
|
|
7720
7851
|
</ul>
|
|
7721
7852
|
<h2 id="v203-2023-10-23">v2.0.3 (2023-10-23)<a class="headerlink" href="#v203-2023-10-23" title="Permanent link">¶</a></h2>
|
|
7722
|
-
<h3 id="
|
|
7853
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
7723
7854
|
<ul>
|
|
7724
7855
|
<li><a href="https://github.com/nautobot/nautobot/issues/4671">#4671</a> - Updated <code>urllib3</code> to 2.0.7 due to CVE-2023-45803. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
7725
7856
|
<li><a href="https://github.com/nautobot/nautobot/issues/4673">#4673</a> - Fixed token exposure in <code>JobResult</code> traceback and result output when a <code>GitRepositorySync</code> job fails in certain ways.</li>
|
|
7726
7857
|
<li><a href="https://github.com/nautobot/nautobot/issues/4692">#4692</a> - Fixed potential exposure of hashed user password data on certain REST API endpoints when using the <code>?depth=1</code> query parameter. For more details, please refer to <a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hw-74xv-4gqp">GHSA-r2hw-74xv-4gqp</a>.</li>
|
|
7727
7858
|
</ul>
|
|
7728
|
-
<h3 id="
|
|
7859
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
7729
7860
|
<ul>
|
|
7730
7861
|
<li><a href="https://github.com/nautobot/nautobot/issues/4612">#4612</a> - Added validation step to handle invalid/legacy filters from v1.x in DynamicGroup form validation.</li>
|
|
7731
7862
|
<li><a href="https://github.com/nautobot/nautobot/issues/4668">#4668</a> - Added an <code>ENABLE_ALPHA_UI</code> configuration option to the settings, which is initially set to False. When set to True, this option enables the "Alpha UI 2.0" feature.</li>
|
|
7732
7863
|
</ul>
|
|
7733
|
-
<h3 id="
|
|
7864
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
7734
7865
|
<ul>
|
|
7735
7866
|
<li><a href="https://github.com/nautobot/nautobot/issues/4668">#4668</a> - Changed the flag <code>--no-build-ui</code> to <code>--build-ui</code>, and its default value to False for the <code>nautobot-server post-upgrade</code> command.</li>
|
|
7736
7867
|
</ul>
|
|
7737
|
-
<h3 id="
|
|
7868
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
7738
7869
|
<ul>
|
|
7739
7870
|
<li><a href="https://github.com/nautobot/nautobot/issues/4604">#4604</a> - Fixed <code>post_upgrade</code> bug involving potential left over references to Aggregate, DeviceRole, and RackRole ContentTypes in ObjectChange records.</li>
|
|
7740
7871
|
<li><a href="https://github.com/nautobot/nautobot/issues/4608">#4608</a> - Fixed error <code>'IPAddressBulkAddForm' has no field named 'parent'</code> when bulk creating IPs via UI.</li>
|
|
7741
7872
|
<li><a href="https://github.com/nautobot/nautobot/issues/4676">#4676</a> - Ensured that <code>ScheduledJob.job_class</code> values are correctly transferred to <code>ScheduledJob.task</code> during v2 migration.</li>
|
|
7742
7873
|
<li><a href="https://github.com/nautobot/nautobot/issues/4692">#4692</a> - Fixed incorrect inheritance of <code>Meta</code> attributes into nested serializers (<code>depth >= 1</code>).</li>
|
|
7743
7874
|
</ul>
|
|
7744
|
-
<h3 id="
|
|
7875
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
7745
7876
|
<ul>
|
|
7746
7877
|
<li><a href="https://github.com/nautobot/nautobot/issues/4669">#4669</a> - Added redirects from 1.x documentation paths to their 2.x equivalents to fix broken links/bookmarks.</li>
|
|
7747
7878
|
</ul>
|
|
7748
|
-
<h3 id="
|
|
7879
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
7749
7880
|
<ul>
|
|
7750
7881
|
<li><a href="https://github.com/nautobot/nautobot/issues/4692">#4692</a> - Added check in REST API generic test cases to detect strings like <code>password</code> and <code>sha256</code> that shouldn't generally appear in REST API responses.</li>
|
|
7751
7882
|
</ul>
|
|
7752
7883
|
<h2 id="v202-2023-10-16">v2.0.2 (2023-10-16)<a class="headerlink" href="#v202-2023-10-16" title="Permanent link">¶</a></h2>
|
|
7753
|
-
<h3 id="
|
|
7884
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
7754
7885
|
<ul>
|
|
7755
7886
|
<li><a href="https://github.com/nautobot/nautobot/issues/4586">#4586</a> - Updated <code>urllib3</code> to 2.0.6 due to CVE-2023-43804. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
7756
7887
|
<li><a href="https://github.com/nautobot/nautobot/issues/4621">#4621</a> - Updated <code>postcss</code> <code>npm</code> package to 8.4.31 to address CVE-2023-44270.</li>
|
|
7757
7888
|
<li><a href="https://github.com/nautobot/nautobot/issues/4652">#4652</a> - Updated <code>babel/traverse</code> <code>npm</code> dependency to 7.23.2 to address CVE-2023-45133.</li>
|
|
7758
7889
|
</ul>
|
|
7759
|
-
<h3 id="
|
|
7890
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
7760
7891
|
<ul>
|
|
7761
7892
|
<li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
|
|
7762
7893
|
<li><a href="https://github.com/nautobot/nautobot/issues/4607">#4607</a> - Added <code>nautobot-server audit_graphql_queries</code> management command for evaluating breaking filter changes to existing GraphQLQuery instances.</li>
|
|
7763
7894
|
</ul>
|
|
7764
|
-
<h3 id="
|
|
7895
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
7765
7896
|
<ul>
|
|
7766
7897
|
<li><a href="https://github.com/nautobot/nautobot/issues/4313">#4313</a> - Updated device search to include manufacturer name.</li>
|
|
7767
7898
|
</ul>
|
|
7768
|
-
<h3 id="
|
|
7899
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
7769
7900
|
<ul>
|
|
7770
7901
|
<li><a href="https://github.com/nautobot/nautobot/issues/4472">#4472</a> - Fixed incorrect logic in <code>nautobot_config.py.j2</code> template that wouldn't detect the MySQL engine when Prometheus metrics are enabled.</li>
|
|
7771
7902
|
<li><a href="https://github.com/nautobot/nautobot/issues/4547">#4547</a> - Fixed incorrect form field type for <code>DeviceFilterForm.device_redundancy_group_priority</code>.</li>
|
|
@@ -7773,7 +7904,7 @@
|
|
|
7773
7904
|
<li><a href="https://github.com/nautobot/nautobot/issues/4603">#4603</a> - Fixed a bug that makes Manufacturers list fail to load.</li>
|
|
7774
7905
|
<li><a href="https://github.com/nautobot/nautobot/issues/4639">#4639</a> - Fixed the ability to attach images to Locations.</li>
|
|
7775
7906
|
</ul>
|
|
7776
|
-
<h3 id="
|
|
7907
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
7777
7908
|
<ul>
|
|
7778
7909
|
<li><a href="https://github.com/nautobot/nautobot/issues/4591">#4591</a> - Fixed incorrect documentation of <code>FEEDBACK_BUTTON_ENABLED</code> configuration setting.</li>
|
|
7779
7910
|
<li><a href="https://github.com/nautobot/nautobot/issues/4591">#4591</a> - Fixed a number of missing app code-reference links in the documentation table of contents.</li>
|
|
@@ -7782,33 +7913,33 @@
|
|
|
7782
7913
|
<li><a href="https://github.com/nautobot/nautobot/issues/4613">#4613</a> - Changed CLI reference from <code>dns</code> to <code>dnf</code> for install on RHEL systems.</li>
|
|
7783
7914
|
<li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
|
|
7784
7915
|
</ul>
|
|
7785
|
-
<h3 id="
|
|
7916
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
7786
7917
|
<ul>
|
|
7787
7918
|
<li><a href="https://github.com/nautobot/nautobot/issues/4611">#4611</a> - Updated pylint to use multiple threads.</li>
|
|
7788
7919
|
</ul>
|
|
7789
7920
|
<h2 id="v201-2023-10-04">v2.0.1 (2023-10-04)<a class="headerlink" href="#v201-2023-10-04" title="Permanent link">¶</a></h2>
|
|
7790
|
-
<h3 id="
|
|
7921
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
7791
7922
|
<ul>
|
|
7792
7923
|
<li><a href="https://github.com/nautobot/nautobot/issues/4436">#4436</a> - Allowed Interfaces of type <code>Virtual</code>, <code>LAG</code>, and <code>Bridge</code> to be selected as a virtual Interface's <code>parent</code>.</li>
|
|
7793
7924
|
<li><a href="https://github.com/nautobot/nautobot/issues/4572">#4572</a> - Fixed a JS crash when using list view search box to filter objects in legacy UI.</li>
|
|
7794
7925
|
</ul>
|
|
7795
|
-
<h3 id="
|
|
7926
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
7796
7927
|
<ul>
|
|
7797
7928
|
<li><a href="https://github.com/nautobot/nautobot/issues/4523">#4523</a> - Fixed <code>invoke eslint</code> not running against local development environment.</li>
|
|
7798
7929
|
<li><a href="https://github.com/nautobot/nautobot/issues/4552">#4552</a> - Improved <code>test_bulk_delete_form_contains_all_filtered</code> and <code>test_bulk_edit_form_contains_all_filtered</code> generic tests to fail more gracefully if insufficient test data is available.</li>
|
|
7799
7930
|
</ul>
|
|
7800
7931
|
<h2 id="v200-2023-09-28">v2.0.0 (2023-09-28)<a class="headerlink" href="#v200-2023-09-28" title="Permanent link">¶</a></h2>
|
|
7801
|
-
<h3 id="
|
|
7932
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
7802
7933
|
<ul>
|
|
7803
7934
|
<li><a href="https://github.com/nautobot/nautobot/issues/4553">#4553</a> - Implement table sticky headers.</li>
|
|
7804
7935
|
</ul>
|
|
7805
|
-
<h3 id="
|
|
7936
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
7806
7937
|
<ul>
|
|
7807
7938
|
<li><a href="https://github.com/nautobot/nautobot/issues/4550">#4550</a> - Fixed a 500 error caused by <code>PrefixForm</code> when <code>prefix_length</code> was omitted from <code>prefix</code> input.</li>
|
|
7808
7939
|
<li><a href="https://github.com/nautobot/nautobot/issues/4559">#4559</a> - Fixed behavior of a <code>DynamicGroup</code> with an invalid <code>filter</code> to fail closed rather than failing open.</li>
|
|
7809
7940
|
<li><a href="https://github.com/nautobot/nautobot/issues/4566">#4566</a> - Fixed table sticky headers in Firefox.</li>
|
|
7810
7941
|
</ul>
|
|
7811
|
-
<h3 id="
|
|
7942
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
7812
7943
|
<ul>
|
|
7813
7944
|
<li><a href="https://github.com/nautobot/nautobot/issues/4489">#4489</a> - Added release note overview to Jobs Overhaul.</li>
|
|
7814
7945
|
<li><a href="https://github.com/nautobot/nautobot/issues/4492">#4492</a> - Added slug removal documentation to the 2.0 release notes Release Overview.</li>
|
|
@@ -7816,11 +7947,11 @@
|
|
|
7816
7947
|
<li><a href="https://github.com/nautobot/nautobot/issues/4556">#4556</a> - Added documentation for using lowercase variables in App provided Constance Config.</li>
|
|
7817
7948
|
</ul>
|
|
7818
7949
|
<h2 id="v200rc-4-2023-09-27">v2.0.0.rc-4 (2023-09-27)<a class="headerlink" href="#v200rc-4-2023-09-27" title="Permanent link">¶</a></h2>
|
|
7819
|
-
<h3 id="
|
|
7950
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
7820
7951
|
<ul>
|
|
7821
7952
|
<li><a href="https://github.com/nautobot/nautobot/issues/4500">#4500</a> - Updated <code>cryptography</code> to 41.0.4 due to <a href="https://github.com/advisories/GHSA-v8gr-m533-ghj9">GHSA-v8gr-m533-ghj9</a>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
7822
7953
|
</ul>
|
|
7823
|
-
<h3 id="
|
|
7954
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
7824
7955
|
<ul>
|
|
7825
7956
|
<li><a href="https://github.com/nautobot/nautobot/issues/4103">#4103</a> - Added UI viewset for detail/list/import/export views of <code>IPAddressToInterface</code> objects.</li>
|
|
7826
7957
|
<li><a href="https://github.com/nautobot/nautobot/issues/4418">#4418</a> - Added <code>netutils_parser</code> to <code>network_driver</code>.</li>
|
|
@@ -7836,7 +7967,7 @@
|
|
|
7836
7967
|
<li><a href="https://github.com/nautobot/nautobot/issues/4477">#4477</a> - Added the <code>slugify</code> Django template tag as a Jinja filter.</li>
|
|
7837
7968
|
<li><a href="https://github.com/nautobot/nautobot/issues/4524">#4524</a> - Added optional <code>api</code> parameter to <code>NotesMixin.get_notes_url()</code> model method.</li>
|
|
7838
7969
|
</ul>
|
|
7839
|
-
<h3 id="
|
|
7970
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
7840
7971
|
<ul>
|
|
7841
7972
|
<li><a href="https://github.com/nautobot/nautobot/issues/2472">#2472</a> - Added <code>tagged_vlans</code> and <code>untagged_vlan</code> as selected/prefetched in (VM)Interface API views.</li>
|
|
7842
7973
|
<li><a href="https://github.com/nautobot/nautobot/issues/2472">#2472</a> - Added <code>ip_addresses</code> as prefetched in VMInterface API views.</li>
|
|
@@ -7850,13 +7981,13 @@
|
|
|
7850
7981
|
<li><a href="https://github.com/nautobot/nautobot/issues/4426">#4426</a> - Changed <code>fix_custom_fields</code> to skip models without any custom fields.</li>
|
|
7851
7982
|
<li><a href="https://github.com/nautobot/nautobot/issues/4462">#4462</a> - Updated new UI to use REST API FilterSet metadata to populate filter form.</li>
|
|
7852
7983
|
</ul>
|
|
7853
|
-
<h3 id="
|
|
7984
|
+
<h3 id="removed_2">Removed<a class="headerlink" href="#removed_2" title="Permanent link">¶</a></h3>
|
|
7854
7985
|
<ul>
|
|
7855
7986
|
<li><a href="https://github.com/nautobot/nautobot/issues/4425">#4425</a> - Removed composite key from new UI object-detail "Advanced" tab.</li>
|
|
7856
7987
|
<li><a href="https://github.com/nautobot/nautobot/issues/4448">#4448</a> - Removed composite key from user-facing interfaces (API, UI).</li>
|
|
7857
7988
|
<li><a href="https://github.com/nautobot/nautobot/issues/4538">#4538</a> - Removed unnecessary dependency on <code>semver</code> npm package.</li>
|
|
7858
7989
|
</ul>
|
|
7859
|
-
<h3 id="
|
|
7990
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
7860
7991
|
<ul>
|
|
7861
7992
|
<li><a href="https://github.com/nautobot/nautobot/issues/4033">#4033</a> - Fixed filtering objects in bulk edit and bulk delete.</li>
|
|
7862
7993
|
<li><a href="https://github.com/nautobot/nautobot/issues/4327">#4327</a> - Fixed a case where an ObjectChange would not be created when making an M2M change via the ORM.</li>
|
|
@@ -7878,12 +8009,12 @@
|
|
|
7878
8009
|
<li><a href="https://github.com/nautobot/nautobot/issues/4524">#4524</a> - Fixed an exception in REST API <code>/notes/</code> action endpoints that was inadvertently introduced in #4517.</li>
|
|
7879
8010
|
<li><a href="https://github.com/nautobot/nautobot/issues/4535">#4535</a> - Fixed off-by-one error in new UI date processing.</li>
|
|
7880
8011
|
</ul>
|
|
7881
|
-
<h3 id="
|
|
8012
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
7882
8013
|
<ul>
|
|
7883
8014
|
<li><a href="https://github.com/nautobot/nautobot/issues/4418">#4418</a> - Dependency <code>netutils</code> updated to <code>^1.6.0</code>.</li>
|
|
7884
8015
|
<li><a href="https://github.com/nautobot/nautobot/issues/4538">#4538</a> - Updated npm dependencies via <code>npm update</code>.</li>
|
|
7885
8016
|
</ul>
|
|
7886
|
-
<h3 id="
|
|
8017
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
7887
8018
|
<ul>
|
|
7888
8019
|
<li><a href="https://github.com/nautobot/nautobot/issues/3303">#3303</a> - Added additional section headers to the Release Overview of Nautobot 2.0 release notes.</li>
|
|
7889
8020
|
<li><a href="https://github.com/nautobot/nautobot/issues/3303">#3303</a> - Added TODO comments for each additional section header.</li>
|
|
@@ -7898,17 +8029,17 @@
|
|
|
7898
8029
|
<li><a href="https://github.com/nautobot/nautobot/issues/4493">#4493</a> - Reordered overview items in the 2.0 release-notes.</li>
|
|
7899
8030
|
<li><a href="https://github.com/nautobot/nautobot/issues/4507">#4507</a> - Added Data Validation Engine to list of apps in docs.</li>
|
|
7900
8031
|
</ul>
|
|
7901
|
-
<h3 id="
|
|
8032
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
7902
8033
|
<ul>
|
|
7903
8034
|
<li><a href="https://github.com/nautobot/nautobot/issues/4479">#4479</a> - Configured <code>npm</code> in Docker image to use 30s timeout, pinned <code>npm</code> to 9.X, and changed Docker build to use <code>npm ci</code> instead of <code>npm install</code> to improve builds.</li>
|
|
7904
8035
|
<li><a href="https://github.com/nautobot/nautobot/issues/4524">#4524</a> - Added <code>test_notes_url_functionality</code> test case to <code>APIViewTestCases.NotesURLViewTestCase</code> generic test class.</li>
|
|
7905
8036
|
</ul>
|
|
7906
8037
|
<h2 id="v200-rc3-2023-09-15">v2.0.0-rc.3 (2023-09-15)<a class="headerlink" href="#v200-rc3-2023-09-15" title="Permanent link">¶</a></h2>
|
|
7907
|
-
<h3 id="
|
|
8038
|
+
<h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">¶</a></h3>
|
|
7908
8039
|
<ul>
|
|
7909
8040
|
<li><a href="https://github.com/nautobot/nautobot/issues/3880">#3880</a> - Updated <code>GitPython</code> to <code>3.1.36</code> to address <code>CVE-2023-41040</code>.</li>
|
|
7910
8041
|
</ul>
|
|
7911
|
-
<h3 id="
|
|
8042
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
7912
8043
|
<ul>
|
|
7913
8044
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Added <code>Namespace</code> column to <code>VRFDeviceAssignmentTable</code> and <code>VRFPrefixAssignmentTable</code> to display assigned VRFs' <code>namespace</code> property.</li>
|
|
7914
8045
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Added <code>namespace</code> attribute to rendering of "IP Addresses" columns of relevant <code>Interface</code> and <code>InterfaceRedundancyGroup</code> tables.</li>
|
|
@@ -7918,7 +8049,7 @@
|
|
|
7918
8049
|
<li><a href="https://github.com/nautobot/nautobot/issues/4249">#4249</a> - Added REST API endpoint for the IPAddressToInterface model.</li>
|
|
7919
8050
|
<li><a href="https://github.com/nautobot/nautobot/issues/4346">#4346</a> - Implemented <code>.natural_slug</code> property on all models.</li>
|
|
7920
8051
|
</ul>
|
|
7921
|
-
<h3 id="
|
|
8052
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
7922
8053
|
<ul>
|
|
7923
8054
|
<li><a href="https://github.com/nautobot/nautobot/issues/4012">#4012</a> - Disable non ready Model View in new-ui sidebar.</li>
|
|
7924
8055
|
<li><a href="https://github.com/nautobot/nautobot/issues/4015">#4015</a> - Refined new-UI IPAddress detail view.</li>
|
|
@@ -7928,14 +8059,14 @@
|
|
|
7928
8059
|
<li><a href="https://github.com/nautobot/nautobot/issues/4333">#4333</a> - Updated Dockerfile not to use Python virtual environment.</li>
|
|
7929
8060
|
<li><a href="https://github.com/nautobot/nautobot/issues/4440">#4440</a> - Fixed an issues with ModelForm's that used <code>__all__</code> on <code>Meta.fields</code> and <code>custom_fields</code> displayed a JSON blob.</li>
|
|
7930
8061
|
</ul>
|
|
7931
|
-
<h3 id="
|
|
8062
|
+
<h3 id="removed_3">Removed<a class="headerlink" href="#removed_3" title="Permanent link">¶</a></h3>
|
|
7932
8063
|
<ul>
|
|
7933
8064
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Removed <code>ip_family</code> queryset annotation from <code>PrefixQuerySet</code> and <code>IPAddressQuerySet</code>.</li>
|
|
7934
8065
|
<li><a href="https://github.com/nautobot/nautobot/issues/4011">#4011</a> - Removed the "disable menu" feature for non-NewUI ready menu links in the sidebar and NavBar.</li>
|
|
7935
8066
|
<li><a href="https://github.com/nautobot/nautobot/issues/4015">#4015</a> - Removed <code>tags</code>, <code>custom-fields</code>, <code>computed-fields</code>, <code>relationships</code> from new-UI object detail</li>
|
|
7936
8067
|
<li><a href="https://github.com/nautobot/nautobot/issues/4017">#4017</a> - Removed <code>notes_url</code> from new-UI object detail views.</li>
|
|
7937
8068
|
</ul>
|
|
7938
|
-
<h3 id="
|
|
8069
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
7939
8070
|
<ul>
|
|
7940
8071
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Fixed validation logic for VirtualMachine primary ips.</li>
|
|
7941
8072
|
<li><a href="https://github.com/nautobot/nautobot/issues/4010">#4010</a> - Fixed error not being raised when an invalid parent is provided to the IPAddress in both the API and ORM.</li>
|
|
@@ -7947,7 +8078,7 @@
|
|
|
7947
8078
|
<li><a href="https://github.com/nautobot/nautobot/issues/4388">#4388</a> - Fixed a bug that makes ConfigContexts applied to parent locations missing from rendered config context of child location Devices/Virtual Machines.</li>
|
|
7948
8079
|
<li><a href="https://github.com/nautobot/nautobot/issues/4407">#4407</a> - Fixed Dockerfile Node.js <code>setup_XX.x</code> <a href="https://github.com/nodesource/distributions#new-update-%EF%B8%8F">deprecated script</a>.</li>
|
|
7949
8080
|
</ul>
|
|
7950
|
-
<h3 id="
|
|
8081
|
+
<h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">¶</a></h3>
|
|
7951
8082
|
<ul>
|
|
7952
8083
|
<li><a href="https://github.com/nautobot/nautobot/issues/2821">#2821</a> - Adds navigation.footer to mkdocs features to enable navigation in the footer.</li>
|
|
7953
8084
|
<li><a href="https://github.com/nautobot/nautobot/issues/2821">#2821</a> - Updates installation documentation into a single path, using tabs for MySQL/PostgeSQL & Ubuntu/Debian/RHEL.</li>
|
|
@@ -7959,7 +8090,7 @@
|
|
|
7959
8090
|
<li><a href="https://github.com/nautobot/nautobot/issues/4326">#4326</a> - Update documentation on Nautobot release workflow.</li>
|
|
7960
8091
|
<li><a href="https://github.com/nautobot/nautobot/issues/4429">#4429</a> - Updated the pylint-nautobot migration steps.</li>
|
|
7961
8092
|
</ul>
|
|
7962
|
-
<h3 id="
|
|
8093
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
7963
8094
|
<ul>
|
|
7964
8095
|
<li><a href="https://github.com/nautobot/nautobot/issues/2821">#2821</a> - Updates docker-compose standalone to docker compose plugin to assist in development environment.</li>
|
|
7965
8096
|
<li><a href="https://github.com/nautobot/nautobot/issues/4310">#4310</a> - Updated CI integration workflow to remove some redundant tests, run more tests in parallel and remove arm64 platform from the container build.</li>
|
|
@@ -7968,11 +8099,11 @@
|
|
|
7968
8099
|
<li><a href="https://github.com/nautobot/nautobot/issues/4409">#4409</a> - Updated upstream testing workflow for apps to test against LTM and 2.0 with <code>ltm-1.6</code> and <code>develop</code> branch tags respectively.</li>
|
|
7969
8100
|
</ul>
|
|
7970
8101
|
<h2 id="v200rc-2-2023-08-24">v2.0.0.rc-2 (2023-08-24)<a class="headerlink" href="#v200rc-2-2023-08-24" title="Permanent link">¶</a></h2>
|
|
7971
|
-
<h3 id="
|
|
8102
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
7972
8103
|
<ul>
|
|
7973
8104
|
<li><a href="https://github.com/nautobot/nautobot/issues/3794">#3794</a> - Added support for multi-column keys for CSV Import.</li>
|
|
7974
8105
|
</ul>
|
|
7975
|
-
<h3 id="
|
|
8106
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
7976
8107
|
<ul>
|
|
7977
8108
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Renamed <code>IPAddress</code> <code>vrf</code> filter to <code>vrfs</code>.</li>
|
|
7978
8109
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Renamed <code>Prefix</code> <code>mask_length</code> filter to <code>prefix_length</code> and <code>vrf</code> filter to <code>vrfs</code>.</li>
|
|
@@ -7985,21 +8116,21 @@
|
|
|
7985
8116
|
<li><a href="https://github.com/nautobot/nautobot/issues/2853">#2853</a> - Changed <code>as_form_class</code>, <code>as_form</code> and <code>validate_data</code> functions on BaseJob Model to <code>classmethods</code>.</li>
|
|
7986
8117
|
<li><a href="https://github.com/nautobot/nautobot/issues/4305">#4305</a> - Merged develop back into next after release 1.6.1</li>
|
|
7987
8118
|
</ul>
|
|
7988
|
-
<h3 id="
|
|
8119
|
+
<h3 id="removed_4">Removed<a class="headerlink" href="#removed_4" title="Permanent link">¶</a></h3>
|
|
7989
8120
|
<ul>
|
|
7990
8121
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Removed <code>RouteTarget</code> <code>exporting_vrf_id</code> and <code>importing_vrf_id</code> filters as they are redundant with the <code>exporting_vrfs</code> and <code>importing_vrfs</code> filters.</li>
|
|
7991
8122
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Removed <code>Service</code> <code>device_id</code> and <code>virtual_machine_id</code> filters as they are redundant with the <code>device</code> and <code>virtual_machine</code> filters.</li>
|
|
7992
8123
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Removed <code>VRF</code> <code>export_target_id</code> and <code>import_target_id</code> filters as they are redundant with the <code>export_targets</code> and <code>import_targets</code> filters.</li>
|
|
7993
8124
|
<li><a href="https://github.com/nautobot/nautobot/issues/2853">#2853</a> - Removed <code>/extras/jobs/results/<uuid:pk>/</code> URL endpoint.</li>
|
|
7994
8125
|
</ul>
|
|
7995
|
-
<h3 id="
|
|
8126
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
7996
8127
|
<ul>
|
|
7997
8128
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Fixed misnamed <code>tag</code> fields on various filter forms (correct filter name is now <code>tags</code>).</li>
|
|
7998
8129
|
<li><a href="https://github.com/nautobot/nautobot/issues/4299">#4299</a> - Added missing <code>to_field_name</code> attribute on <code>TagFilterField</code>, which was causing dynamic-group filtering failures.</li>
|
|
7999
8130
|
<li><a href="https://github.com/nautobot/nautobot/issues/4300">#4300</a> - Fixed a permission issue when using <code>final-dev</code> containers by switching to root user before exposing port and entrypoint.</li>
|
|
8000
8131
|
</ul>
|
|
8001
8132
|
<h2 id="v200rc1-2023-08-18">v2.0.0rc1 (2023-08-18)<a class="headerlink" href="#v200rc1-2023-08-18" title="Permanent link">¶</a></h2>
|
|
8002
|
-
<h3 id="
|
|
8133
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
8003
8134
|
<ul>
|
|
8004
8135
|
<li><a href="https://github.com/nautobot/nautobot/issues/1175">#1175</a> - Added "Submit Feedback" functionality to the new UI.</li>
|
|
8005
8136
|
<li><a href="https://github.com/nautobot/nautobot/issues/3582">#3582</a> - The 'GetFilterSetFieldDOMElementAPIView' now has the option to return the filterset field's DOM element in JSON format.</li>
|
|
@@ -8019,7 +8150,7 @@
|
|
|
8019
8150
|
<li><a href="https://github.com/nautobot/nautobot/issues/4225">#4225</a> - Added Namespace to IPAddressDetailTable.</li>
|
|
8020
8151
|
<li><a href="https://github.com/nautobot/nautobot/issues/4228">#4228</a> - Incorporated all code changes from Nautobot 1.6.0.</li>
|
|
8021
8152
|
</ul>
|
|
8022
|
-
<h3 id="
|
|
8153
|
+
<h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">¶</a></h3>
|
|
8023
8154
|
<ul>
|
|
8024
8155
|
<li><a href="https://github.com/nautobot/nautobot/issues/3229">#3229</a> - Rename JobResult.data to JobResult.result and delete the original JobResult.result.</li>
|
|
8025
8156
|
<li><a href="https://github.com/nautobot/nautobot/issues/3636">#3636</a> - Reintroduced "Assign IP Address" button to Device Interfaces list view.</li>
|
|
@@ -8045,7 +8176,7 @@
|
|
|
8045
8176
|
<li><a href="https://github.com/nautobot/nautobot/issues/4164">#4164</a> - Modified docker dev stage to run as root user to prevent permission issues with bind mounts.</li>
|
|
8046
8177
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed behavior of <code>dev</code> and <code>final-dev</code> Docker images to disable installation metrics by default.</li>
|
|
8047
8178
|
</ul>
|
|
8048
|
-
<h3 id="
|
|
8179
|
+
<h3 id="removed_5">Removed<a class="headerlink" href="#removed_5" title="Permanent link">¶</a></h3>
|
|
8049
8180
|
<ul>
|
|
8050
8181
|
<li><a href="https://github.com/nautobot/nautobot/issues/3761">#3761</a> - Remove remaining <code>Site</code> and <code>Region</code> references from core docs.</li>
|
|
8051
8182
|
<li><a href="https://github.com/nautobot/nautobot/issues/3892">#3892</a> - Removed unused method <code>get_job_result_and_repository_record</code> in <code>nautobot.extras.datasources.git</code>.</li>
|
|
@@ -8053,7 +8184,7 @@
|
|
|
8053
8184
|
<li><a href="https://github.com/nautobot/nautobot/issues/4104">#4104</a> - Removed unused <code>primary_for_device</code> from Interface data migration.</li>
|
|
8054
8185
|
<li><a href="https://github.com/nautobot/nautobot/issues/4115">#4115</a> - Removed temporary code from <code>ObjectEditView</code> that was working around some IPAddress/Prefix form validation gaps.</li>
|
|
8055
8186
|
</ul>
|
|
8056
|
-
<h3 id="
|
|
8187
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
8057
8188
|
<ul>
|
|
8058
8189
|
<li><a href="https://github.com/nautobot/nautobot/issues/3904">#3904</a> - Added proper spacing/alignment to pagination section.</li>
|
|
8059
8190
|
<li><a href="https://github.com/nautobot/nautobot/issues/3974">#3974</a> - Corrected the natural-key definitions for <code>ComputedField</code>, <code>CustomField</code>, <code>FileAttachment</code>, <code>ImageAttachment</code>, <code>ObjectChange</code>, <code>Relationship</code>, <code>RelationshipAssociation</code>, and <code>Token</code> models.</li>
|
|
@@ -8070,7 +8201,7 @@
|
|
|
8070
8201
|
<li><a href="https://github.com/nautobot/nautobot/issues/4154">#4154</a> - Added useEffect to fix the <code>last_page</code> in Pagination from not updating dynamically.</li>
|
|
8071
8202
|
<li><a href="https://github.com/nautobot/nautobot/issues/4241">#4241</a> - Added a timeout and exception handling to the <code>nautobot-server send_installation_metrics</code> command.</li>
|
|
8072
8203
|
</ul>
|
|
8073
|
-
<h3 id="
|
|
8204
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
8074
8205
|
<ul>
|
|
8075
8206
|
<li><a href="https://github.com/nautobot/nautobot/issues/4125">#4125</a> - Added support for Python 3.11.</li>
|
|
8076
8207
|
<li><a href="https://github.com/nautobot/nautobot/issues/4125">#4125</a> - Updated <code>django-auth-ldap</code> optional dependency to <code>~4.3.0</code>.</li>
|
|
@@ -8100,7 +8231,7 @@
|
|
|
8100
8231
|
<li><a href="https://github.com/nautobot/nautobot/issues/4143">#4143</a> - Updated <code>packaging</code> dependency to <code>~23.1</code>.</li>
|
|
8101
8232
|
<li><a href="https://github.com/nautobot/nautobot/issues/4143">#4143</a> - Updated <code>psycopg2-binary</code> dependency to <code>~2.9.6</code>.</li>
|
|
8102
8233
|
</ul>
|
|
8103
|
-
<h3 id="
|
|
8234
|
+
<h3 id="documentation_8">Documentation<a class="headerlink" href="#documentation_8" title="Permanent link">¶</a></h3>
|
|
8104
8235
|
<ul>
|
|
8105
8236
|
<li><a href="https://github.com/nautobot/nautobot/issues/3330">#3330</a> - Added UI configuration documentation.</li>
|
|
8106
8237
|
<li><a href="https://github.com/nautobot/nautobot/issues/3386">#3386</a> - Added documentation linking to best practices for database backup.</li>
|
|
@@ -8112,7 +8243,7 @@
|
|
|
8112
8243
|
<li><a href="https://github.com/nautobot/nautobot/issues/4061">#4061</a> - Fixed a few broken links in the documentation.</li>
|
|
8113
8244
|
<li><a href="https://github.com/nautobot/nautobot/issues/4091">#4091</a> - Added information about installing and running Node.js as a part of the Nautobot installation documentation.</li>
|
|
8114
8245
|
</ul>
|
|
8115
|
-
<h3 id="
|
|
8246
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
8116
8247
|
<ul>
|
|
8117
8248
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow to publish 'final-dev', and build only <code>final</code> images.</li>
|
|
8118
8249
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
@@ -8127,7 +8258,7 @@
|
|
|
8127
8258
|
<li><a href="https://github.com/nautobot/nautobot/issues/4285">#4285</a> - Fixed <code>next</code> container build workflow.</li>
|
|
8128
8259
|
</ul>
|
|
8129
8260
|
<h2 id="v200-beta2-2023-07-07">v2.0.0-beta.2 (2023-07-07)<a class="headerlink" href="#v200-beta2-2023-07-07" title="Permanent link">¶</a></h2>
|
|
8130
|
-
<h3 id="
|
|
8261
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
8131
8262
|
<ul>
|
|
8132
8263
|
<li><a href="https://github.com/nautobot/nautobot/issues/3287">#3287</a> - Added <code>nautobot-server audit_dynamic_groups</code> management command for evaluating breaking filter changes to existing DynamicGroup instances.</li>
|
|
8133
8264
|
<li><a href="https://github.com/nautobot/nautobot/issues/3526">#3526</a> - Added detail view UI layout config.</li>
|
|
@@ -8145,7 +8276,7 @@
|
|
|
8145
8276
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Added <code>parent</code> filter for <code>Prefix</code> objects.</li>
|
|
8146
8277
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Added warning messages when creating or editing a <code>Prefix</code> or <code>IPAddress</code> that does not follow prefix <code>type</code> guidance.</li>
|
|
8147
8278
|
</ul>
|
|
8148
|
-
<h3 id="
|
|
8279
|
+
<h3 id="changed_10">Changed<a class="headerlink" href="#changed_10" title="Permanent link">¶</a></h3>
|
|
8149
8280
|
<ul>
|
|
8150
8281
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Changed many FilterSet filters to filter on (name or ID) instead of (slug or ID) since the relevant model <code>slug</code> fields have been removed.</li>
|
|
8151
8282
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Changed FilterSet filters referring to <code>DeviceType</code> objects to filter on (model or ID) instead of (slug or ID).</li>
|
|
@@ -8192,7 +8323,7 @@
|
|
|
8192
8323
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Changed <code>Prefix.type</code> validation with respect to parents and children from strictly-enforced to advisory-only for 2.0.</li>
|
|
8193
8324
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Changed <code>parent</code> filter on <code>IPAddress</code> to be exact-match by PK; the previously present filter is renamed to <code>prefix</code>.</li>
|
|
8194
8325
|
</ul>
|
|
8195
|
-
<h3 id="
|
|
8326
|
+
<h3 id="removed_6">Removed<a class="headerlink" href="#removed_6" title="Permanent link">¶</a></h3>
|
|
8196
8327
|
<ul>
|
|
8197
8328
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Removed <code>DeviceType.slug</code> field.</li>
|
|
8198
8329
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Removed <code>Location.slug</code> field.</li>
|
|
@@ -8214,7 +8345,7 @@
|
|
|
8214
8345
|
<li><a href="https://github.com/nautobot/nautobot/issues/3941">#3941</a> - Removed <code>namespace, name</code> uniqueness constraint on <code>VRF</code>.</li>
|
|
8215
8346
|
<li><a href="https://github.com/nautobot/nautobot/issues/3941">#3941</a> - Removed some overly verbose messaging in IPAM migration utilities.</li>
|
|
8216
8347
|
</ul>
|
|
8217
|
-
<h3 id="
|
|
8348
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
8218
8349
|
<ul>
|
|
8219
8350
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Corrected leftover "natural key slug" reference in <code>object_bulk_create.html</code>.</li>
|
|
8220
8351
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Fixed leftover reference to <code>GraphQLQuery.slug</code> in <code>CustomGraphQLView</code>.</li>
|
|
@@ -8246,18 +8377,18 @@
|
|
|
8246
8377
|
<li><a href="https://github.com/nautobot/nautobot/issues/4005">#4005</a> - Added logic to catch and report errors when registering a Job to the database.</li>
|
|
8247
8378
|
<li><a href="https://github.com/nautobot/nautobot/issues/4005">#4005</a> - Added logic to Job class <code>@classproperty</code> methods to enforce correct data types.</li>
|
|
8248
8379
|
</ul>
|
|
8249
|
-
<h3 id="
|
|
8380
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
8250
8381
|
<ul>
|
|
8251
8382
|
<li><a href="https://github.com/nautobot/nautobot/issues/3883">#3883</a> - Updated nautobot-ui package in next.</li>
|
|
8252
8383
|
</ul>
|
|
8253
|
-
<h3 id="
|
|
8384
|
+
<h3 id="documentation_9">Documentation<a class="headerlink" href="#documentation_9" title="Permanent link">¶</a></h3>
|
|
8254
8385
|
<ul>
|
|
8255
8386
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Revised development best-practices documentation around the inclusion of <code>slug</code> fields in models.</li>
|
|
8256
8387
|
<li><a href="https://github.com/nautobot/nautobot/issues/3847">#3847</a> - Corrected out-of-date information about <code>class_path</code> in the Jobs documentation.</li>
|
|
8257
8388
|
<li><a href="https://github.com/nautobot/nautobot/issues/3940">#3940</a> - Added Jobs migration docs.</li>
|
|
8258
8389
|
<li><a href="https://github.com/nautobot/nautobot/issues/4005">#4005</a> - Fixed incorrect documentation about how to register Jobs from an app.</li>
|
|
8259
8390
|
</ul>
|
|
8260
|
-
<h3 id="
|
|
8391
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
8261
8392
|
<ul>
|
|
8262
8393
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Corrected incorrect logic in generic view test <code>test_list_objects_filtered</code> and <code>test_list_objects_unknown_filter_strict_filtering</code>.</li>
|
|
8263
8394
|
<li><a href="https://github.com/nautobot/nautobot/issues/3424">#3424</a> - Unskipped <code>nautobot.ipam.tests.test_forms.IPAddressFormTest</code></li>
|
|
@@ -8271,7 +8402,7 @@
|
|
|
8271
8402
|
<li><a href="https://github.com/nautobot/nautobot/issues/4078">#4078</a> - Fixed prerelease workflow referenced <code>ci_integration.yml</code> file.</li>
|
|
8272
8403
|
</ul>
|
|
8273
8404
|
<h2 id="v200-beta1-2023-06-06">v2.0.0-beta.1 (2023-06-06)<a class="headerlink" href="#v200-beta1-2023-06-06" title="Permanent link">¶</a></h2>
|
|
8274
|
-
<h3 id="
|
|
8405
|
+
<h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">¶</a></h3>
|
|
8275
8406
|
<ul>
|
|
8276
8407
|
<li><a href="https://github.com/nautobot/nautobot/issues/851">#851</a> - Added list view with CSV import/export buttons for <code>CircuitTermination</code> objects.</li>
|
|
8277
8408
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Added <code>created</code> and <code>last_updated</code> fields on the <code>VMInterface</code> model. When migrating to this release, these fields will default to <code>None</code> for any pre-existing instances of this model.</li>
|
|
@@ -8306,7 +8437,7 @@
|
|
|
8306
8437
|
<li><a href="https://github.com/nautobot/nautobot/issues/3804">#3804</a> - Added feature to redirect all add and edit views to legacy UI.</li>
|
|
8307
8438
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Added <code>bool</code> return value for <code>Nautobot.extras.datasources.git.ensure_git_repository()</code> to indicate whether the filesystem was changed.</li>
|
|
8308
8439
|
</ul>
|
|
8309
|
-
<h3 id="
|
|
8440
|
+
<h3 id="changed_11">Changed<a class="headerlink" href="#changed_11" title="Permanent link">¶</a></h3>
|
|
8310
8441
|
<ul>
|
|
8311
8442
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - The base class for all <code>tags</code> fields on <code>PrimaryModel</code> subclasses is now <code>nautobot.core.models.fields.TagsField</code> rather than <code>taggit.managers.TaggableManager</code>. Any apps using <code>PrimaryModel</code> as a base class will likely need to generate and run a schema migration to reflect this change.</li>
|
|
8312
8443
|
<li><a href="https://github.com/nautobot/nautobot/issues/2331">#2331</a> - Changed <code>JobLogEntry.log_level</code> choices from <code>default</code>, <code>info</code>, <code>success</code>, <code>warning</code>, <code>failure</code> to Python default logging levels <code>debug</code>, <code>info</code>, <code>warning</code>, <code>error</code> and <code>critical</code>.</li>
|
|
@@ -8351,7 +8482,7 @@
|
|
|
8351
8482
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Changed <code>Job.runnable</code> property to not consider whether the <code>job_class</code> is set, as a performance optimization.</li>
|
|
8352
8483
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Changed client-side slug construction (legacy UI) to use underscores rather than dashes.</li>
|
|
8353
8484
|
</ul>
|
|
8354
|
-
<h3 id="
|
|
8485
|
+
<h3 id="removed_7">Removed<a class="headerlink" href="#removed_7" title="Permanent link">¶</a></h3>
|
|
8355
8486
|
<ul>
|
|
8356
8487
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Removed <code>nautobot.extras.utils.is_taggable</code>; use <code>nautobot.core.models.utils.is_taggable</code> instead.</li>
|
|
8357
8488
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Removed backward-compatibility with <code>taggit</code> 1.x Python API; instead of <code>object.tags.set(tag1, tag2, tag3)</code> you must now do <code>object.tags.set([tag1, tag2, tag3])</code>.</li>
|
|
@@ -8377,7 +8508,7 @@
|
|
|
8377
8508
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Removed <code>source</code> and <code>slug</code> filters for Jobs.</li>
|
|
8378
8509
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Removed <code>get_jobs()</code>, <code>get_job_classpaths()</code>, <code>jobs_in_directory()</code> functions.</li>
|
|
8379
8510
|
</ul>
|
|
8380
|
-
<h3 id="
|
|
8511
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
8381
8512
|
<ul>
|
|
8382
8513
|
<li><a href="https://github.com/nautobot/nautobot/issues/3437">#3437</a> - Fixed the possibility of inadvertently applying the same <code>Tag</code> to the same object multiple times by adding appropriate uniqueness constraints on the <code>TaggedItem</code> through table.</li>
|
|
8383
8514
|
<li><a href="https://github.com/nautobot/nautobot/issues/3518">#3518</a> - Fixed an error seen when running the <code>extras.0061_collect_roles_from_related_apps_roles</code> migration.</li>
|
|
@@ -8408,16 +8539,16 @@
|
|
|
8408
8539
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Removed leftover/non-functional <code>Source</code> tab from <code>job_approval_request.html</code>.</li>
|
|
8409
8540
|
<li><a href="https://github.com/nautobot/nautobot/issues/3864">#3864</a> - Fixed cases where Device.role was null, incongruent with the enforcement in the API and UI.</li>
|
|
8410
8541
|
</ul>
|
|
8411
|
-
<h3 id="
|
|
8542
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
8412
8543
|
<ul>
|
|
8413
8544
|
<li><a href="https://github.com/nautobot/nautobot/issues/1721">#1721</a> - Removed dependency on <code>django-cacheops</code>.</li>
|
|
8414
8545
|
<li><a href="https://github.com/nautobot/nautobot/issues/3672">#3672</a> - Changed <code>napalm</code> dependency to 4.x release in order to allow Netmiko 4.x to install. Dependency resolution resulted in removing the following packages: <code>ciscoconfparse</code>, <code>deprecat</code>, <code>dnspython</code>, <code>loguru</code>, <code>toml</code>, <code>win32-setctime</code>.</li>
|
|
8415
8546
|
</ul>
|
|
8416
|
-
<h3 id="
|
|
8547
|
+
<h3 id="documentation_10">Documentation<a class="headerlink" href="#documentation_10" title="Permanent link">¶</a></h3>
|
|
8417
8548
|
<ul>
|
|
8418
8549
|
<li><a href="https://github.com/nautobot/nautobot/issues/3591">#3591</a> - Fixed a few errors in the v2.0 migration documentation.</li>
|
|
8419
8550
|
</ul>
|
|
8420
|
-
<h3 id="
|
|
8551
|
+
<h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">¶</a></h3>
|
|
8421
8552
|
<ul>
|
|
8422
8553
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Removed monkey-patching of <code>taggit.managers.TaggableManager</code>.</li>
|
|
8423
8554
|
<li><a href="https://github.com/nautobot/nautobot/issues/3378">#3378</a> - Re-enabled skipped tests.</li>
|
|
@@ -8430,11 +8561,11 @@
|
|
|
8430
8561
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Moved test Jobs from <code>nautobot/extras/tests/example_jobs/test_*.py</code> to <code>nautobot/extras/test_jobs/*.py</code> to avoid unnecessary loading by the <code>unittest</code> runner.</li>
|
|
8431
8562
|
</ul>
|
|
8432
8563
|
<h2 id="v200-alpha3-2023-04-13">v2.0.0-alpha.3 (2023-04-13)<a class="headerlink" href="#v200-alpha3-2023-04-13" title="Permanent link">¶</a></h2>
|
|
8433
|
-
<h3 id="
|
|
8564
|
+
<h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">¶</a></h3>
|
|
8434
8565
|
<ul>
|
|
8435
8566
|
<li><a href="https://github.com/nautobot/nautobot/issues/3337">#3337</a> - Add <code>Namespace</code> model to IPAM.</li>
|
|
8436
8567
|
</ul>
|
|
8437
|
-
<h3 id="
|
|
8568
|
+
<h3 id="changed_12">Changed<a class="headerlink" href="#changed_12" title="Permanent link">¶</a></h3>
|
|
8438
8569
|
<ul>
|
|
8439
8570
|
<li><a href="https://github.com/nautobot/nautobot/issues/2915">#2915</a> - Implemented a concrete <code>parent</code> relationship from <code>Prefix</code> to itself.</li>
|
|
8440
8571
|
<li><a href="https://github.com/nautobot/nautobot/issues/3337">#3337</a> - Changed Prefix and other model uniqueness to center around Namespace model.</li>
|
|
@@ -8442,12 +8573,12 @@
|
|
|
8442
8573
|
<li><a href="https://github.com/nautobot/nautobot/issues/3439">#3439</a> - Changed the GraphQL <code>execute_saved_query</code> function's argument from <code>saved_query_slug</code> to <code>saved_query_name</code>.</li>
|
|
8443
8574
|
<li><a href="https://github.com/nautobot/nautobot/issues/3523">#3523</a> - Renamed <code>nat_outside</code> field on IPAddress serializer to <code>nat_outside_list</code> for self-consistency.</li>
|
|
8444
8575
|
</ul>
|
|
8445
|
-
<h3 id="
|
|
8576
|
+
<h3 id="removed_8">Removed<a class="headerlink" href="#removed_8" title="Permanent link">¶</a></h3>
|
|
8446
8577
|
<ul>
|
|
8447
8578
|
<li><a href="https://github.com/nautobot/nautobot/issues/3439">#3439</a> - Removed <code>slug</code> field from many database models.</li>
|
|
8448
8579
|
<li><a href="https://github.com/nautobot/nautobot/issues/3523">#3523</a> - Removed <code>nat_outside</code> getter-setter in IPAddress model.</li>
|
|
8449
8580
|
</ul>
|
|
8450
|
-
<h3 id="
|
|
8581
|
+
<h3 id="dependencies_6">Dependencies<a class="headerlink" href="#dependencies_6" title="Permanent link">¶</a></h3>
|
|
8451
8582
|
<ul>
|
|
8452
8583
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Dropped support for Python 3.7. Python 3.8 is now the minimum version required by Nautobot.</li>
|
|
8453
8584
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Updated <code>django-auth-ldap</code> dependency to <code>~4.2.0</code>.</li>
|
|
@@ -8463,12 +8594,12 @@
|
|
|
8463
8594
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.2.0</code>.</li>
|
|
8464
8595
|
<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>
|
|
8465
8596
|
</ul>
|
|
8466
|
-
<h3 id="
|
|
8597
|
+
<h3 id="housekeeping_11">Housekeeping<a class="headerlink" href="#housekeeping_11" title="Permanent link">¶</a></h3>
|
|
8467
8598
|
<ul>
|
|
8468
8599
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Updated various development-only dependencies to the latest available versions.</li>
|
|
8469
8600
|
</ul>
|
|
8470
8601
|
<h2 id="v200-alpha2-2023-03-29">v2.0.0-alpha.2 (2023-03-29)<a class="headerlink" href="#v200-alpha2-2023-03-29" title="Permanent link">¶</a></h2>
|
|
8471
|
-
<h3 id="
|
|
8602
|
+
<h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">¶</a></h3>
|
|
8472
8603
|
<ul>
|
|
8473
8604
|
<li><a href="https://github.com/nautobot/nautobot/issues/2900">#2900</a> - Added natural-key support to most Nautobot models, inspired by the <code>django-natural-keys</code> library.</li>
|
|
8474
8605
|
<li><a href="https://github.com/nautobot/nautobot/issues/2957">#2957</a> - Added Location constraints for objects (CircuitTermination, Device, PowerPanel, PowerFeed, RackGroup, Rack, Prefix, VLAN, VLANGroup, Cluster).</li>
|
|
@@ -8484,7 +8615,7 @@
|
|
|
8484
8615
|
<li><a href="https://github.com/nautobot/nautobot/issues/3403">#3403</a> - Added support for Nautobot Apps to provide Django Constance Fields for the settings.</li>
|
|
8485
8616
|
<li><a href="https://github.com/nautobot/nautobot/issues/3418">#3418</a> - Added ObjectPermission Data Migration from Region/Site to Location.</li>
|
|
8486
8617
|
</ul>
|
|
8487
|
-
<h3 id="
|
|
8618
|
+
<h3 id="changed_13">Changed<a class="headerlink" href="#changed_13" title="Permanent link">¶</a></h3>
|
|
8488
8619
|
<ul>
|
|
8489
8620
|
<li><a href="https://github.com/nautobot/nautobot/issues/824">#824</a> - Renamed <code>slug</code> field to <code>key</code> on CustomField model class.</li>
|
|
8490
8621
|
<li><a href="https://github.com/nautobot/nautobot/issues/824">#824</a> - Changed validation of CustomField <code>key</code> to enforce that it is valid as a GraphQL identifier.</li>
|
|
@@ -8528,7 +8659,7 @@
|
|
|
8528
8659
|
<li><a href="https://github.com/nautobot/nautobot/issues/3351">#3351</a> - Changed extras abstract model ForeignKeys to use ForeignKeyWithAutoRelatedName.</li>
|
|
8529
8660
|
<li><a href="https://github.com/nautobot/nautobot/issues/3354">#3354</a> - Synced in fixes from 1.5.x LTM branch up through v1.5.11.</li>
|
|
8530
8661
|
</ul>
|
|
8531
|
-
<h3 id="
|
|
8662
|
+
<h3 id="removed_9">Removed<a class="headerlink" href="#removed_9" title="Permanent link">¶</a></h3>
|
|
8532
8663
|
<ul>
|
|
8533
8664
|
<li><a href="https://github.com/nautobot/nautobot/issues/824">#824</a> - Removed <code>name</code> field from CustomField model class.</li>
|
|
8534
8665
|
<li><a href="https://github.com/nautobot/nautobot/issues/1634">#1634</a> - Removed unnecessary legacy <code>manage.py</code> file from Nautobot repository.</li>
|
|
@@ -8543,7 +8674,7 @@
|
|
|
8543
8674
|
<li><a href="https://github.com/nautobot/nautobot/issues/3224">#3224</a> - Removed support for Nautobot "1.x" REST API versions. The minimum supported REST API version is now "2.0".</li>
|
|
8544
8675
|
<li><a href="https://github.com/nautobot/nautobot/issues/3302">#3302</a> - Removed <code>Aggregate</code> and migrated all existing instances to <code>Prefix</code>.</li>
|
|
8545
8676
|
</ul>
|
|
8546
|
-
<h3 id="
|
|
8677
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
8547
8678
|
<ul>
|
|
8548
8679
|
<li><a href="https://github.com/nautobot/nautobot/issues/633">#633</a> - Fixed job result not updating when job hard time limit is reached.</li>
|
|
8549
8680
|
<li><a href="https://github.com/nautobot/nautobot/issues/1362">#1362</a> - Fixed migrations for <code>Prefix.type</code>.</li>
|
|
@@ -8558,18 +8689,18 @@
|
|
|
8558
8689
|
<li><a href="https://github.com/nautobot/nautobot/issues/3342">#3342</a> - Fixed BaseFilterSet not using multiple choice filters for CharFields with choices.</li>
|
|
8559
8690
|
<li><a href="https://github.com/nautobot/nautobot/issues/3457">#3457</a> - Fixed bug preventing scheduled job from running.</li>
|
|
8560
8691
|
</ul>
|
|
8561
|
-
<h3 id="
|
|
8692
|
+
<h3 id="dependencies_7">Dependencies<a class="headerlink" href="#dependencies_7" title="Permanent link">¶</a></h3>
|
|
8562
8693
|
<ul>
|
|
8563
8694
|
<li><a href="https://github.com/nautobot/nautobot/issues/2521">#2521</a> - Removed dependency on <code>django-cryptography</code>.</li>
|
|
8564
8695
|
<li><a href="https://github.com/nautobot/nautobot/issues/2524">#2524</a> - Removed no-longer-used <code>drf-yasg</code> dependency.</li>
|
|
8565
8696
|
</ul>
|
|
8566
|
-
<h3 id="
|
|
8697
|
+
<h3 id="housekeeping_12">Housekeeping<a class="headerlink" href="#housekeeping_12" title="Permanent link">¶</a></h3>
|
|
8567
8698
|
<ul>
|
|
8568
8699
|
<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>
|
|
8569
8700
|
<li><a href="https://github.com/nautobot/nautobot/issues/3233">#3233</a> - Removed <code>CeleryTestCase</code> and associated calling code as it is no longer needed.</li>
|
|
8570
8701
|
</ul>
|
|
8571
8702
|
<h2 id="v200-alpha1-2023-01-31">v2.0.0-alpha.1 (2023-01-31)<a class="headerlink" href="#v200-alpha1-2023-01-31" title="Permanent link">¶</a></h2>
|
|
8572
|
-
<h3 id="
|
|
8703
|
+
<h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">¶</a></h3>
|
|
8573
8704
|
<ul>
|
|
8574
8705
|
<li><a href="https://github.com/nautobot/nautobot/issues/1731">#1731</a> - Added missing filters to <code>circuits</code> app.</li>
|
|
8575
8706
|
<li><a href="https://github.com/nautobot/nautobot/issues/1733">#1733</a> - Added support for filtering on many more fields to the <code>Tenant</code> and <code>TenantGroup</code> filtersets.</li>
|
|
@@ -8577,7 +8708,7 @@
|
|
|
8577
8708
|
<li><a href="https://github.com/nautobot/nautobot/issues/2955">#2955</a> - Added "Region" and "Site" <code>LocationTypes</code> and their respective locations based on existing <code>Site</code> and <code>Region</code> instances.</li>
|
|
8578
8709
|
<li><a href="https://github.com/nautobot/nautobot/issues/3132">#3132</a> - Added the ability for apps to register their models for inclusion in the global Nautobot search.</li>
|
|
8579
8710
|
</ul>
|
|
8580
|
-
<h3 id="
|
|
8711
|
+
<h3 id="changed_14">Changed<a class="headerlink" href="#changed_14" title="Permanent link">¶</a></h3>
|
|
8581
8712
|
<ul>
|
|
8582
8713
|
<li><a href="https://github.com/nautobot/nautobot/issues/510">#510</a> - The <code>Region</code>, <code>RackGroup</code>, <code>TenantGroup</code>, and <code>InventoryItem</code> models are now based on <code>django-tree-queries</code> instead of <code>django-mptt</code>. This does change the API for certain tree operations on these models, for example <code>get_ancestors()</code> is now <code>ancestors()</code> and <code>get_descendants()</code> is now <code>descendants()</code>.</li>
|
|
8583
8714
|
<li><a href="https://github.com/nautobot/nautobot/issues/510">#510</a> - The UI and REST API for <code>Region</code>, <code>RackGroup</code>, and <code>TenantGroup</code> now provide only the related count of objects (e.g. <code>site_count</code> for <code>Region</code>) that are directly related to each instance. Formerly they provided a cumulative total including objects related to its descendants as well.</li>
|
|
@@ -8597,7 +8728,7 @@
|
|
|
8597
8728
|
<li><a href="https://github.com/nautobot/nautobot/issues/3068">#3068</a> - Renamed <code>group</code> field to <code>tenant_group</code> on <code>Tenant</code> model.</li>
|
|
8598
8729
|
<li><a href="https://github.com/nautobot/nautobot/issues/3069">#3069</a> - Renamed foreign key fields and related names in Virtualization and DCIM apps to follow a common naming convention. See v2 upgrade guide for full list of changes.</li>
|
|
8599
8730
|
</ul>
|
|
8600
|
-
<h3 id="
|
|
8731
|
+
<h3 id="removed_10">Removed<a class="headerlink" href="#removed_10" title="Permanent link">¶</a></h3>
|
|
8601
8732
|
<ul>
|
|
8602
8733
|
<li><a href="https://github.com/nautobot/nautobot/issues/510">#510</a> - Removed dependency on <code>django-mptt</code>. Models (<code>Region</code>, <code>RackGroup</code>, <code>TenantGroup</code>, <code>InventoryItem</code>) that previously were based on MPTT are now implemented using <code>django-tree-queries</code> instead.</li>
|
|
8603
8734
|
<li><a href="https://github.com/nautobot/nautobot/issues/1731">#1731</a> - Removed redundant filters from <code>circuits</code> app.</li>
|
|
@@ -8609,14 +8740,14 @@
|
|
|
8609
8740
|
<li><a href="https://github.com/nautobot/nautobot/issues/2993">#2993</a> - Removed optional settings documentation for <code>CELERY_RESULT_BACKEND_TRANSPORT_OPTIONS</code> as it is no longer user-serviceable.</li>
|
|
8610
8741
|
<li><a href="https://github.com/nautobot/nautobot/issues/3130">#3130</a> - Removed <code>CSS_CLASSES</code> definitions from legacy <code>ChoiceSets</code>.</li>
|
|
8611
8742
|
</ul>
|
|
8612
|
-
<h3 id="
|
|
8743
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
8613
8744
|
<ul>
|
|
8614
8745
|
<li><a href="https://github.com/nautobot/nautobot/issues/1982">#1982</a> - Fixed a UI presentation/validation issue with dynamic-groups using foreign-key filters that aren't explicitly defined in the corresponding FilterForm.</li>
|
|
8615
8746
|
<li><a href="https://github.com/nautobot/nautobot/issues/2808">#2808</a> - Fixed incorrectly named filters in <code>circuits</code> app.</li>
|
|
8616
8747
|
<li><a href="https://github.com/nautobot/nautobot/issues/3126">#3126</a> - Fixed <code>Interface</code> not raising exception when adding a <code>VLAN</code> from a different <code>Site</code> in <code>tagged_vlans</code>.</li>
|
|
8617
8748
|
<li><a href="https://github.com/nautobot/nautobot/issues/3167">#3167</a> - Fixed <code>ObjectChange</code> records not being migrated and <code>legacy_role__name</code> not being a property in <code>Role</code> migrations.</li>
|
|
8618
8749
|
</ul>
|
|
8619
|
-
<h3 id="
|
|
8750
|
+
<h3 id="dependencies_8">Dependencies<a class="headerlink" href="#dependencies_8" title="Permanent link">¶</a></h3>
|
|
8620
8751
|
<ul>
|
|
8621
8752
|
<li><a href="https://github.com/nautobot/nautobot/issues/2771">#2771</a> - Updated <code>jsonschema</code> version to <code>~4.17.0</code>.</li>
|
|
8622
8753
|
<li><a href="https://github.com/nautobot/nautobot/issues/2883">#2883</a> - Updated <code>django-taggit</code> to <code>3.1.0</code>.</li>
|
|
@@ -8624,11 +8755,11 @@
|
|
|
8624
8755
|
<li><a href="https://github.com/nautobot/nautobot/issues/2943">#2943</a> - Updated dependency <code>rich</code> to <code>~12.6.0</code>.</li>
|
|
8625
8756
|
<li><a href="https://github.com/nautobot/nautobot/issues/3027">#3027</a> - Updated dependencies <code>prometheus-client</code>, <code>django-storages</code>, <code>drf-spectacular</code>, <code>black</code>, <code>django-debug-toolbar</code>, <code>mkdocstrings</code>, <code>mkdocstrings-python</code>, <code>pylint</code>, <code>requests</code>, <code>selenium</code>, <code>watchdog</code>.</li>
|
|
8626
8757
|
</ul>
|
|
8627
|
-
<h3 id="
|
|
8758
|
+
<h3 id="documentation_11">Documentation<a class="headerlink" href="#documentation_11" title="Permanent link">¶</a></h3>
|
|
8628
8759
|
<ul>
|
|
8629
8760
|
<li><a href="https://github.com/nautobot/nautobot/issues/204">#204</a> - Added style guide documentation for importing python modules in Nautobot.</li>
|
|
8630
8761
|
</ul>
|
|
8631
|
-
<h3 id="
|
|
8762
|
+
<h3 id="housekeeping_13">Housekeeping<a class="headerlink" href="#housekeeping_13" title="Permanent link">¶</a></h3>
|
|
8632
8763
|
<ul>
|
|
8633
8764
|
<li><a href="https://github.com/nautobot/nautobot/issues/204">#204</a> - Changed imports to use module namespaces in <code>utilities/filters.py</code>.</li>
|
|
8634
8765
|
<li><a href="https://github.com/nautobot/nautobot/issues/2674">#2674</a> - Updated development dependency <code>black</code> to <code>~22.10.0</code>.</li>
|