Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 815 Bytes

CHANGELOG.md

File metadata and controls

31 lines (22 loc) · 815 Bytes

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

0.0.1 - Not Published

This is a first public release (nepalez)

0.0.2 - To be released soon

Added

  • Support deletion of any layer from a preconfigured middleware (nepalez)

    middleware = Tram::Middleware.build do
      use FirstLayer
      use SecondLayer
      use ThirdLayer
    end
    
    middleware.drop :SecondLayer

    With this option the middleware became fully extendable