----------------
**FIXED ISSUES**
- https://github.com/ramonski/plone.jsonapi.routes/issues/5: Dexterity support
- https://github.com/ramonski/plone.jsonapi.routes/issues/4: Update on UID Urls not working
- https://github.com/ramonski/plone.jsonapi.routes/issues/1: Started with some basic browsertests
**API CHANGES**
- API root url provided.
- Image and file fields are now rendered as a nested structure, e.g::
{
data: b64,
size: 42,
content_type: "image/png"
}
- Workflow info is provided where possible, e.g::
{
status: "Private",
review_state: "private",
transitions: [
{
url: ".../content_status_modify?workflow_action=submit",
display: "Puts your item in a review queue, so it can be published on the site.",
value: "submit"
},
],
workflow: "simple_publication_workflow"
}