We don't generally track changes in application here, but you could have a look at:
Versions at package.json
describe API version.
See API docs
Remove tags endpoints as un-used:
- GET
/api/tags
- GET
/api/tags/:tagSlug
Joining or leaving a tribe -API changed, new ones:
- DELETE
/api/users/memberships/:tribeId
- leave - POST
/api/users/memberships/:tribeId
- join
- Add endpoints for tags and tribes:
- GET
/api/tribes
- GET
/api/tags
- GET
/api/tags/:tagSlug
- GET
/api/tribes/:tribeSlug
- POST/PUT/DELETE
/api/users/tags
- GET
/api/users/:username
now returns array tags and tribes bymember
object and array of id's bymemberIds
key. - GET
/api/users/:username
doesn't returnpublic
key anymore for other than authenticated user's profile.
- GET
- Add endpoints for message thread references:
- GET
/api/references/threads/:userToId
- POST
/api/references/threads
- GET