roda 3.51.0 → 3.54.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f935481900b15707f29c41122e9ba1101e4a1bb7b6e53ef6c7819f8e0113fb23
4
- data.tar.gz: 3f4938ea16d81085a0b9ee365f1cc8d317fbafd06674f1cf0e8dda37b70f3b05
3
+ metadata.gz: '083b83c9271643842b60c7027b16a3ed2068fef54423b3a80dae73ffa991b0cf'
4
+ data.tar.gz: c2b9efd6155dd597f13e7167ce6ad6044f8692fb5dafa7994c1527c3a94f1641
5
5
  SHA512:
6
- metadata.gz: 00b35a151be77f3ed93ee0b664ce2b77162b1f14c02194e0228ec99969194c54c4ca0ddd538e0eb8bfcb4109ea6712428b554da06d69e572aaffa4d854e76559
7
- data.tar.gz: ceb138da62c24fa2a3be1a57eda9187190f96b974483719894e0368ad47402258123d651403b373c09ff801d816cae2d0f9c88dcf154e2226fba4a864b9ed64d
6
+ metadata.gz: e33b2bc1b476bb103d380ac0b310e09640a0bdbce160c7307c92fba93b2dbb2f2a149b2ea3e1db65701354ab274d4d5cea03a7d813f9c81b271bb43d31915503
7
+ data.tar.gz: 9c3f7d67ed534f769ba453974b2dca02318a3330064d5f350ed6f8e0d25314513d884cddbaa6a0e0b9fae36b962fec659db050ced37e543201d4271099813eda
data/CHANGELOG CHANGED
@@ -1,3 +1,39 @@
1
+ = 3.54.0 (2022-03-14)
2
+
3
+ * Make chunked plugin not use Transfer-Encoding: chunked by default (jeremyevans)
4
+
5
+ * Make run_handler plugin close bodies for upstream 404 responses when using not_found: :pass (jeremyevans)
6
+
7
+ * Drop all 1xx bodies in the drop body plugin (jeremyevans)
8
+
9
+ * Do not set a Content-Length header for 205 responses on Rack <2.0.2 (jeremyevans)
10
+
11
+ * Use Rack::Files instead of Rack::File if available, to avoid deprecation warnings (jeremyevans)
12
+
13
+ * Work with Rack 3 SPEC, using Rack::Headers to handle lowercasing header keys on Rack 3 (jeremyevans)
14
+
15
+ * Allow overriding script tag type attribute returned by assets method in assets plugin (pusewicz) (#250)
16
+
17
+ * Make reloading render plugin after additional_view_directories plugin retain :allowed_paths (jeremyevans)
18
+
19
+ = 3.53.0 (2022-02-14)
20
+
21
+ * Make indifferent_params plugin support rack main branch (jeremyevans)
22
+
23
+ * Add additional_view_directories plugin, for checking multiple view directories for templates (jeremyevans) (#229)
24
+
25
+ = 3.52.0 (2022-01-14)
26
+
27
+ * Fix return value of Roda.freeze when multi_route plugin is used (jeremyevans) (#240)
28
+
29
+ * Use faster OpenSSL::Digest instead of Digest for assets plugin SRI support (jeremyevans)
30
+
31
+ * Drop development dependency on haml (jeremyevans)
32
+
33
+ * Make the path method in the path plugin handle blocks that accept keyword arguments in Ruby 3+ (adam12) (#227)
34
+
35
+ * Support typecast_params :date_parse_input_handler plugin option for handling input to date parsing methods (jeremyevans)
36
+
1
37
  = 3.51.0 (2021-12-15)
2
38
 
3
39
  * Avoid method redefinition warning in error_handler plugin in verbose warning mode (jeremyevans)
@@ -462,592 +498,6 @@
462
498
 
463
499
  * Remove deprecated constants and plugins (jeremyevans)
464
500
 
465
- = 2.29.0 (2017-08-16)
466
-
467
- * Deprecate accessing multi_route namespace when there are no routes (jeremyevans)
468
-
469
- * Deprecate additional internal constants (jeremyevans)
470
-
471
- * Respect :root app option when using :layout_opts=>:views render plugin option (jeremyevans)
472
-
473
- * Deprecate rendering templates outside of render plugin :allowed_paths option by default (jeremyevans)
474
-
475
- * Deprecate :cache=>nil/false render plugin option overriding :cache render/view method option (jeremyevans)
476
-
477
- * Deprecate using :header matcher in header_matchers plugin without :header_matcher_prefix app option (jeremyevans)
478
-
479
- * Deprecate using content_for multiple times with the same key in the content_for plugin unless :append plugin option is used (jeremyevans)
480
-
481
- * Deprecate use of :host matcher with regexp value in header_matchers plugin without :host_matcher_captures app option (jeremyevans)
482
-
483
- * Deprecate view_options plugin locals handling, move to the new branch_locals plugin (jeremyevans)
484
-
485
- * Deprecate render plugin locals handling, move to the new render_locals plugin (jeremyevans)
486
-
487
- * Deprecate the :ext render method and plugin option (jeremyevans)
488
-
489
- * Deprecate the view_subdirs plugin alias for the view_options plugin (jeremyevans)
490
-
491
- * Deprecate Stream#callback in the streaming plugin (jeremyevans)
492
-
493
- * Deprecate the automatic support for EventMachine in the streaming plugin (jeremyevans)
494
-
495
- * Deprecate static_path_info plugin, which has been a no-op in Roda 2 (jeremyevans)
496
-
497
- * Deprecate render plugin :escape option loading Erubis escaping support (jeremyevans)
498
-
499
- * Deprecate the per_thread_caching plugin (jeremyevans)
500
-
501
- * Deprecate the websockets plugin (jeremyevans)
502
-
503
- * Deprecate treating unsupported matchers as always matching (jeremyevans)
504
-
505
- * Deprecate ignoring unsupported match block return values (jeremyevans)
506
-
507
- * Deprecate the :format, :opt, and :optd default symbol matchers in the symbol_matchers plugin (jeremyevans)
508
-
509
- * Deprecate use of placeholders in string matchers by default, add placeholder_string_matchers plugin for it (jeremyevans)
510
-
511
- = 2.28.0 (2017-07-14)
512
-
513
- * Deprecate unneeded internal constants (jeremyevans)
514
-
515
- * Optimize for ruby 2.3+ using frozen string literals instead of constants (jeremyevans)
516
-
517
- * Move 303 default redirect status from sinatra_helpers to status_303 plugin, so it can be loaded separately (plujon) (#122)
518
-
519
- = 2.27.0 (2017-06-14)
520
-
521
- * Add class_matchers plugin for matching other classes (in addition to String/Integer), with user specified regexps and type conversion (jeremyevans)
522
-
523
- * Support String class matcher for non-empty segments, same behavior as symbol matchers but more intuitive and DRY (jeremyevans)
524
-
525
- * Support Integer class matcher for \d+ segments, yielding matched values as integers (jeremyevans)
526
-
527
- = 2.26.0 (2017-05-16)
528
-
529
- * Support :skip_middleware option to csrf plugin to add only the methods and not add the middleware (luciusgone) (#118)
530
-
531
- * Handle multiple types with matching suffixes in the type_routing plugin (e.g. tar.gz and gz) (tomdalling) (#117)
532
-
533
- = 2.25.0 (2017-04-18)
534
-
535
- * Add error_mail plugin, similar to error_email but using mail instead of net/smtp directly (jeremyevans)
536
-
537
- = 2.24.0 (2017-03-15)
538
-
539
- * Have h plugin use cgi/escape if available for faster escaping (jeremyevans)
540
-
541
- * Add disallow_file_uploads plugin for raising an exception if a multipart file upload is attempted (jeremyevans)
542
-
543
- * Add strip_path_prefix plugin for stripping prefixes off of internal absolute paths, making them relative paths (jeremyevans)
544
-
545
- * Add Roda.expand_path method to DRY up path expansion (jeremyevans)
546
-
547
- * Support :freeze_middleware option, which freezes all middleware instances when building the rack app (jeremyevans)
548
-
549
- * Allow middleware plugin to accept a block that will be used to configure the application when used as middleware (jeremyevans)
550
-
551
- * Support an options hash when loading the cookies plugin, that will be used as the defaults for setting and deleting cookies (mwpastore, jeremyevans) (#112)
552
-
553
- * Make the static_routing plugin work with the hooks plugin if the hooks plugin is loaded first (jeremyevans) (#110)
554
-
555
- * Do not modify the render plugin's cache if loading the plugin multiple times (jeremyevans)
556
-
557
- = 2.23.0 (2017-02-24)
558
-
559
- * Add :inherit_cache render plugin option, to create a copy of the cache for subclasses, instead of using an empty cache (jeremyevans)
560
-
561
- * In development mode, default to :explicit_cache=>true, :cache=>true instead of :cache=>false (jeremyevans)
562
-
563
- * Add :explicit_cache render plugin option, to only cache templates if the :cache option is given to render/view (jeremyevans)
564
-
565
- * Add error_email_content method to error_email plugin (jeremyevans)
566
-
567
- * Make error_email method in error_email plugin support non-exception arguments (jeremyevans)
568
-
569
- * Make Roda.freeze in the static_routing plugin return self (jeremyevans)
570
-
571
- = 2.22.0 (2017-01-20)
572
-
573
- * Add support for :verbatim_string_matcher option, for making all string matchers match verbatim (jeremyevans)
574
-
575
- * Add support for :unsupported_matcher => :raise option, for raising on unsupported matcher values (jeremyevans)
576
-
577
- * Add support for :unsupported_block_result => :raise option, for raising on unsupported route/match block return values (jeremyevans)
578
-
579
- = 2.21.0 (2016-12-16)
580
-
581
- * Add handle_stream_error method to streaming plugin, for handling errors when using stream(:loop=>true) (jeremyevans)
582
-
583
- = 2.20.0 (2016-11-13)
584
-
585
- * Support :escape=>:erubi option in the render plugin to use the erubi template engine (jeremyevans)
586
-
587
- = 2.19.0 (2016-10-14)
588
-
589
- * Don't add Content-Type/Content-Length headers for 1xx, 204, 205, 304 statuses (celsworth, jeremyevans) (#101, #102)
590
-
591
- * Optimize indifferent_params plugin when using Rack 2 (jeremyevans)
592
-
593
- * Fix assets_paths method in assets plugin when subresource integrity is used (jeremyevans, celsworth)
594
-
595
- * Make assets plugin depend on h plugin, instead of using Rack::Utils.escape_html (jeremyevans)
596
-
597
- * Make h plugin not escape / (celsworth, jeremyevans) (#100)
598
-
599
- = 2.18.0 (2016-09-13)
600
-
601
- * Add assets_preloading plugin, for creating link tags or Link header for preloading assets (celsworth, jeremyevans) (#98)
602
-
603
- * Add assets_paths method to assets plugin, for just the paths to the assets, instead of the full tags (celsworth) (#96)
604
-
605
- * Make type_routing plugin work correctly with public plugin (celsworth, jeremyevans) (#95)
606
-
607
- * Add static_routing plugin for 3-4x increase in performance for large numbers of static routes (jeremyevans)
608
-
609
- * Make head plugin work with not_allowed plugin if loaded after (jeremyevans) (#92)
610
-
611
- = 2.17.0 (2016-08-13)
612
-
613
- * Add :postprocessor option to assets plugin, for postprocessing assets (e.g. autoprefixing CSS) (celsworth) (#86)
614
-
615
- * Fix path passed to rack apps when using r.run and the type_routing plugin (jeremyevans) (#82)
616
-
617
- * Support :classes option to error_handler plugin for overriding which exception classes to rescue (jeremyevans)
618
-
619
- * Support :layout_opts=>:merge_locals option in render plugin for merging view template locals into layout template locals (jeremyevans) (#80)
620
-
621
- * Support :sri option to assets plugin to enable subresource integrity (jeremyevans)
622
-
623
- * Add run_append_slash plugin, so r.run uses "/" instead of "" for app's PATH_INFO (kenaniah) (#77)
624
-
625
- = 2.16.0 (2016-07-13)
626
-
627
- * Add type_routing plugin, for routing based on path extensions and Accept headers (Papierkorb, jeremyevans) (#75)
628
-
629
- * Add unescape_path plugin, for decoding URL-encoded PATH_INFO before routing (jeremyevans) (#74)
630
-
631
- * Add request_headers plugin, for simpler access to request headers (celsworth) (#72)
632
-
633
- = 2.15.0 (2016-06-13)
634
-
635
- * Add public plugin for r.public method for serving all files in the public directory (jeremyevans)
636
-
637
- * Make send_file in sinatra_helpers plugin work with Rack 2 (jeremyevans)
638
-
639
- * Make :header matcher prefixes the env key with HTTP_ if application :header_matcher_prefix option is set (timothypage, jeremyevans) (#69)
640
-
641
- * Add content_for plugin :append option to support appending to the existing content (evanleck, jeremyevans) (#66)
642
-
643
- = 2.14.0 (2016-05-13)
644
-
645
- * Add symbol_status plugin for using symbols as status codes (Papierkorb) (#65)
646
-
647
- * Make middleware plugin also run the application's middleware (jeremyevans)
648
-
649
- = 2.13.0 (2016-04-14)
650
-
651
- * Add :check_paths and :allowed_paths to render plugin options to avoid security issues with template rendering (jeremyevans)
652
-
653
- = 2.12.0 (2016-03-15)
654
-
655
- * Allow error handler access to the request's remaining_path (jeremyevans)
656
-
657
- * Add optimized_string_matchers plugin, containing optimized matchers for single string arguments (jeremyevans)
658
-
659
- * Optimize string matching code for strings without placeholders for up to a 60% performance increase (jeremyevans)
660
-
661
- * Optimize symbol matching code for up to a 60% performance increase (jeremyevans)
662
-
663
- = 2.11.0 (2016-02-16)
664
-
665
- * Support :scope option in render plugin, for specifying object in which to evaluate the template (jeremyevans)
666
-
667
- * Make minjs compressor support in assets plugin support latest version of Minjs (jeremyevans)
668
-
669
- * Add params_capturing plugin, for storing matcher captures in the request params (jeremyevans)
670
-
671
- = 2.10.0 (2016-01-15)
672
-
673
- * Do not override existing Content-Type header in json plugin (jeremyevans)
674
-
675
- * Add :content_type option to json plugin to override Content-Type header used (Kyrremann) (#58)
676
-
677
- * Add support for running with --enable-frozen-string-literal on ruby 2.3 (jeremyevans)
678
-
679
- * Add Streaming::Stream#write method so that IO.copy_stream will work (janko-m) (#56)
680
-
681
- = 2.9.0 (2015-12-15)
682
-
683
- * Support passing the content as a string argument instead of a block in the content_for plugin (badosu) (#52)
684
-
685
- = 2.8.0 (2015-11-16)
686
-
687
- * Add multi_view plugin for easily setting up routing for rendering multiple views (jeremyevans)
688
-
689
- * Make content_for plugin work with haml and potentially other non-erb template engines (plukevdh) (#50)
690
-
691
- = 2.7.0 (2015-10-13)
692
-
693
- * Add run_handler plugin for modifying rack response arrays when using r.run, and continuing routing for 404 responses (jeremyevans)
694
-
695
- * Add response_request plugin allowing response object access to request object (jeremyevans)
696
-
697
- * Add default_status plugin for overriding the default response status (celsworth) (#47)
698
-
699
- * Make RodaCache synchronize access on MRI (jeremyevans)
700
-
701
- * Support opts[:host_matcher_captures] = true to make :host=>/regexp/ matcher yield captures in the header_matchers plugin (jeremyevans)
702
-
703
- * Allow Roda.rewrite_path to take a block in the path_rewriter plugin (Freaky) (#45)
704
-
705
- = 2.6.0 (2015-09-14)
706
-
707
- * Add :params and :params! matchers to param_matchers plugin (jeremyevans)
708
-
709
- * Merge options when loading csrf plugin multiple times (jeremyevans)
710
-
711
- * Allow request.halt to work in before hooks in the hooks plugin (celsworth) (#38)
712
-
713
- = 2.5.1 (2015-08-13)
714
-
715
- * Allow multi_route and middleware plugins to work together (janko-m) (#36)
716
-
717
- = 2.5.0 (2015-07-14)
718
-
719
- * Make :by_name option to path plugin default to true in development (jeremyevans)
720
-
721
- * Add :cache_class option to render plugin, for customized template cache behavior (celsworth) (#34)
722
-
723
- * Add :compiled_asset_host option to assets plugin, to use a host for compiled assets (jeremyevans)
724
-
725
- * Allow r.multi_run to take a block that is called with the prefix before dispatching to the rack app (mikz) (#32)
726
-
727
- = 2.4.0 (2015-06-15)
728
-
729
- * Add websockets plugin, for integration with faye-websocket (jeremyevans)
730
-
731
- * Add status_handler plugin, similar to not_found but for any status code (celsworth) (#29)
732
-
733
- * Support Closure Compiler, Uglifier, and MinJS for compressing javascript in the assets plugin (jeremyevans)
734
-
735
- * Make Roda.plugin always return nil (jeremyevans)
736
-
737
- * Add :gzip option to assets plugin (jeremyevans)
738
-
739
- = 2.3.0 (2015-05-13)
740
-
741
- * Make assets plugin work better with json plugin when r.assets is the last method called in a route block (jeremyevans) (#27)
742
-
743
- * Support no_mail! method in the mailer plugin, for skipping an email (jeremyevans)
744
-
745
- * Add precompile_templates plugin, for saving memory when using a forking webserver (jeremyevans)
746
-
747
- * Document how to allow per-branch HTML escaping of <%= %> in the view_options plugin (jeremyevans)
748
-
749
- * Add :include_request option to json and json_parser plugins to include request in :serializer/:parser call (janko-m) (#26)
750
-
751
- * Optimize template cache lookup in render plugin when :cache_key is given (jeremyevans)
752
-
753
- * Add :engine_opts option to render plugin, for specifying per-template engine options (jeremyevans)
754
-
755
- * The render plugin and render/view :ext option is now replaced by the :engine option (jeremyevans)
756
-
757
- * Add path_rewriter plugin, for rewriting paths before routing (jeremyevans)
758
-
759
- * Add :cache_key option to render/view to explicitly set the template cache key (jeremyevans)
760
-
761
- * Don't cache templates if :template_block is given to render/view, unless :cache=>true is used (jeremyevans)
762
-
763
- * Add :cache option to render/view to force caching or not caching the template (jeremyevans)
764
-
765
- * Avoid rehashing hashes at runtime in plugins (jeremyevans)
766
-
767
- * Add heartbeat plugin for heartbeat support (jeremyevans)
768
-
769
- * Support :serializer option in json plugin (janko-m) (#21)
770
-
771
- * Add json_parser plugin, for parsing request bodies in JSON format (jeremyevans)
772
-
773
- = 2.2.0 (2015-04-13)
774
-
775
- * Add :escaper render plugin option to support custom escaping of <%= %> tags when :escape is used (jeremyevans)
776
-
777
- * Add :escape_safe_classes render plugin option, to not escape certain string subclasses when :escape is used (jeremyevans)
778
-
779
- * Split partials method from padrino_render plugin into partials plugin (kematzy) (#19)
780
-
781
- * Add shared_vars plugin, for sharing variables between multiple Roda apps (jeremyevans)
782
-
783
- * Add delay method to chunked plugin, for delaying a block execution until right before content template rendering (jeremyevans)
784
-
785
- * Have default Content-Type header when using the default_headers plugin (jeremyevans)
786
-
787
- * Add :by_name option to the path plugin, for registering classes by name, useful when reloading code (jeremyevans)
788
-
789
- * Add Roda.path_block to get the block related to the given class used for Road#path (jeremyevans)
790
-
791
- * Make Roda#path work correctly in subclasses (jeremyevans)
792
-
793
- = 2.1.0 (2015-03-13)
794
-
795
- * Have add_file in the mailer plugin support blocks, which are called after the file has been added (jeremyevans)
796
-
797
- * Add append_view_subdir to view_options, for appending to an existing view subdirectory (jeremyevans)
798
-
799
- * Rename view_subdirs plugin to view_options, add support for branch/route specific view/layout options/locals (jeremyevans)
800
-
801
- * Merge :locals set in the render plugin options into :locals provided in call to view/render (jeremyevans)
802
-
803
- * Add support for registering classes in the path plugin for use with Roda#path (jeremyevans)
804
-
805
- * Use :add_script_name app option as default for path method :add_script_name option in path plugin (jeremyevans)
806
-
807
- * Support :add_script_name app option in assets plugin, to prefix URLs with SCRIPT_NAME (jeremyevans)
808
-
809
- * Make r.multi_route in multi_route plugin work without any named routes defined (jeremyevans)
810
-
811
- * Add :static plugin, for more easily serving static files (jeremyevans)
812
-
813
- * Recognize Roda :root option in render and assets plugins (jeremyevans)
814
-
815
- * Make :layout=>false option in render plugin override previous layout template (jeremyevans)
816
-
817
- * Make add_file in the mailer plugin add the files after the email body instead of before (jeremyevans)
818
-
819
- = 2.0.0 (2015-02-13)
820
-
821
- * Allow Roda app to be used as a regular rack app even when using the middleware plugin (jeremyevans)
822
-
823
- * Make render plugin :layout option always be true or false (jeremyevans)
824
-
825
- * Make :layout=>true view option use the default layout (jeremyevans)
826
-
827
- * Make error_handler plugin rescue ScriptError in addition to StandardError (jeremyevans)
828
-
829
- * Make halt plugin integrate with symbol_views, json, and similar plugins (jeremyevans)
830
-
831
- * Add padrino_render plugin, adding render/partial methods that work similar to Padrino (jeremyevans)
832
-
833
- * Add Roda#render_template private method for template rendering, for use by plugins (jeremyevans)
834
-
835
- * Make Roda#initialize take env hash, #call take route_block, remove private #_route (jeremyevans)
836
-
837
- * Remove keep_remaining_path/update_remaining_path private request methods (jeremyevans)
838
-
839
- * Don't modify SCRIPT_NAME/PATH_INFO during routing, merging static_path_info plugin into core (jeremyevans)
840
-
841
- * Remove code deprecated in Roda 1.3.0 (jeremyevans)
842
-
843
- = 1.3.0 (2015-01-13)
844
-
845
- * Make static_path_info plugin restore original SCRIPT_NAME/PATH_INFO before returning from r.run (jeremyevans)
846
-
847
- * Add RodaMajorVersion, RodaMinorVersion, and RodaPatchVersion (jeremyevans)
848
-
849
- * Add delete_empty_headers plugin for deleting response headers that are empty before return response (jeremyevans)
850
-
851
- * Make freeze class method freeze internal data structures to avoid thread safety issues (jeremyevans)
852
-
853
- * Deprecate mutating plugin option hashes for chunked, default_headers, error_email, json, and render plugins (jeremyevans)
854
-
855
- * Fix subclassing app and using r.multi_run in subclass in multi_run plugin (jeremyevans)
856
-
857
- * Support :classes option in json plugin to set the classes to use (jeremyevans)
858
-
859
- * Improve performance in default_headers plugin by not duping the headers (jeremyevans)
860
-
861
- * Use :template_opts instead of :opts for providing options to the template in the render plugin (jeremyevans)
862
-
863
- * Support :match_header_yield Roda option in the header_matchers plugin, causing the :header match to yield the value (jeremyevans)
864
-
865
- * Move :param and :param! hash matchers to the param_matchers plugin (jeremyevans)
866
-
867
- * Add path_matchers plugin, for :extension, :prefix, and :suffix hash matchers (jeremyevans)
868
-
869
- * Move Roda.hash_matcher to hash_matcher plugin (jeremyevans)
870
-
871
- * Move Roda.request_module and .response_module to module_include plugin (jeremyevans)
872
-
873
- * Move RodaResponse#set_cookie and #delete_cookie to cookies plugin (jeremyevans)
874
-
875
- * Deprecate RodaRequest#full_path_info, use #path instead (jeremyevans)
876
-
877
- * Add class_delegate to the delegate plugin (jeremyevans)
878
-
879
- * Make not_found plugin clear headers for response if it is not found (jeremyevans)
880
-
881
- * Make error_handler plugin use a new response instead of reusing existing response (jeremyevans)
882
-
883
- * Make RodaResponse a subclass of Object instead of Rack::Response (jeremyevans)
884
-
885
- = 1.2.0 (2014-12-17)
886
-
887
- * Don't override explicit nil :default_encoding template option in the render plugin (jeremyevans)
888
-
889
- * Add remaining_path and matched_path request methods (jeremyevans)
890
-
891
- * Add slash_path_emty plugin, for considering a path of "/" as empty when doing a terminal match (jeremyevans)
892
-
893
- * Remove def_verb_method request class method (jeremyevans)
894
-
895
- * Support :add_script_name, :name, :url, and :url_only options when creating named paths in the path plugin (jeremyevans)
896
-
897
- * Add match_affix plugin, for overriding default prefix/suffix used in match patterns (jeremyevans)
898
-
899
- * Add empty_root plugin, for making root matcher also match empty string (jeremyevans)
900
-
901
- * Add roda_class instance methods to RodaRequest and RodaResponse, to DRY up plugin code (jeremyevans)
902
-
903
- * Add sinatra_helpers plugin, porting Sinatra::Helpers methods not covered by other plugins (jeremyevans)
904
-
905
- * Don't set the default headers until the response is finished (jeremyevans)
906
-
907
- * Add RodaRequest#default_redirect_status, so plugins can override the default status used for redirects (jeremyevans)
908
-
909
- * Add drop_body plugin, for automatically dropping body and Content-{Length,Type} headers based on response status (jeremyevans)
910
-
911
- * Add clear_middleware! class method, for clearing the current middleware (jeremyevans)
912
-
913
- * Add inherit_middleware class accessor, allowing users to turn off middleware inheritance (jeremyevans)
914
-
915
- * Add multi_run plugin, for dispatching to multiple rack applications based on the request path prefix (jeremyevans)
916
-
917
- * Add environments plugin, for handling development/test/production environments (jeremyevans)
918
-
919
- * Do not cache templates by default if RACK_ENV is development (jeremyevans)
920
-
921
- * Add delay_build plugin, to delay building the rack app until Roda.app is called (jeremyevans)
922
-
923
- * Add :user_agent hash matcher to the header_matchers plugin (jeremyevans)
924
-
925
- * Fix caching of templates in the render plugin when :opts or :template_class is used (jeremyevans)
926
-
927
- * Require loading the render plugin again if you want to change the default layout (jeremyevans)
928
-
929
- * Pass :css_opts and :js_opts as template options (via :opts) instead of render options when rendering (jeremyevans)
930
-
931
- * Only pass :opts hash to template class during rendering, instead of all render/view options (jeremyevans)
932
-
933
- * Support :template_class option in the render plugin for overriding template class to use (jeremyevans)
934
-
935
- * Automatically dup unfrozen Array/Hash opts values when subclassing (jeremyevans)
936
-
937
- * Add named_templates plugin, for creating inline templates by name, instead of storing them in the file system (jeremyevans)
938
-
939
- * Support :template option in for render/view to specify template to use, instead of requiring separate argument (jeremyevans)
940
-
941
- * Add class_level_routing plugin, for a DSL similar to Sinatra (jeremyevans)
942
-
943
- * Make RodaRequest.consume_pattern not capture pattern by default (jeremyevans)
944
-
945
- * Add static_path_info plugin, making Roda not modify PATH_INFO or SCRIPT_NAME during routing (jeremyevans)
946
-
947
- * Use local/instance variable lookups instead of method calls to improve performance (jeremyevans)
948
-
949
- * Add RodaRequest#session, and have #session delegate to that (jeremyevans)
950
-
951
- * Add delegate plugin, for easily creating methods that delegate to request or response (jeremyevans)
952
-
953
- * Add mailer plugin, allowing use of a routing tree for email instead of web responses (jeremyevans)
954
-
955
- = 1.1.0 (2014-11-11)
956
-
957
- * Add assets plugin, for rendering assets on the fly, or compiling them to a single compressed file (cj, jeremyevans) (#5)
958
-
959
- * Make InstanceMethods in plugins not include constants, as they would pollute the constant namespace (jeremyevans)
960
-
961
- * Make response.finish add the Content-Length header, not response.write (jeremyevans)
962
-
963
- * Add response.finish_with_body to override response body used (jeremyevans)
964
-
965
- * Use allocate instead of new in rack app (jeremyevans)
966
-
967
- * Add chunked plugin, for easy streaming of template responses using Transfer-Encoding: chunked (jeremyevans)
968
-
969
- * Add namespace support to the multi_route plugin, to support more complex applications (jeremyevans)
970
-
971
- * Make r.multi_route use named route return value if not passed a block (jeremyevans)
972
-
973
- * Make r.multi_route prefer longer route if multiple routes have the same prefix (jeremyevans)
974
-
975
- * Add caching plugin, for handling http caching (jeremyevans)
976
-
977
- * Support adding middleware after the route block has been added (jeremyevans)
978
-
979
- * Allow Roda subclasses to use route block from superclass (jeremyevans)
980
-
981
- * Have r.multi_route ignore non-String named routes (jeremyevans)
982
-
983
- * Pick up newly added named routes while running in the multi_route plugin, useful for development (jeremyevans)
984
-
985
- * Add path plugin, for named path support (jeremyevans) (#4)
986
-
987
- * Add error_email plugin, for easily emailing an error notification for an exception (jeremyevans)
988
-
989
- = 1.0.0 (2014-08-19)
990
-
991
- * Don't have :extension hash matcher force a terminal match (jeremyevans)
992
-
993
- * Add :content option to view method in render plugin to use given content instead of rendering a template (jeremyevans)
994
-
995
- * Add :escape option to render plugin for using erb templates where <%= %> escapes and <%== %> does not (jeremyevans)
996
-
997
- * Make multi_route plugin route("route_name") method a request method instead of an instance method (jeremyevans)
998
-
999
- * Add r.multi_route method to multi_route plugin, for dispatching to named route based on first segment in path (jeremyevans)
1000
-
1001
- * Allow non-GET requests to use r.redirect with no argument, redirecting to current path (jeremyevans)
1002
-
1003
- * Add head plugin, for handling HEAD requests like GET requests with an empty body (jeremyevans)
1004
-
1005
- * Optimize consuming patterns by using a positive lookahead assertion (jeremyevans)
1006
-
1007
- * Add not_allowed plugin, for automatically returning 405 Method Not Allowed responses (jeremyevans)
1008
-
1009
- * Optimize match blocks with no arguments (jeremyevans)
1010
-
1011
- * Add content_for plugin, for storing content in one template and retrieving it in another (jeremyevans)
1012
-
1013
- * Add render_each plugin, for rendering a template for each value in an enumerable (jeremyevans)
1014
-
1015
- * Add backtracking_array plugin, allowing array matchers to backtrack if later matchers do not match (jeremyevans)
1016
-
1017
- * Add :all hash matcher, allowing array matchers to include conditions where you want to match multiple conditions (jeremyevans)
1018
-
1019
- * Add json plugin, allowing match blocks to return arrays/hashes, returning JSON (jeremyevans)
1020
-
1021
- * Add view_subdirs plugin, for setting a subdirectory for views on a per-request basis (jeremyevans)
1022
-
1023
- * Allow default halt method to take no arguments, and use the current response (jeremyevans)
1024
-
1025
- * Add symbol_views plugin, allowing match blocks to return a template name symbol (jeremyevans)
1026
-
1027
- * Add per_thread_caching plugin, for using separate caches per thread instead of shared thread-safe caches (jeremyevans)
1028
-
1029
- * Add hash_matcher class method, for easily creating hash match methods (jeremyevans)
1030
-
1031
- * Add symbol_matchers plugin, for using symbol-specific matching regexps (jeremyevans)
1032
-
1033
- * Add csrf plugin for csrf protection using rack_csrf (jeremyevans)
1034
-
1035
- * Optimize r.is, r.get, r.post and similar methods by reducing the number of Array objects created (jeremyevans)
1036
-
1037
- * Support RequestClassMethods and ResponseClassMethods in plugins (jeremyevans)
1038
-
1039
- * Add Roda::RodaCache for a thread safe cache, currently used for match patterns, templates, and plugins (jeremyevans)
1040
-
1041
- * Optimize matching by caching consume regexp for strings, regexp, symbol, and :extension matchers (jeremyevans)
1042
-
1043
- * Add r.root for GET / requests, for easier to read version of r.get "" (jeremyevans)
1044
-
1045
- * Optimize r.is terminal matcher, remove :term hash matcher (jeremyevans)
1046
-
1047
- * Make flash plugin no longer depend on sinatra-flash (jeremyevans)
1048
-
1049
- * Move version file to roda/version so it can be required separately without loading dependencies (jeremyevans)
1050
-
1051
- = 0.9.0 (2014-07-30)
501
+ === Older
1052
502
 
1053
- * Initial public release
503
+ See doc/CHANGELOG.old
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014-2021 Jeremy Evans
1
+ Copyright (c) 2014-2022 Jeremy Evans
2
2
  Copyright (c) 2010-2014 Michel Martens, Damian Janowski and Cyril David
3
3
  Copyright (c) 2008-2009 Christian Neukirchen
4
4
 
@@ -0,0 +1,20 @@
1
+ = New Features
2
+
3
+ * The typecast_params plugin now supports a :date_parse_input_handler
4
+ option that will be called with all input that will be passed to
5
+ the date parsing methods. You can use this option to automatically
6
+ truncate input, if that is perferable to raising an error (which is
7
+ how recent versions of Ruby handle too-long input).
8
+
9
+ = Other Improvements
10
+
11
+ * The path helper methods added by the path plugin now support
12
+ blocks that use keyword arguments on Ruby 3+.
13
+
14
+ * The assets plugin now uses OpenSSL::Digest instead of Digest (if
15
+ available) for calculating SRI digests. This is faster on Ruby 3+,
16
+ where Digest no longer uses the faster OpenSSL::Digest automatically
17
+ if available.
18
+
19
+ * Roda.freeze now returns self when the multi_route plugin is used.
20
+ This was broken (not returning self) starting in 3.48.0.
@@ -0,0 +1,14 @@
1
+ = New Features
2
+
3
+ * An additional_view_directories plugin has been added, which allows
4
+ you to specify additional directories to look in for templates.
5
+ If the template path does not exist when using the default view
6
+ directory, then each additional view directory will be checked,
7
+ returning the first path that exists:
8
+
9
+ plugin :additional_view_directories, ['admin_views', 'public_views']
10
+
11
+ = Other Improvements
12
+
13
+ * The indifferent_params plugin now avoids a deprecation warning when
14
+ using the rack main branch, which will become Rack 3.