= 3.66.0 (2023-03-13) * Support overriding exception page assets via exception_page_{css,js} instance methods (jeremyevans) (#306) * Avoid keeping reference to Roda instance that caches an inline template (jeremyevans) * Add render_coverage plugin, using tilt 2.1 features to allow for compiled templates in Ruby <3.2 (jeremyevans) = 3.65.0 (2023-02-13) * Make indifferent_params plugin work with changes in rack main branch (jeremyevans) * Add autoload_named_routes plugin for autoloading file for a named route when there is a request for that route (jeremyevans) * Make path method in path plugin accept class name string/symbol with :class_name option to register classes without forcing autoloads (jeremyevans) = 3.64.0 (2023-01-12) * Automatically expand paths for autoload_hash_branches files, so that relative paths work (jeremyevans) * Make autoload_hash_branches plugin eagerly load the branches when freezing the application (jeremyevans) * Add erb_h plugin for faster (if slightly less safe) html escaping using erb/escape (jeremyevans) = 3.63.0 (2022-12-16) * Make mailer plugin set configured content type for body part for emails with attachments when using mail 2.8+ (jeremyevans) * Add autoload_hash_branches plugin for autoloading file for a hash branch when there is a request for that branch (jeremyevans) * Add mailer plugin :terminal option to make r.mail use a terminal match when provided arguments (jeremyevans) = 3.62.0 (2022-11-14) * Add typecast_params_sized_integers plugin for converting parameters to sized integers (jeremyevans) * Add Integer_matcher_max plugin for setting maximum integer value matched by the Integer matcher (jeremyevans) * Allow class matchers in the class_matchers plugin to skip matching based on regexp match values (jeremyevans) * Fix RodaRequest#matched_path when using unescape_path plugin (jeremyevans) (#286) = 3.61.0 (2022-10-12) * Make Integer matcher limit integer segments to 100 characters by default (jeremyevans) * Limit input bytesize by default for integer, float, and date/time typecasts in typecast_params (jeremyevans) = 3.60.0 (2022-09-13) * Add link_to plugin with link_to method for creating HTML links (jeremyevans) = 3.59.0 (2022-08-12) * Add additional_render_engines plugin, for considering multiple render engines for templates (jeremyevans) * Fix typo in private method name in delete_empty_headers plugin (mculpt) (#279) = 3.58.0 (2022-07-13) * Add filter_common_logger plugin for skipping the logging of certain requests when using the common_logger plugin (jeremyevans) * Make exception_page plugin use Exception#detailed_message on Ruby 3.2+ (jeremyevans) * Make heartbeat plugin compatible with recent changes in the rack master branch (jeremyevans) = 3.57.0 (2022-06-14) * Make static_routing plugin depend on the hash_paths instead of the hash_routes plugin (jeremyevans) * Split hash_branches and hash_paths plugins from hash_routes plugin (jeremyevans) * Hex escape unprintable characters in common_logger plugin output (jeremyevans) * Add hash_branch_view_subdir plugin for automatically appending a view subdirectory on a successful hash branch (jeremyevans) = 3.56.0 (2022-05-13) * Make status_303 plugin use 303 responses for HTTP/2 and higher versions (jeremyevans) * Add RodaRequest#http_version for determining the HTTP version in use (jeremyevans) * Do not set a body for 405 responses when using the verb methods in the not_allowed plugin (jeremyevans) (#267) * Support status_handler method :keep_headers option in status_handler plugin (jeremyevans) (#267) * Make not_allowed plugin have r.root return 405 responses for non-GET requests (jeremyevans) (#266) * In Rack 3, only require the parts of rack used by Roda, instead of requiring rack itself and relying on autoload (jeremyevans) * Add run_require_slash plugin, for skipping application dispatch for remaining paths that would violate Rack SPEC (jeremyevans) = 3.55.0 (2022-04-12) * Allow passing blocks to the view method in the render plugin (jeremyevans) (#262) * Add :forward_response_headers middleware plugin option to use app headers as default for response (janko) (#259) = 3.54.0 (2022-03-14) * Make chunked plugin not use Transfer-Encoding: chunked by default (jeremyevans) * Make run_handler plugin close bodies for upstream 404 responses when using not_found: :pass (jeremyevans) * Drop all 1xx bodies in the drop body plugin (jeremyevans) * Do not set a Content-Length header for 205 responses on Rack <2.0.2 (jeremyevans) * Use Rack::Files instead of Rack::File if available, to avoid deprecation warnings (jeremyevans) * Work with Rack 3 SPEC, using Rack::Headers to handle lowercasing header keys on Rack 3 (jeremyevans) * Allow overriding script tag type attribute returned by assets method in assets plugin (pusewicz) (#250) * Make reloading render plugin after additional_view_directories plugin retain :allowed_paths (jeremyevans) = 3.53.0 (2022-02-14) * Make indifferent_params plugin support rack main branch (jeremyevans) * Add additional_view_directories plugin, for checking multiple view directories for templates (jeremyevans) (#229) = 3.52.0 (2022-01-14) * Fix return value of Roda.freeze when multi_route plugin is used (jeremyevans) (#240) * Use faster OpenSSL::Digest instead of Digest for assets plugin SRI support (jeremyevans) * Drop development dependency on haml (jeremyevans) * Make the path method in the path plugin handle blocks that accept keyword arguments in Ruby 3+ (adam12) (#227) * Support typecast_params :date_parse_input_handler plugin option for handling input to date parsing methods (jeremyevans) = 3.51.0 (2021-12-15) * Avoid method redefinition warning in error_handler plugin in verbose warning mode (jeremyevans) * Allow run in multi_run plugin to be called without an app to remove existing handler (jeremyevans) * Allow route in named_routes plugin to be called without a block to remove existing handler (jeremyevans) = 3.50.0 (2021-11-12) * Add capture_erb plugin for capturing ERB template blocks, instead of injecting them into the template output (jeremyevans) * Add inject_erb plugin for injecting content directly into ERB template output (jeremyevans) * Allow hash_branch and hash_path in hash_routes plugin to be called without a block to remove existing handler (jeremyevans) = 3.49.0 (2021-10-13) * Switch block_given? to defined?(yield) (jeremyevans) * Automatically optimize remaining r.is/r.get/r.post calls with a single argument (jeremyevans) = 3.48.0 (2021-09-13) * Extract named_routes plugin from multi_route plugin (jeremyevans) = 3.47.0 (2021-08-13) * Automatically optimize remaining r.on calls with a single argument (jeremyevans) = 3.46.0 (2021-07-12) * Automatically optimize r.on/r.is/r.get/r.post methods with a single string, String, Integer, or regexp argument (jeremyevans) = 3.45.0 (2021-06-14) * Make typecast_params plugin check for null bytes in strings by default, with :allow_null_bytes option for previous behavior (jeremyevans) = 3.44.0 (2021-05-12) * Add optimized_segment_matchers plugin for optimized matchers for a single String class argument (jeremyevans) * Use RFC 5987 UTF-8 and ISO-8859-1 encoded filenames when using send_file and attachment in the sinatra_helpers plugin (jeremyevans) = 3.43.1 (2021-04-13) * [SECURITY] Fix issue where loading content_security_policy plugin after default_headers plugin had no effect (jeremyevans) = 3.43.0 (2021-04-12) * Add host_authorization plugin, for checking that requests are submitted using an approved host (jeremyevans) = 3.42.0 (2021-03-12) * Make Roda.plugin support plugins using keyword arguments in Ruby 3 (jeremyevans) * Make Roda.use support middleware using keyword arguments in Ruby 3 (pat) (#207) * Support common_logger plugin :method option for specifying the method to call on the logger (fnordfish, jeremyevans) (#206) * Add recheck_precompiled_assets plugin for checking for updates to the precompiled asset metadata file (jeremyevans) * Make compile_assets class method in assets plugin use an atomic approach to writing precompiled metadata file (jeremyevans) = 3.41.0 (2021-02-17) * Improve view performance with :content option up to 3x by calling compiled template methods directly (jeremyevans) = 3.40.0 (2021-01-14) * Add freeze_template_caches! to the precompile_templates plugin, which ensures all templates are precompiled, and speeds up template access (jeremyevans) * Add precompile_views to the precompile_templates plugin, which precompiles the optimized render methods (jeremyevans) * Have RodaCache#freeze return the frozen internal hash (which no longer needs a mutex for thread-safety) (jeremyevans) * Speed up the view method in the render plugin even more when freezing the application (jeremyevans) * Speed up the view method in the render plugin when called with a single argument (jeremyevans) = 3.39.0 (2020-12-15) * Speed up relative_path plugin if relative_path or relative_prefix is called more than once (jeremyevans) * Avoid method redefinition warnings in verbose warning mode (jeremyevans) * Make typecast_params.convert! handle explicit nil values the same as missing values (jeremyevans) = 3.38.0 (2020-11-16) * Make error_email and error_mail plugins rescue invalid parameter errors when preparing the email body (jeremyevans) = 3.37.0 (2020-10-16) * Add custom_matchers plugin, for supporting arbitrary objects as matchers (jeremyevans) = 3.36.0 (2020-09-14) * Add multi_public plugin, for serving files from multiple public directories (jeremyevans) * Support report-to directive in the content_security_policy plugin (jeremyevans) * Add Vary response header when using type_routing plugin with Accept request header to prevent caching issues (jeremyevans) = 3.35.0 (2020-08-14) * Add r plugin for r method for accessing request, useful when r local variable is not in scope (jeremyevans) * Warn when loading a plugin with arguments or a block if the plugin does not accept arguments or block (jeremyevans) = 3.34.0 (2020-07-14) * Remove unnecessary conditionals (jeremyevans) * Allow loading the match_affix plugin with a single argument (jeremyevans) * Do not include pre/post context sections if empty in the exception_page plugin (jeremyevans) = 3.33.0 (2020-06-16) * Add :brotli option to public plugin to supplement it to serve brotli-compressed files like :gzip does for gzipped files (hmdne) (#194) * Add url method to path plugin, similar to path but returning the entire URL (jeremyevans) = 3.32.0 (2020-05-15) * Make :dependencies option in assets plugin work correctly with render plugin template caching (jeremyevans) (#191) * Support render method :dependencies option for specifying which files to check for modification (jgarth, jeremyevans) (#192) * Add each_partial to the partials plugin for rendering a partial for each element in an enumerable (jeremyevans) * Make render_each in render_each plugin handle template names with directories and extensions (jeremyevans) = 3.31.0 (2020-04-15) * Add :relative option to path method in path plugin, for generating a method returning relative paths (jeremyevans) * Add relative_path plugin, for turning absolute paths to paths relative to the current request (jeremyevans) = 3.30.0 (2020-03-13) * Support :relative_paths assets plugin option to use relative paths for the assets (jeremyevans) * Make run_append_slash and run_handler plugins work when used together (janko) (#185) * Make :header matcher in header_matchers plugin work for Content-Type and Content-Length (jeremyevans) (#184) = 3.29.0 (2020-02-14) * Remove specs and old release notes from the gem to reduce gem size by over 35% (jeremyevans) * Raise RodaError if trying to load a plugin that is not a module (jeremyevans) * Include SCRIPT_NAME when logging in common logger plugin (jeremyevans) * Handle invalid POST data when using the exception_page plugin (jeremyevans) = 3.28.0 (2020-01-15) * Add session_created_at and session_updated_at methods to the sessions plugin (jeremyevans) * Make upgrading from rack session cookie in sessions plugin work with rack 2.0.8 (jeremyevans) * Make json_parser parse request body as json even if request body has already been read (jeremyevans) = 3.27.0 (2019-12-13) * Allow json_parser return correct result for invalid JSON if the params_capturing plugin is used (jeremyevans) (#180) * Add multibyte_string_matcher plugin for matching multibyte characters (jeremyevans) * Split roda.rb into separate files (janko) (#177) = 3.26.0 (2019-11-18) * Combine multiple asset files with a newline when compiling them, avoiding corner cases with comments (ameuret) (#176) * Add asychronous streaming support to the streaming plugin (janko) (#175) = 3.25.0 (2019-10-15) * Support change in tilt 2.0.10 private API to continue to support compiled templates, with up to 33% performance improvement (jeremyevans) * Improve render performance with :locals option up to 75% by calling compiled template methods directly (jeremyevans) = 3.24.0 (2019-09-13) * Fix Proc.new warning in module_include plugin on Ruby 2.7+ (jeremyevans) * Improve render_each performance by calling compiled template methods directly (jeremyevans) = 3.23.0 (2019-08-13) * Make roda/session_middleware work if type_routing plugin is loaded into Roda itself (jeremyevans) (#169) * Handle requests with nothing before extension in the path in the type_routing plugin (jeremyevans) (#168) * Always show line number in exception_page output in exception_page plugin (jeremyevans) * Improve render/view performance up to 2x in development mode in the default case by calling compiled template methods directly (jeremyevans) = 3.22.0 (2019-07-12) * Improve render performance up to 4x in the default case by calling compiled template methods directly (jeremyevans) = 3.21.0 (2019-06-14) * Cache compiled templates in development mode, until the template files are modified (jeremyevans) = 3.20.0 (2019-05-16) * Set Content-Length header to 0 for empty 205 responses (jeremyevans) = 3.19.0 (2019-04-12) * Allow assets plugin :timestamp_paths option to be a string to specify a custom separator (jeremyevans) * Fix handling for blocks with arity > 1 where expected arity is 1 (jeremyevans) * Improve performance for handling blocks with arity 0 where expected arity is 1 by avoiding instance_exec (jeremyevans) * Improve terminal maching by around 4x (jeremyevans) * Improve symbol matching by 10-20% (jeremyevans) * Improve string matching by 10-20% (jeremyevans) * Automatically load the direct_call plugin when freezing if no middleware is used for better performance (jeremyevans) * Delay building rack app until Roda.app is called (jeremyevans) * Add hash_routes plugin for O(1) route dispatching at any level in the routing tree (jeremyevans) * Add support for per-cookie cipher secrets in the sessions plugin, and enable them by default (jeremyevans) * Add match_hook plugin for calling hooks when there is a successful match block (adam12) (#164) = 3.18.0 (2019-03-15) * Add direct_call plugin for making Roda.call skip middleware, allowing more optimization when dispatching routes (jeremyevans) * Improve performance of default_headers plugin by directly defining set_default_headers (jeremyevans) * Improve performance when freezing app if certain methods have not been overridden (jeremyevans) * Support :check_arity and :check_dynamic_arity app options for whether/how to check arity for blocks used to define methods (jeremyevans) * Improve performance of the status_handler plugin by using methods instead of instance_exec (jeremyevans) * Remove r.static_route method from the static_routing plugin (jeremyevans) * Improve performance of the static_routing plugin by using methods instead of instance_exec (jeremyevans) * Add support for the route_block_args plugin to the route_csrf plugin (jeremyevans) * Improve performance of the route_csrf plugin by using a method instead of instance_exec (jeremyevans) * Improve performance of the route_block_args plugin by using a method instead of instance_exec (jeremyevans) * Improve performance of the path plugin by using methods instead of instance_exec (jeremyevans) * Improve performance of the named_templates plugin by using methods instead of instance_exec (jeremyevans) * Improve performance of the multi_route plugin by using methods instead of instance_exec (jeremyevans) * Improve performance of the hooks plugin by using methods instead of instance_exec (jeremyevans) * Improve performance of the mail_processor plugin by using methods instead of instance_exec (jeremyevans) * Improve performance of the default_status plugin by directly defining the default_status method (jeremyevans) * Improve performance of class_level_routing plugin using methods instead of instance_exec (jeremyevans) * Do not have route_block_args plugin affect class_level_routes plugin (jeremyevans) * Integrate internal after hook with error_handler plugin (jeremyevans) * Improve performance of internal before and after hooks (jeremyevans) * Improve performance by using method instead of instance_exec for main route block (jeremyevans) * Add Roda.define_roda_method for defining instance methods instead of using instance_exec (jeremyevans) * Include cookie_options when clearing the cookie (#162, #163) (eiko, jeremyevans) = 3.17.0 (2019-02-15) * Improve performance in the common case for RodaResponse#finish (jeremyevans) * Support before hooks in the hooks plugin in the mailer and mail_processor plugins (jeremyevans) * Allow set_layout_opts in view_options plugin to override layout if render plugin :layout option is given (jeremyevans) * Add route_block_args plugin to control which arguments are yielded to the route block (jeremyevans, chrisfrank) (#159) = 3.16.0 (2019-01-18) * Add mail_processor plugin for processing mail using a routing tree (jeremyevans) = 3.15.0 (2018-12-14) * Support render plugin :escape option to be a string or array of strings and only add :escape option for those template engines (jeremyevans) (#158) * Add :skip_missing option to convert!/convert_each! in the typecast_params plugin to support not storing keys not present in params (jeremyevans) = 3.14.1 (2018-11-29) * SECURITY: content_for plugin no longer post-processes block result with template engine (jeremyevans) = 3.14.0 (2018-11-16) * Add :raise option to convert!/convert_each! in the typecast_params plugin to support not raising for missing keys (celsworth) (#153) * Do not persist convert!/convert_each! :symbolize setting in the typecast_params plugin (jeremyevans) = 3.13.0 (2018-10-12) * Make Stream#write in streaming plugin return number of bytes written instead of self, so it works with IO.copy_stream (jeremyevans) * Add exception_page plugin for showing a page with debugging information for a given exception (jeremyevans) * Make common_logger plugin handle raised errors (jeremyevans) = 3.12.0 (2018-09-14) * Add common_logger plugin for common log support (jeremyevans) = 3.11.0 (2018-08-15) * Disable default compression of sessions over 128 bytes in the sessions plugin (jeremyevans) * Log but otherwise ignore exceptions raised by after processing of error handler response (jeremyevans) * Modify internal before/after processing to avoid plugin load order issues (jeremyevans) = 3.10.0 (2018-07-18) * Remove flash key from session if new flash is empty when rotating flash (jeremyevans) * Speed up RodaRequest initialization by avoiding 1-2 method calls (jeremyevans) * Add roda/session_middleware (RodaSessionMiddleware), usable as a middleware by any Rack app to use Roda's session support (jeremyevans) * Add sessions plugin for more secure (encrypted+signed) sessions (jeremyevans) * Support :json_parser and :json_serializer application options as default implementations for parsing/serializing JSON (jeremyevans) * Add :handle_result option to middleware plugin for modifying rack result before returning it (jeremyevans) * Make the flash plugin work correctly when sessions are serialized with JSON (jeremyevans) * Make Integer in typecast_params handle Numeric input, and require that Numeric input not have fractional parts (jeremyevans) (#146) = 3.9.0 (2018-06-11) * Add route_csrf plugin for CSRF protection, offering more control, better security, and request-specific tokens compared to rack_csrf (jeremyevans) = 3.8.0 (2018-05-17) * Accept convert_each! :keys option that is Proc or Method in typecast_params plugin (jeremyevans) * Make convert_each! in typecast_params plugin handle hashes with '0'..'N' keys without :keys option (jeremyevans) = 3.7.0 (2018-04-20) * Make response_request plugin work with error_handler and class_level_routing plugins (jeremyevans) * Add content_security_policy plugin for setting an appropriate Content-Security-Policy header (jeremyevans) = 3.6.0 (2018-03-26) * Add :wrap option to json_parser plugin, for whether/how to wrap the uploaded JSON object (jeremyevans) (#142) * Add :early_hints option to the assets plugin, for supporting sending early hints for calls to assets (jeremyevans) * Add early_hints plugin for sending 103 Early Hint responses, currently only working on puma (jeremyevans) = 3.5.0 (2018-02-14) * Add request_aref plugin for configuring behavior of request [] and []= methods (jeremyevans) * Make public plugin not add Content-Type header when serving 304 response for gzipped file (jeremyevans) * Make content_for call with block convert block result to string before passing to tilt (jeremyevans) (#135) = 3.4.0 (2018-01-12) * Add middleware_stack plugin for removing middleware and inserting middleware before the end of the stack (jeremyevans) * Make head plugin handle closing existing response bodies if the body responds to close (Eric Wong) = 3.3.0 (2017-12-14) * Add typecast_params plugin for converting param values to explicit types (jeremyevans) = 3.2.0 (2017-11-16) * Use microseconds in assets plugin :timestamp_paths timestamps (jeremyevans) * Add timestamp_public plugin for serving static files with paths that change based on modify timestamp (jeremyevans) = 3.1.0 (2017-10-13) * Make set_layout_locals and set_view_locals in branch_locals plugin work when the other is not called (jeremyevans) * Add :timestamp_paths option to assets plugin to include timestamps in paths in non-compiled mode (jeremyevans) * Handle ExecJS::RuntimeUnavailable when testing for javascript compression support using uglifier (jeremyevans) * Remove deprecated Roda.thread_safe_cache and RodaRequest#placeholder_string_matcher? methods (jeremyevans) = 3.0.0 (2017-09-15) * Make defined symbol_matcher and hash_matcher match methods private (jeremyevans) * Use public_send instead of send unless calling private methods is expected (jeremyevans) * Compute multi_run regexp when freezing app to avoid thread safety issues at runtime (jeremyevans) * Remove deprecated support for using undefined multi_route namespaces when routing (jeremyevans) * Make it possible to reset :include_request options to false for json and json_parser plugins (jeremyevans) * Deprecate RodaRequest#placeholder_string_matcher? private method (jeremyevans) * Deprecate Roda.thread_safe_cache, use RodaCache directly (jeremyevans) * Make using an app as middleware always create a subclass of the app (jeremyevans) * Enable SHA256 subresource integrity by default in assets plugin (jeremyevans) * Make subclassing a roda app always inherit the render cache (jeremyevans) * Make :cache=>nil render plugin option still allow caching via :cache render method option (jeremyevans) * Make content_for plugin append to existing content by default (jeremyevans) * Make :host matcher in the header_matchers plugin always yield captures if given a regexp (jeremyevans) * Make :header matcher in the header_matchers plugin now always prefix header with HTTP_ (jeremyevans) * Remove deprecated support for locals handling at the plugin level in the render plugin (jeremyevans) * Remove deprecated support for handling locals in the view_options plugin (jeremyevans) * Remove deprecated support for :ext option in render plugin (jeremyevans) * Remove deprecated view_subdirs alias for view_options plugin (jeremyevans) * Remove deprecated support for EventMachine and Stream#callback method in the streaming plugin (jeremyevans) * Drop support for ruby 1.8.7 (jeremyevans) * Make using an unsupported matcher raise error by default (jeremyevans) * Make having a match/route block return an unsupported value raise error by default (jeremyevans) * Remove deprecated :format, :opt, and :optd symbol matchers in symbol_matchers plugin (jeremyevans) * Remove deprecated support for placeholders in string matchers (jeremyevans) * Remove deprecated constants and plugins (jeremyevans) === Older See doc/CHANGELOG.old