Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-02-17 | Remove copyright years from all files except LICENSE | Loïc Hoguin | |
2024-01-25 | Refresh copyright lines | Loïc Hoguin | |
2017-01-02 | Welcome to 2017 | Loïc Hoguin | |
2017-01-02 | Numerous Dialyzer fixes | Loïc Hoguin | |
2014-11-07 | Rename 'halt' to 'stop' for better consistency | Loïc Hoguin | |
Now everywhere in Cowboy when we want to stop something we return a 'stop' tuple instead of one of the many choices depending on context that we had before. This particular change affects middlewares, sub protocols and REST handlers which were using 'halt' to stop processing. | |||
2014-09-24 | Remove the error tuple return value for middlewares | Loïc Hoguin | |
It wasn't interesting compared to simply returning a halt tuple with an explicit reply. | |||
2014-03-26 | Remove outdated comments, all edoc, plus a few minor tweaks | Loïc Hoguin | |
2014-02-06 | Update copyright years | Loïc Hoguin | |
2013-05-16 | Move cowboy_http:status() to cowboy:http_status() | Loïc Hoguin | |
2013-05-15 | Fix incorrect spec for the middleware callback | Loïc Hoguin | |
2013-01-03 | Add middleware support | Loïc Hoguin | |
Middlewares allow customizing the request processing. All existing Cowboy project are incompatible with this commit. You need to change `{dispatch, Dispatch}` in the protocol options to `{env, [{dispatch, Dispatch}]}` to fix your code. |