======================== 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. .. _`new features`: `What's new in tsr 0.3.11`_ What's new in tsr 0.3.11 ======================== API --- * Added app team owner - `#619 `_ * Expose public url in `create-app` - `#724 `_ 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. .. highlight:: javascript :: db.apps.find({ teamowner: { $exists: false }}).forEach( function(app) { app.teamowner = app.teams[0]; db.apps.save(app); } );