Changes to v3 API slug serialization

Change effective on 17 January 2014

Previously, the blob property on slug objects in v3 of the Platform API was serialized in the following way:

"blob": {
    "get": "https://api.heroku.com/slugs/1234.tgz"
},

The blob serialization is changing to an interim format:

"blob": {
  "get": "https://api.heroku.com/slugs/1234.tgz",
  "method": "get",
  "url": "https://api.heroku.com/slugs/1234.tgz"
}

The "get": "https://api.heroku.com/slugs/1234.tgz" property will be retired in 4 weeks (new changelog item will be posted), and the final format will be:

"blob": {
  "method": "get",
  "url": "https://api.heroku.com/slugs/1234.tgz"
}

Read more about the Heroku Platform API on Dev Center.