All Versions
30
Latest Version
Avg Release Cycle
14 days
Latest Release
1545 days ago

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
  • v0.4.5 Changes

    • ๐Ÿ› Bug fixes
      • Fix specs for some resource callback return types
  • v0.4.1 Changes

    • โœจ Enhancements
      • Import Plug.Conn when using PlugRest.Resource
  • v0.4.0 Changes

    • Backwards incompatible changes
      • Dynamic path segments are no longer available in conn.params
  • v0.3.7 Changes

    • โœจ Enhancements
      • Add using macro to PlugRest.Resource that adopts the module's behaviour and imports PlugRest.Conn.read_path_params/1
  • v0.3.6 Changes

    • โœจ Enhancements

      • Use PlugRest.Conn.read_path_params/1 to access values of dynamic segments of resource paths
    • ๐Ÿ—„ Deprecations

      • Deprecate conn.params for url params in favor of read_url_params/2
  • v0.3.5 Changes

    • โœจ Enhancements
      • Content provided callbacks (like to_html) can return {:chunked, enumerable} for the body
  • v0.3.3 Changes

    • โœจ Enhancements
      • Return 500 response if resource handler does not exist
  • v0.3.0 Changes

    • โœจ Enhancements

      • Use Plug.Router internally and make match macros available
      • Make compatible with Elixir 1.2
    • ๐Ÿ› Bug fixes

      • Ensure that resource handler modules are loaded before use
    • Backwards incompatible changes

      • Change use PlugRest to use PlugRest.Router
  • v0.2.0 Changes

    • Definition of a Plug router pipeline and resource macro
    • โœ… Passes test suite designed for cowboy_rest