Merge pull request #110 from diaspora/cmrd-senya-patch-1

Entities JSON schema: width & height are optional
This commit is contained in:
Benjamin Neff 2019-04-28 12:17:14 +02:00
commit 48bb0a094e
No known key found for this signature in database
GPG key ID: 971464C3F1A90194
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
# 0.2.6
## Bug fixes
* Make `width` and `height` optional for photos in the JSON schema [#110](https://github.com/diaspora/diaspora_federation/pull/110)
# 0.2.5
## Features

View file

@ -288,7 +288,7 @@
"height": {"type": "number"}
},
"required": [
"author", "guid", "public", "created_at", "remote_photo_path", "remote_photo_name", "width", "height"
"author", "guid", "public", "created_at", "remote_photo_path", "remote_photo_name"
]
}
}

View file

@ -288,7 +288,7 @@
"height": {"type": "number"}
},
"required": [
"author", "guid", "public", "created_at", "remote_photo_path", "remote_photo_name", "width", "height"
"author", "guid", "public", "created_at", "remote_photo_path", "remote_photo_name"
]
}
}