Has Model fetch behaviour, specifically setting the model id, changed between 1.1.0 and 1.1.2?
I've checked the changelog and can't find anything relevant.
The following no longer works:
var Wibble = Backbone.Model.extend({
urlRoot: 'rest/wibble',
idAttribute: 'wibbleId'
});
var model = new Wibble();
model.id = 1;
model.fetch()
It requests /rest/wibble rather than /rest/wibble/1 as it used to.
Examples: I've used url() rather than fetch() to demonstrate