tsr 0.3.11 release notes
Welcome to tsr 0.3.11!
These release notes cover the new features: and backwards incompatible changes you’ll want to be aware of when upgrading from tsr 0.3.10 or older versions.
What’s new in tsr 0.3.11
API
Docker provisioner
Add support to custom memory - #434
Backwards incompatible changes
All existing apps have no team owner. You can run the mongodb script below to automatically set the first existing team in the app as team owner.
db.apps.find({ teamowner: { $exists: false }}).forEach(
function(app) {
app.teamowner = app.teams[0];
db.apps.save(app);
}
);