All Versions
101
Latest Version
Avg Release Cycle
29 days
Latest Release
759 days ago

Changelog History
Page 10

  • v2.5.0 Changes

    July 14, 2015
    • 0๏ธโƒฃ Make :by_name option to path plugin default to true in development (jeremyevans)

    • โž• Add :cache_class option to render plugin, for customized template cache behavior (celsworth) (#34)

    • Add :compiled_asset_host option to assets plugin, to use a host for compiled assets (jeremyevans)

    • ๐Ÿ‘ Allow r.multi_run to take a block that is called with the prefix before dispatching to the rack app (mikz) (#32)

  • v2.4.0 Changes

    June 15, 2015
    • โž• Add websockets plugin, for integration with faye-websocket (jeremyevans)

    • ๐Ÿ”Œ Add status_handler plugin, similar to not_found but for any status code (celsworth) (#29)

    • ๐Ÿ‘Œ Support Closure Compiler, Uglifier, and MinJS for compressing javascript in the assets plugin (jeremyevans)

    • ๐Ÿ”Œ Make Roda.plugin always return nil (jeremyevans)

    • โž• Add :gzip option to assets plugin (jeremyevans)

  • v2.3.0 Changes

    May 13, 2015
    • ๐Ÿฑ Make assets plugin work better with json plugin when r.assets is the last method called in a route block (jeremyevans) (#27)

    • ๐Ÿ‘Œ Support no_mail! method in the mailer plugin, for skipping an email (jeremyevans)

    • โž• Add precompile_templates plugin, for saving memory when using a forking webserver (jeremyevans)

    • ๐Ÿ”Œ Document how to allow per-branch HTML escaping of <%= %> in the view_options plugin (jeremyevans)

    • Add :include_request option to json and json_parser plugins to include request in :serializer/:parser call (janko-m) (#26)

    • โšก๏ธ Optimize template cache lookup in render plugin when :cache_key is given (jeremyevans)

    • โž• Add :engine_opts option to render plugin, for specifying per-template engine options (jeremyevans)

    • ๐Ÿ”Œ The render plugin and render/view :ext option is now replaced by the :engine option (jeremyevans)

    • โž• Add path_rewriter plugin, for rewriting paths before routing (jeremyevans)

    • โž• Add :cache_key option to render/view to explicitly set the template cache key (jeremyevans)

    • Don't cache templates if :template_block is given to render/view, unless :cache=>true is used (jeremyevans)

    • โž• Add :cache option to render/view to force caching or not caching the template (jeremyevans)

    • ๐Ÿ”Œ Avoid rehashing hashes at runtime in plugins (jeremyevans)

    • โž• Add heartbeat plugin for heartbeat support (jeremyevans)

    • ๐Ÿ‘Œ Support :serializer option in json plugin (janko-m) (#21)

    • โž• Add json_parser plugin, for parsing request bodies in JSON format (jeremyevans)

  • v2.2.0 Changes

    April 13, 2015
    • โž• Add :escaper render plugin option to support custom escaping of <%= %> tags when :escape is used (jeremyevans)

    • Add :escape_safe_classes render plugin option, to not escape certain string subclasses when :escape is used (jeremyevans)

    • ๐Ÿ”Œ Split partials method from padrino_render plugin into partials plugin (kematzy) (#19)

    • โž• Add shared_vars plugin, for sharing variables between multiple Roda apps (jeremyevans)

    • โž• Add delay method to chunked plugin, for delaying a block execution until right before content template rendering (jeremyevans)

    • 0๏ธโƒฃ Have default Content-Type header when using the default_headers plugin (jeremyevans)

    • โž• Add :by_name option to the path plugin, for registering classes by name, useful when reloading code (jeremyevans)

    • โž• Add Roda.path_block to get the block related to the given class used for Road#path (jeremyevans)

    • ๐Ÿ‘‰ Make Roda#path work correctly in subclasses (jeremyevans)

  • v2.1.0 Changes

    March 13, 2015
    • ๐Ÿ”Œ Have add_file in the mailer plugin support blocks, which are called after the file has been added (jeremyevans)

    • Add append_view_subdir to view_options, for appending to an existing view subdirectory (jeremyevans)

    • ๐Ÿ”Œ Rename view_subdirs plugin to view_options, add support for branch/route specific view/layout options/locals (jeremyevans)

    • ๐Ÿ”€ Merge :locals set in the render plugin options into :locals provided in call to view/render (jeremyevans)

    • โž• Add support for registering classes in the path plugin for use with Roda#path (jeremyevans)

    • Use :add_script_name app option as default for path method :add_script_name option in path plugin (jeremyevans)

    • Support :add_script_name app option in assets plugin, to prefix URLs with SCRIPT_NAME (jeremyevans)

    • Make r.multi_route in multi_route plugin work without any named routes defined (jeremyevans)

    • โž• Add :static plugin, for more easily serving static files (jeremyevans)

    • ๐Ÿฑ Recognize Roda :root option in render and assets plugins (jeremyevans)

    • ๐Ÿ”Œ Make :layout=>false option in render plugin override previous layout template (jeremyevans)

    • ๐Ÿ”Œ Make add_file in the mailer plugin add the files after the email body instead of before (jeremyevans)

  • v2.0.0 Changes

    February 13, 2015
    • ๐Ÿ‘ Allow Roda app to be used as a regular rack app even when using the middleware plugin (jeremyevans)

    • ๐Ÿ”Œ Make render plugin :layout option always be true or false (jeremyevans)

    • 0๏ธโƒฃ Make :layout=>true view option use the default layout (jeremyevans)

    • ๐Ÿ”Œ Make error_handler plugin rescue ScriptError in addition to StandardError (jeremyevans)

    • ๐Ÿ”Œ Make halt plugin integrate with symbol_views, json, and similar plugins (jeremyevans)

    • โž• Add padrino_render plugin, adding render/partial methods that work similar to Padrino (jeremyevans)

    • โž• Add Roda#render_template private method for template rendering, for use by plugins (jeremyevans)

    • ๐Ÿšš Make Roda#initialize take env hash, #call take route_block, remove private #_route (jeremyevans)

    • Remove keep_remaining_path/update_remaining_path private request methods (jeremyevans)

    • Don't modify SCRIPT_NAME/PATH_INFO during routing, merging static_path_info plugin into core (jeremyevans)

    • โœ‚ Remove code deprecated in Roda 1.3.0 (jeremyevans)

  • v1.3.0 Changes

    January 13, 2015
    • Make static_path_info plugin restore original SCRIPT_NAME/PATH_INFO before returning from r.run (jeremyevans)

    • โž• Add RodaMajorVersion, RodaMinorVersion, and RodaPatchVersion (jeremyevans)

    • Add delete_empty_headers plugin for deleting response headers that are empty before return response (jeremyevans)

    • ๐Ÿ‘‰ Make freeze class method freeze internal data structures to avoid thread safety issues (jeremyevans)

    • Deprecate mutating plugin option hashes for chunked, default_headers, error_email, json, and render plugins (jeremyevans)

    • โš™ Fix subclassing app and using r.multi_run in subclass in multi_run plugin (jeremyevans)

    • ๐Ÿ‘Œ Support :classes option in json plugin to set the classes to use (jeremyevans)

    • ๐Ÿ‘Œ Improve performance in default_headers plugin by not duping the headers (jeremyevans)

    • ๐Ÿ”Œ Use :template_opts instead of :opts for providing options to the template in the render plugin (jeremyevans)

    • Support :match_header_yield Roda option in the header_matchers plugin, causing the :header match to yield the value (jeremyevans)

    • ๐Ÿšš Move :param and :param! hash matchers to the param_matchers plugin (jeremyevans)

    • โž• Add path_matchers plugin, for :extension, :prefix, and :suffix hash matchers (jeremyevans)

    • Move Roda.hash_matcher to hash_matcher plugin (jeremyevans)

    • Move Roda.request_module and .response_module to module_include plugin (jeremyevans)

    • Move RodaResponse#set_cookie and #delete_cookie to cookies plugin (jeremyevans)

    • Deprecate RodaRequest#full_path_info, use #path instead (jeremyevans)

    • โž• Add class_delegate to the delegate plugin (jeremyevans)

    • ๐Ÿ”Œ Make not_found plugin clear headers for response if it is not found (jeremyevans)

    • ๐Ÿ”Œ Make error_handler plugin use a new response instead of reusing existing response (jeremyevans)

    • ๐Ÿ‘‰ Make RodaResponse a subclass of Object instead of Rack::Response (jeremyevans)

  • v1.2.0 Changes

    December 17, 2014
    • 0๏ธโƒฃ Don't override explicit nil :default_encoding template option in the render plugin (jeremyevans)

    • Add remaining_path and matched_path request methods (jeremyevans)

    • Add slash_path_emty plugin, for considering a path of "/" as empty when doing a terminal match (jeremyevans)

    • Remove def_verb_method request class method (jeremyevans)

    • Support :add_script_name, :name, :url, and :url_only options when creating named paths in the path plugin (jeremyevans)

    • โž• Add match_affix plugin, for overriding default prefix/suffix used in match patterns (jeremyevans)

    • โž• Add empty_root plugin, for making root matcher also match empty string (jeremyevans)

    • โž• Add roda_class instance methods to RodaRequest and RodaResponse, to DRY up plugin code (jeremyevans)

    • โž• Add sinatra_helpers plugin, porting Sinatra::Helpers methods not covered by other plugins (jeremyevans)

    • 0๏ธโƒฃ Don't set the default headers until the response is finished (jeremyevans)

    • Add RodaRequest#default_redirect_status, so plugins can override the default status used for redirects (jeremyevans)

    • โž• Add drop_body plugin, for automatically dropping body and Content-{Length,Type} headers based on response status (jeremyevans)

    • โž• Add clear_middleware! class method, for clearing the current middleware (jeremyevans)

    • โž• Add inherit_middleware class accessor, allowing users to turn off middleware inheritance (jeremyevans)

    • โž• Add multi_run plugin, for dispatching to multiple rack applications based on the request path prefix (jeremyevans)

    • โž• Add environments plugin, for handling development/test/production environments (jeremyevans)

    • 0๏ธโƒฃ Do not cache templates by default if RACK_ENV is development (jeremyevans)

    • โž• Add delay_build plugin, to delay building the rack app until Roda.app is called (jeremyevans)

    • Add :user_agent hash matcher to the header_matchers plugin (jeremyevans)

    • ๐Ÿ›  Fix caching of templates in the render plugin when :opts or :template_class is used (jeremyevans)

    • 0๏ธโƒฃ Require loading the render plugin again if you want to change the default layout (jeremyevans)

    • Pass :css_opts and :js_opts as template options (via :opts) instead of render options when rendering (jeremyevans)

    • Only pass :opts hash to template class during rendering, instead of all render/view options (jeremyevans)

    • ๐Ÿ‘Œ Support :template_class option in the render plugin for overriding template class to use (jeremyevans)

    • Automatically dup unfrozen Array/Hash opts values when subclassing (jeremyevans)

    • โž• Add named_templates plugin, for creating inline templates by name, instead of storing them in the file system (jeremyevans)

    • ๐Ÿ‘Œ Support :template option in for render/view to specify template to use, instead of requiring separate argument (jeremyevans)

    • Add class_level_routing plugin, for a DSL similar to Sinatra (jeremyevans)

    • 0๏ธโƒฃ Make RodaRequest.consume_pattern not capture pattern by default (jeremyevans)

    • Add static_path_info plugin, making Roda not modify PATH_INFO or SCRIPT_NAME during routing (jeremyevans)

    • ๐ŸŽ Use local/instance variable lookups instead of method calls to improve performance (jeremyevans)

    • โž• Add RodaRequest#session, and have #session delegate to that (jeremyevans)

    • โž• Add delegate plugin, for easily creating methods that delegate to request or response (jeremyevans)

    • โž• Add mailer plugin, allowing use of a routing tree for email instead of web responses (jeremyevans)

  • v1.1.0 Changes

    November 11, 2014
    • โž• Add assets plugin, for rendering assets on the fly, or compiling them to a single compressed file (cj, jeremyevans) (#5)

    • ๐Ÿ”Œ Make InstanceMethods in plugins not include constants, as they would pollute the constant namespace (jeremyevans)

    • ๐Ÿ‘‰ Make response.finish add the Content-Length header, not response.write (jeremyevans)

    • Add response.finish_with_body to override response body used (jeremyevans)

    • ๐Ÿ‘‰ Use allocate instead of new in rack app (jeremyevans)

    • โž• Add chunked plugin, for easy streaming of template responses using Transfer-Encoding: chunked (jeremyevans)

    • โž• Add namespace support to the multi_route plugin, to support more complex applications (jeremyevans)

    • ๐Ÿ‘‰ Make r.multi_route use named route return value if not passed a block (jeremyevans)

    • ๐Ÿ‘‰ Make r.multi_route prefer longer route if multiple routes have the same prefix (jeremyevans)

    • โž• Add caching plugin, for handling http caching (jeremyevans)

    • ๐Ÿ‘Œ Support adding middleware after the route block has been added (jeremyevans)

    • ๐Ÿ‘ Allow Roda subclasses to use route block from superclass (jeremyevans)

    • Have r.multi_route ignore non-String named routes (jeremyevans)

    • ๐Ÿ”Œ Pick up newly added named routes while running in the multi_route plugin, useful for development (jeremyevans)

    • โž• Add path plugin, for named path support (jeremyevans) (#4)

    • โž• Add error_email plugin, for easily emailing an error notification for an exception (jeremyevans)

  • v1.0.0 Changes

    August 19, 2014
    • Don't have :extension hash matcher force a terminal match (jeremyevans)

    • โž• Add :content option to view method in render plugin to use given content instead of rendering a template (jeremyevans)

    • โž• Add :escape option to render plugin for using erb templates where <%= %> escapes and <%== %> does not (jeremyevans)

    • ๐Ÿ”Œ Make multi_route plugin route("route_name") method a request method instead of an instance method (jeremyevans)

    • Add r.multi_route method to multi_route plugin, for dispatching to named route based on first segment in path (jeremyevans)

    • ๐Ÿ‘ Allow non-GET requests to use r.redirect with no argument, redirecting to current path (jeremyevans)

    • โž• Add head plugin, for handling HEAD requests like GET requests with an empty body (jeremyevans)

    • โšก๏ธ Optimize consuming patterns by using a positive lookahead assertion (jeremyevans)

    • โž• Add not_allowed plugin, for automatically returning 405 Method Not Allowed responses (jeremyevans)

    • โšก๏ธ Optimize match blocks with no arguments (jeremyevans)

    • โž• Add content_for plugin, for storing content in one template and retrieving it in another (jeremyevans)

    • โž• Add render_each plugin, for rendering a template for each value in an enumerable (jeremyevans)

    • โž• Add backtracking_array plugin, allowing array matchers to backtrack if later matchers do not match (jeremyevans)

    • โž• Add :all hash matcher, allowing array matchers to include conditions where you want to match multiple conditions (jeremyevans)

    • โž• Add json plugin, allowing match blocks to return arrays/hashes, returning JSON (jeremyevans)

    • โž• Add view_subdirs plugin, for setting a subdirectory for views on a per-request basis (jeremyevans)

    • ๐Ÿ‘ Allow default halt method to take no arguments, and use the current response (jeremyevans)

    • โž• Add symbol_views plugin, allowing match blocks to return a template name symbol (jeremyevans)

    • Add per_thread_caching plugin, for using separate caches per thread instead of shared thread-safe caches (jeremyevans)

    • โž• Add hash_matcher class method, for easily creating hash match methods (jeremyevans)

    • โž• Add symbol_matchers plugin, for using symbol-specific matching regexps (jeremyevans)

    • โž• Add csrf plugin for csrf protection using rack_csrf (jeremyevans)

    • โšก๏ธ Optimize r.is, r.get, r.post and similar methods by reducing the number of Array objects created (jeremyevans)

    • ๐Ÿ‘Œ Support RequestClassMethods and ResponseClassMethods in plugins (jeremyevans)

    • โž• Add Roda::RodaCache for a thread safe cache, currently used for match patterns, templates, and plugins (jeremyevans)

    • โšก๏ธ Optimize matching by caching consume regexp for strings, regexp, symbol, and :extension matchers (jeremyevans)

    • โž• Add r.root for GET / requests, for easier to read version of r.get "" (jeremyevans)

    • โšก๏ธ Optimize r.is terminal matcher, remove :term hash matcher (jeremyevans)

    • ๐Ÿ”Œ Make flash plugin no longer depend on sinatra-flash (jeremyevans)

    • ๐Ÿšš Move version file to roda/version so it can be required separately without loading dependencies (jeremyevans)