All Versions
30
Latest Version
Avg Release Cycle
14 days
Latest Release
1413 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v0.5.0 Changes
โจ Enhancements
- Send 404 response by default when no routes match
๐ Deprecations
- Using
match _ do
in your Router to handle 404 responses is no longer necessary and will show a compiler warning when present
- Using
-
v0.4.5 Changes
- ๐ Bug fixes
- Fix specs for some resource callback return types
- ๐ Bug fixes
-
v0.4.1 Changes
- โจ Enhancements
- Import
Plug.Conn
when usingPlugRest.Resource
- Import
- โจ Enhancements
-
v0.4.0 Changes
- Backwards incompatible changes
- Dynamic path segments are no longer available in
conn.params
- Dynamic path segments are no longer available in
- Backwards incompatible changes
-
v0.3.7 Changes
- โจ Enhancements
- Add
using
macro toPlugRest.Resource
that adopts the module's behaviour and importsPlugRest.Conn.read_path_params/1
- Add
- โจ Enhancements
-
v0.3.6 Changes
โจ Enhancements
- Use
PlugRest.Conn.read_path_params/1
to access values of dynamic segments of resource paths
- Use
๐ Deprecations
- Deprecate
conn.params
for url params in favor ofread_url_params/2
- Deprecate
-
v0.3.5 Changes
- โจ Enhancements
- Content provided callbacks (like
to_html
) can return{:chunked, enumerable}
for the body
- Content provided callbacks (like
- โจ Enhancements
-
v0.3.3 Changes
- โจ Enhancements
- Return 500 response if resource handler does not exist
- โจ Enhancements
-
v0.3.0 Changes
โจ Enhancements
- Use
Plug.Router
internally and make match macros available - Make compatible with Elixir 1.2
- Use
๐ Bug fixes
- Ensure that resource handler modules are loaded before use
Backwards incompatible changes
- Change
use PlugRest
touse PlugRest.Router
- Change
-
v0.2.0 Changes
- Definition of a Plug router pipeline and
resource
macro - โ Passes test suite designed for cowboy_rest
- Definition of a Plug router pipeline and