Releases: stevenschobert/pimm
Releases · stevenschobert/pimm
v1.0.1
v1.0.0
This release overhauls how requests/responses are handled from a controller-level. Previously, a controller would use this
to return text/json/ect. Now controllers will be interfacing primarily through a new connection
parameter they get passed.
class PostsController {
index(conn) {
return conn.json({ message: "hello world!" });
}
}
This change was primarily driven by a big upgrade to the underlying library (mach) that power most of Pimm.
The connection handling is the only breaking change in this release. Some other fun features include bug fixes to enable ES6 class support in controllers.
v0.5.0-beta1
- Initial work for upgrading mach (pimm's underlying http library) from v0.12 to v1.3
v0.4.1
- dependency upgrades
v0.4.0
v0.3.0
- New — You can now access shared configurations in any template through
Pimm.config
. This can be helpful for toggling markup base on a config flag, or passing data from the application (like analytics API keys) into views.
v0.2.0
v0.1.0
- Initial release! 🎉