diff --git a/Changelog.md b/Changelog.md index 115a6ddb..150c7365 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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 diff --git a/docs/schemas/federation_entities.json b/docs/schemas/federation_entities.json index ec31baf7..f951c9b7 100644 --- a/docs/schemas/federation_entities.json +++ b/docs/schemas/federation_entities.json @@ -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" ] } } diff --git a/lib/diaspora_federation/schemas/federation_entities.json b/lib/diaspora_federation/schemas/federation_entities.json index ec31baf7..f951c9b7 100644 --- a/lib/diaspora_federation/schemas/federation_entities.json +++ b/lib/diaspora_federation/schemas/federation_entities.json @@ -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" ] } }