diff --git a/CHANGELOG.md b/CHANGELOG.md index a187f1736..511f37b72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +### v1.14.1 + +- Fixed migration of V1 metadata (#1120) +- Added list view of repositories in all displays (#1109) +- Removed image diff feature (#1102, #1116) +- Fixed log bug around month handling (#1114) +- Added better recovery of organizations (#1108) +- Fixed Content-Type on errors with JSON bodies (#1107) +- Added QE version in footer +- Fixed unhandled exceptions in Queue +- Improved database query performance (#1068, #1097) +- Fixed UI for dismissing notifications (#1094) +- Added namespaces in `docker search` results (#1086) + ### v1.14.0 - Added Docker Registry v2 support (#885) diff --git a/util/migrate/backfill_v1_metadata.py b/util/migrate/backfill_v1_metadata.py index e9de7e9a2..20680f077 100644 --- a/util/migrate/backfill_v1_metadata.py +++ b/util/migrate/backfill_v1_metadata.py @@ -56,7 +56,7 @@ class ImageStoragePlacement(BaseModel): def image_json_path(storage_uuid): - base_path = storage.image_path(storage_uuid) + base_path = storage._image_path(storage_uuid) return '{0}json'.format(base_path)