Merge pull request #1120 from coreos-inc/migfix
Bug fix for migration and cut new version
This commit is contained in:
commit
c34399a217
2 changed files with 15 additions and 1 deletions
14
CHANGELOG.md
14
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)
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
Reference in a new issue