forked from mojolicious/mojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChanges
3481 lines (3131 loc) · 137 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
3.96 2013-04-19
- Updated jQuery to version 2.0.
- Updated prettify.js to version 4-Mar-2013.
- Improved default descriptions in Test::Mojo.
- Improved documentation.
- Improved tests.
- Fixed small html_unescape bug in Mojo::Util.
3.95 2013-04-12
- Added finished_ok method to Test::Mojo.
- Removed deprecated slurp_rel_file method from Mojo::Home.
- Removed deprecated html_escape function from Mojo::Util.
- Improved Mojo::Transaction::WebSocket with support for status codes and
reasons.
- Improved documentation. (jberger, sri)
- Improved tests.
- Fixed message size limit bug in Mojo::Transaction::WebSocket.
- Fixed a few small timing bugs in Mojo::Server::Daemon.
- Fixed small description bug in Test::Mojo.
3.94 2013-04-08
- Added is_hidden method to Mojolicious::Routes.
- Removed deprecated start method from Mojolicious::Commands.
- Improved documentation.
- Improved tests.
- Fixed small selector bug in get command.
- Fixed small anchor bug in Mojolicious::Plugin::PODRenderer.
3.93 2013-04-05
- Deprecated Mojo::IOLoop::Delay::end in favor of generated callbacks.
- Improved Mojo::IOLoop::Delay to be able to generate callbacks that can
capture all arguments.
- Improved prefork command to allow -a and -L values below 1 second.
- Improved documentation.
- Improved tests.
- Fixed multiple timing bugs in Mojo::IOLoop::Delay.
3.92 2013-04-03
- Added monotonic clock support to make Mojolicious more resilient to time
jumps.
- Added steady_time function to Mojo::Util.
- Removed deprecated namespace method from Mojolicious::Routes.
- Removed deprecated base_tag helper.
- Improved WebSocket send method to stringify objects. (jberger)
- Improved version command to show required versions of optional
dependencies.
- Improved documentation.
- Improved tests.
- Fixed RFC 6901 compliance of Mojo::JSON::Pointer. (jberger, sri)
- Fixed a few small Unicode bugs in get command.
3.91 2013-03-17
- Improved bad charset handling in Mojo::DOM::HTML.
- Improved documentation.
- Improved tests.
- Fixed HTTPS proxy support for blocking requests in Mojo::UserAgent.
- Fixed support for RFC 2817 in Mojo::Message::Request.
- Fixed whitespace bug in Mojo::DOM::HTML.
- Fixed proxy detection bug in get command.
3.90 2013-03-14
- Added direct array access for parsed parameters to Mojo::Parameters.
- Added direct array access for path parts to Mojo::Path.
- Improved dumper helper to sort hash keys.
- Improved documentation.
- Improved tests.
- Fixed bug in Mojo::Headers that prevented multiline headers from being
parsed correctly.
- Fixed multiline header support in hash representation of Mojo::Headers.
- Fixed cloning bug in Mojo::Headers.
3.89 2013-03-04
- Improved documentation.
- Improved tests.
- Fixed installable scripts to not "use lib", which sadly breaks updated
dual-life modules. (jberger, sri)
- Fixed bug preventing delayed normalization for reused Mojo::Path objects.
- Fixed path matching bug in Mojo::Path.
3.88 2013-03-03
- Improved Mojo::Path to delay normalization as long as possible.
- Improved Mojo::Path performance.
- Improved documentation.
- Improved tests.
- Fixed small domain detection bug in Mojo::UserAgent::CookieJar.
3.87 2013-02-23
- Added deprecated function to Mojo::Util. (marcus)
- Removed deprecated render_content helper.
- Improved documentation.
- Improved tests.
3.86 2013-02-22
- Welcome to the Mojolicious core team Joel Berger.
- Improved portability of Mojo::Asset::File tests.
- Improved documentation.
- Improved tests. (jberger, sri)
- Fixed path generation bug in Mojolicious::Routes::Pattern. (jberger)
- Fixed small domain detection bug in Mojo::UserAgent::CookieJar.
(dione, sri)
- Fixed comment lines in Mojo::Template to cover the whole line.
3.85 2013-02-13
- Deprecated Mojo::UserAgent::build_form_tx in favor of
Mojo::UserAgent::build_tx.
- Deprecated Mojo::UserAgent::build_json_tx in favor of
Mojo::UserAgent::build_tx.
- Deprecated Mojo::UserAgent::post_form in favor of Mojo::UserAgent::post.
- Deprecated Mojo::UserAgent::post_json in favor of Mojo::UserAgent::post.
- Deprecated Mojo::UserAgent::Transactor::form in favor of
Mojo::UserAgent::Transactor::tx.
- Deprecated Mojo::UserAgent::Transactor::json in favor of
Mojo::UserAgent::Transactor::tx.
- Deprecated Test::Mojo::post_form_ok in favor of Test::Mojo::post_ok.
- Deprecated Test::Mojo::post_json_ok in favor of Test::Mojo::post_ok.
- Deprecated ojo::f in favor of ojo::p.
- Deprecated ojo::n in favor of ojo::p.
- Added support for pluggable content generators to
Mojo::UserAgent::Transactor. (judofyr, sri)
- Added generators attribute to Mojo::UserAgent::Transactor.
- Added add_generator method to Mojo::UserAgent::Transactor.
- Updated jQuery to version 1.9.1.
- Improved documentation.
- Improved tests.
- Fixed memory leak in development not found page.
- Fixed custom temporary directory bug in Mojo::Asset::File.
3.84 2013-01-30
- Deprecated after_static_dispatch hook in favor of before_routes.
- Added after_static hook.
- Fixed small file descriptor leak in Mojo::UserAgent.
3.83 2013-01-27
- Moved bundled static files to mojo directory.
- Improved documentation.
- Improved tests.
- Fixed small Getopt::Long configuration bug in Mojolicious::Commands.
3.82 2013-01-18
- Improved documentation.
- Fixed Windows bugs in tests. (kmx, sri)
3.81 2013-01-17
- Added modules Mojo::Server::Prefork and Mojolicious::Command::prefork.
- Added lookup method to Mojolicious::Routes.
- Updated jQuery to version 1.9.
- Improved url_for performance significantly.
- Improved Mojo::Server::Hypnotoad to be a small wrapper around
Mojo::Server::Prefork.
- Improved documentation.
- Improved tests.
- Fixed small memory leak in Hypnotoad that only shows when Perl is compiled
with -DPERL_USE_SAFE_PUTENV. (lewoberst)
3.80 2013-01-15
- Deprecated testing WebSocket messages without calling
Test::Mojo::message_ok.
- Deprecated Mojo::Util::html_escape in favor of Mojo::Util::xml_escape.
- Deprecated Mojo::ByteStream::html_escape in favor of
Mojo::ByteStream::xml_escape.
- Deprecated Mojo::Home::slurp_rel_file in favor of Mojo::Util::slurp.
- Added message attribute to Test::Mojo.
- Added json_message_has, json_message_hasnt and message_ok methods to
Test::Mojo.
- Improved documentation.
- Improved tests.
- Fixed support for multi-character entities in Mojo::Util.
3.79 2013-01-13
- Fixed small domain detection bug in Mojo::UserAgent::CookieJar.
3.78 2013-01-13
- Added to_dir method to Mojo::Path.
- Improved documentation.
- Improved tests.
- Fixed domain and path detection bugs in Mojo::UserAgent::CookieJar.
- Fixed IDNA support in Mojo::UserAgent::CookieJar.
3.77 2013-01-12
- Added support for advanced binary WebSocket message tests to Test::Mojo.
- Added binary and text events to Mojo::Transaction::WebSocket.
- Added json_message_is method to Test::Mojo.
- Added j function to Mojo::JSON.
- Updated a few example scripts.
- Improved documentation.
- Improved tests.
- Fixed aliasing bug in Mojo::EventEmitter.
- Fixed WebSocket cookie bug in Mojo::UserAgent.
- Fixed small upgrade bugs in Mojo::UserAgent::Transactor.
3.76 2013-01-10
- Added support for multiple uploads sharing the same name to
Mojo::UserAgent::Transactor.
- Improved performance and memory usage of Mojo::EventEmitter.
- Fixed support for multiple uploads in Mojolicious::Controller.
3.75 2013-01-08
- Added to_route method to Mojo::Path.
- Improved router performance slightly.
- Improved documentation.
- Improved tests.
3.74 2013-01-07
- Improved documentation.
- Improved tests.
- Fixed bug where Mojolicious::Lite applications in modules would generate
the wrong moniker.
3.73 2013-01-06
- Deprecated Mojolicious::Commands::start in favor of
Mojolicious::Commands::start_app.
- Added moniker attribute to Mojolicious.
- Added after_render hook.
- Improved name detection in Mojolicious::Plugin::Config.
- Improved documentation.
- Improved tests.
3.72 2013-01-05
- Deprecated base_tag helper.
- Improved documentation.
3.71 2013-01-02
- Modernized ".travis.yml".
- Improved Mojo::EventEmitter to warn about unhandled error events.
- Improved Mojo::UserAgent to warn more often about failed events.
- Improved monkey_patch to patch multiple functions at once. (jberger)
- Improved documentation.
- Improved tests.
- Fixed small memory leak in Mojo::DOM.
3.70 2012-12-23
- Added accept_interval setting to Hypnotoad.
- Reduced idle CPU usage of Mojo::Reactor::Poll.
- Improved Mojo::Server to die more gracefully if an application class could
not be found.
- Improved documentation.
3.69 2012-12-20
- Deprecated Mojolicious::Routes::namespace in favor of
Mojolicious::Routes::namespaces.
- Added color_field helper to Mojolicious::Plugin::TagHelpers.
- Added date_field helper to Mojolicious::Plugin::TagHelpers.
- Added datetime_field helper to Mojolicious::Plugin::TagHelpers.
- Added email_field helper to Mojolicious::Plugin::TagHelpers.
- Added month_field helper to Mojolicious::Plugin::TagHelpers.
- Added number_field helper to Mojolicious::Plugin::TagHelpers.
- Added range_field helper to Mojolicious::Plugin::TagHelpers.
- Added search_field helper to Mojolicious::Plugin::TagHelpers.
- Added tel_field helper to Mojolicious::Plugin::TagHelpers.
- Added time_field helper to Mojolicious::Plugin::TagHelpers.
- Added url_field helper to Mojolicious::Plugin::TagHelpers.
- Added week_field helper to Mojolicious::Plugin::TagHelpers.
- Improved Mojo::Base to use utf8.
- Improved documentation.
- Improved tests.
3.68 2012-12-16
- Added monkey_patch function to Mojo::Util.
- Added ".travis.yml".
- Modernized ".gitignore".
- Updated jQuery to version 1.8.3.
- Improved documentation.
- Improved tests.
- Converted README to markdown.
- Fixed small export bug in Mojolicious::Lite. (jberger)
3.67 2012-12-15
- Added support for MIME type prioritization to Mojolicious::Types.
- Improved respond_to to prioritize multiple MIME types if the
X-Requested-With header is set to the value "XMLHttpRequest".
- Improved documentation.
3.66 2012-12-14
- Added request_ok method to Test::Mojo.
- Improved documentation.
- Improved tests.
- Fixed multipart boundary detection bug in Mojo::Content.
- Fixed format regex generation bug in Mojolicious::Routes::Pattern.
3.65 2012-12-09
- Added upgrade method to Mojo::UserAgent::Transactor.
- Added is_range method to Mojo::Asset.
- Improved documentation.
- Improved tests.
- Fixed parameter replacement bug in Mojo::Parameters. (alexbyk, sri)
- Fixed small paragraph bug in Mojo::DOM::HTML.
3.64 2012-12-01
- Improved documentation.
- Improved tests.
- Fixed bug where Mojo::UserAgent::Transactor would escape
Content-Disposition values.
3.63 2012-11-28
- Added support for smooth restarting to Morbo.
- Added acceptor method to Mojo::IOLoop.
- Added stop method to Mojo::Server::Daemon.
- Improved memory usage of chunked transfer encoding parser in
Mojo::Content.
- Improved documentation.
- Improved tests.
3.62 2012-11-26
- Improved compatibility with IO::Socket::SSL 1.79.
- Improved encode/decode performance in Mojo::Util by using a cache.
- Improved tests.
- Fixed clone bugs in Mojo::URL.
3.61 2012-11-25
- Added protocol method to Mojo::URL.
- Added charset attribute to Mojo::Path.
- Improved support for relative redirects in Mojo::UserAgent::Transactor.
- Improved documentation.
- Improved tests.
- Fixed clone bugs in Mojo::Parameters and Mojo::URL.
- Fixed case sensitivity bugs in Mojo::UserAgent::Transactor.
3.60 2012-11-22
- Added unexpected event to Mojo::Transaction::HTTP.
- Improved documentation.
- Improved tests.
- Fixed Mojo::UserAgent to ignore unexpected 1xx responses.
3.59 2012-11-20
- Improved tests.
- Fixed memory leak in Mojo::Message::Request.
- Fixed keep-alive bug in Mojo::Server::Daemon.
3.58 2012-11-19
- Improved documentation.
- Improved tests.
- Fixed state bugs in Mojo::Content::MultiPart.
- Fixed Mojo::UserAgent to remove codes from parser errors.
3.57 2012-11-12
- Deprecated Mojo::Exception::raw_message.
- Improved error message accuracy in Mojo::Template by using line
directives.
- Improved performance of contains method in Mojo::Asset::File by 100%.
- Improved documentation.
- Improved tests.
- Fixed range bug in Mojo::Asset::Memory.
3.56 2012-11-09
- Improved performance of contains method in Mojo::Asset::File
significantly.
- Improved documentation.
- Improved tests.
- Fixed offset bug in Mojo::Asset::File.
3.55 2012-11-08
- Added gzip compression support to Mojo::UserAgent.
- Added is_compressed method to Mojo::Content.
- Improved documentation.
- Improved tests.
- Fixed bug that prevented around_dispatch hooks from working correctly in
embedded applications.
- Fixed small bug where "chunked" would not always be the default transfer
encoding.
3.54 2012-11-01
- Added next and previous methods to Mojo::DOM.
- Improved documentation.
- Improved tests.
3.53 2012-10-31
- Replaced Mojolicious::Guides::CodingGuidelines with
Mojolicious::Guides::Contributing.
- Improved documentation.
- Improved tests.
3.52 2012-10-26
- Added boolean shortcut support to Mojo::JSON.
- Added escape attribute to Mojo::Template. (jberger)
- Added max_buffer_size attribute to Mojo::Content.
- Added is_limit_exceeded method to Mojo::Content.
- Improved documentation.
- Improved tests.
3.51 2012-10-23
- Improved documentation.
- Improved tests.
- Fixed multiple small context bugs.
3.50 2012-10-20
- Improved option handling of all commands.
3.49 2012-10-19
- Improved documentation.
- Improved tests.
- Fixed % escaping bug in Mojo::Parameters. (dmw397)
3.48 2012-10-16
- Improved Mojo::Content performance slightly.
- Improved documentation.
- Fixed memory leak in Mojo::Headers.
3.47 2012-10-13
- Added all method to Mojo::UserAgent::CookieJar.
- Improved documentation.
- Fixed WebSocket bug in Mojo::Content.
3.46 2012-10-11
- Improved router and renderer to allow camel case controllers.
- Improved documentation.
3.45 2012-10-10
- Added multi_accept attribute to Mojo::IOLoop.
- Added multi_accept attribute to Mojo::IOLoop::Server.
- Added multi_accept setting to Hypnotoad.
- Relaxed comment handling in Mojo::DOM::HTML a little. (jberger)
- Improved accept performance of all built-in web servers significantly.
- Improved responsiveness of documentation browser.
- Improved documentation browser CSS. (tempire)
- Improved documentation.
- Improved tests.
3.44 2012-09-29
- Improved html_escape to favor lower case entities. (judofyr)
- Improved javascript and stylesheet helpers to not generate type
attributes.
- Improved documentation.
- Improved tests.
3.43 2012-09-22
- Updated jQuery to version 1.8.2.
- Improved Hypnotoad to clean up old PID files containing a 0.
(coffeemonster)
- Improved documentation.
3.42 2012-09-16
- Improved Hypnotoad to clean up old PID files.
- Improved documentation.
- Improved tests.
3.41 2012-09-13
- Improved Mojo::EventEmitter to warn about failed error events.
- Improved resilience of Mojo::IOLoop exception handling.
- Improved tests.
- Fixed small CGI bug.
3.40 2012-09-11
- Improved tests.
- Fixed Perl 5.10.1 compatibility.
- Fixed FindBin support in Mojolicious applications.
- Fixed a few multipart bugs.
3.39 2012-09-10
- Improved Mojo::URL and Mojo::Parameters performance.
- Improved documentation.
- Improved tests.
- Fixed support for query parameters in Mojolicious::Plugin::Charset.
3.38 2012-09-07
- Added xor_encode method to Mojo::ByteStream.
- Added xor_encode function to Mojo::Util.
- Improved documentation.
- Fixed small xor_encode bug. (dod, crab)
3.37 2012-09-04
- Added finish method to Mojo::Message.
- Updated jQuery to version 1.8.1.
- Improved documentation.
- Improved tests.
- Fixed Mojo::Transaction to propagate connection close to Mojo::Message.
- Fixed small state bug in Mojo::Transaction.
3.36 2012-08-30
- Improved documentation.
- Improved tests.
- Fixed small multipart bug.
3.35 2012-08-28
- Deprecated Mojolicious::Controller::render_content in favor of content
helper.
- Improved Mojolicious::Plugin::Config to accept mode specific config files
without a normal config file. (alexbyk, sri)
- Improved documentation.
- Improved tests.
3.34 2012-08-24
- Improved documentation.
3.33 2012-08-23
- Improved Mojo::DOM::HTML to handle bad charsets more gracefully.
- Improved documentation.
- Improved tests.
3.32 2012-08-20
- Added event sequentialization support to delay method in Mojo::IOLoop.
(judofyr, marcus, sri)
- Added support for expiration session value to Mojolicious::Sessions.
- Added steps method to Mojo::IOLoop::Delay. (judofyr, marcus, sri)
- Added tap method to Mojo::Base.
- Added squish method to Mojo::ByteStream.
- Added squish function to Mojo::Util.
- Improved documentation.
- Improved tests.
- Fixed json_has method in Test::Mojo.
- Fixed bug in Mojo::Log that prevented some message events from being
emitted.
- Fixed get command to allow ":" character in header values.
- Fixed small class_to_file bug.
- Fixed a few small namespace handling bugs.
3.31 2012-08-15
- Added accept_charset, accept_encoding, content_encoding, origin and
sec_websocket_extensions methods to Mojo::Headers.
- Improved documentation.
- Improved tests.
3.30 2012-08-14
- Added te method to Mojo::Headers.
- Improved documentation.
- Fixed small content encoding bug in Mojo::Message.
3.29 2012-08-13
- Improved documentation.
- Improved tests.
- Fixed small timing bugs in WebSocket and TLS tests.
3.28 2012-08-10
- Added skip_body attribute to Mojo::Content.
- Added is_empty method to Mojo::Message::Response.
- Updated jQuery to version 1.8.
- Improved Mojo::Base to assign names to generated subroutines.
- Improved message parser performance slightly.
- Improved documentation.
- Improved tests.
- Fixed 1xx, 204 and 304 response support.
3.27 2012-08-09
- Improved documentation.
- Improved tests.
3.26 2012-08-09
- Improved tests.
3.25 2012-08-08
- Improved documentation.
- Fixed cleanup bugs in Mojo::Server::Daemon and Mojo::UserAgent.
3.24 2012-08-08
- Improved documentation.
- Improved tests.
3.23 2012-08-07
- Added appcache MIME type.
- Improved documentation.
3.22 2012-08-06
- Added mp4, ogg, ogv and webm MIME types.
- Removed x- prefix from js and woff MIME types.
- Improved documentation.
- Fixed gz and xml MIME types.
3.21 2012-08-05
- Improved documentation.
- Improved tests.
- Fixed Perl 5.17.3+ compatibility.
- Fixed small AUTOLOAD bug in Mojolicious::Lite.
3.20 2012-08-04
- Added extract_start_line method to Mojo::Message, Mojo::Message::Request
and Mojo::Message::Response.
- Added get_start_line_chunk method to Mojo::Message::Request and
Mojo::Message::Request.
- Improved end method in Mojo::IOLoop::Delay to return the number of
remaining events.
- Improved documentation.
- Improved tests.
3.19 2012-08-03
- Improved documentation.
- Improved tests.
- Fixed dynamic content generation bug in Mojo::Message.
- Fixed bug that prevented multiple anchors with the same name in
Mojolicious::Plugin::PODRenderer.
3.18 2012-08-02
- Improved documentation.
- Improved tests.
- Fixed chunked transfer encoding bug in Mojo::Content.
3.17 2012-08-01
- Improved documentation.
- Improved tests.
- Fixed bug in after_static_dispatch hook that prevented custom responses.
- Fixed bug that prevented conditions from generating responses.
3.16 2012-07-31
- Improved documentation.
- Fixed small memory leak in Mojolicious::Plugin::TagHelpers.
3.15 2012-07-28
- Improved Mojo::Base to load IO::Handle.
- Improved documentation.
3.14 2012-07-27
- Improved documentation.
3.13 2012-07-24
- Added multi name support to param method in Mojolicious::Controller.
- Added remove method to Mojo::DOM.
- Improved RFC 3986 compliance of Mojo::Parameters.
- Improved Mojolicious::Plugin::Config log messages. (jberger)
- Improved documentation.
- Improved tests.
- Fixed selector bug in dom method of Mojo::Message.
- Fixed small charset bug in get command.
3.12 2012-07-20
- Deprecated Mojo::Home::app_class.
- Deprecated Mojo::IOLoop::client_class.
- Deprecated Mojo::IOLoop::server_class.
- Deprecated Mojo::IOLoop::stream_class.
- Deprecated Mojo::Message::dom_class.
- Deprecated Mojo::Message::json_class.
- Added json method to Mojo::UserAgent::Transactor.
- Added build_json_tx and post_json methods to Mojo::UserAgent.
- Added post_json_ok method to Test::Mojo.
- Added n function to ojo.
- Improved text_field helper to always set the type attribute. (marty, sri)
- Improved documentation.
- Improved tests.
- Fixed file and content type detection bugs in Mojolicious::Static.
(marty, sri)
3.11 2012-07-19
- Added or method to Test::Mojo. (moritz, sri)
- Added file and serve_asset methods to Mojolicious::Static.
- Improved default descriptions for many methods in Test::Mojo.
- Improved Mojo::Cache performance. (nic)
- Improved documentation.
- Improved tests.
- Fixed a few small encoding bugs in Test::Mojo.
3.10 2012-07-17
- Improved tests.
- Fixed small bug in Mojo::Asset::File.
3.09 2012-07-16
- Added spurt function to Mojo::Util.
- Added spurt method to Mojo::ByteStream.
- Improved documentation.
- Improved tests.
3.08 2012-07-14
- Fixed small Mojo::Template bug.
3.07 2012-07-13
- Improved template error messages for generator commands and config files.
- Improved documentation.
- Improved tests.
- Fixed small bug in Mojolicious::Plugin::EPRenderer that prevented code to
be added to templates.
- Fixed small bug in Mojolicious::Plugin::JSONConfig that prevented code to
be added to config files.
3.06 2012-07-11
- Added tls_verify option to Mojo::IOLoop::Server::listen. (scottw)
- Added verify parameter to Mojo::Server::Daemon::listen. (scottw)
- Improved documentation.
- Improved tests.
- Fixed small bug in Mojo::UserAgent that prevented port reuse.
3.05 2012-07-08
- Reduced default graceful_timeout from 30 to 20 seconds in
Mojo::Server::Hypnotoad.
- Improved documentation.
- Improved tests.
- Fixed small initialization bug in Mojo::IOLoop::Stream.
3.04 2012-07-07
- Improved Mojo::IOLoop performance by reducing stream timeout precision
from 0.025 to 0.5 seconds.
3.03 2012-07-06
- Improved load balancing between Hypnotoad worker processes.
- Improved Hypnotoad log messages.
- Improved documentation.
- Improved tests.
- Fixed default format handling bug in render_exception and
render_not_found.
- Fixed small namespace detection bug in Mojo::DOM.
- Fixed small session reset bug in Test::Mojo.
3.02 2012-07-03
- Added pluck and uniq methods to Mojo::Collection.
- Added regular expression support to first and grep methods in
Mojo::Collection.
- Improved documentation.
- Improved tests.
- Fixed JSON Pointer escaping.
- Fixed small text and attribute extraction bugs in Mojo::DOM.
- Fixed small inconsistency between routes and static dispatchers.
3.01 2012-07-01
- Improved CSS of built-in templates.
- Improved documentation. (diegok, sri)
3.0 2012-06-25
- Code name "Rainbow", this is a major release.
- Removed Mojolicious::Plugin::I18N so it can be maintained as a separate
distribution.
- Removed app_class attribute from Mojo::Server.
- Removed qp_decode and qp_encode methods from Mojo::ByteStream.
- Removed qp_decode and qp_encode functions from Mojo::Util.
- Removed render_to_file and render_file_to_file methods from
Mojo::Template.
- Renamed Mojo::CookieJar to Mojo::UserAgent::CookieJar.
- Renamed Mojo::Command to Mojolicious::Command.
- Renamed format, reqs, symbol_start and symbols attributes in
Mojolicious::Routes::Pattern to format_regex, constraints,
placeholder_start and placeholders.
- Merged get_all_data and get_data methods from Mojo::Command into data
method in Mojo::Loader.
- Moved class_to_file and class_to_path methods from Mojo::Command to
Mojo::Util.
- Updated IO::Socket::SSL requirement to 1.75 for IO::Socket::IP support.
- Switched back from IO::Socket::INET6 to IO::Socket::IP for IPv6 support.
- Switched from HMAC-MD5 to HMAC-SHA1 for signed cookies.
- Added slurp function to Mojo::Util.
- Added slurp method to Mojo::ByteStream.
- Added j and r functions to ojo. (sharifulin, sri)
- Added accept_interval attribute to Mojo::IOLoop.
- Added support for new HTTP status code.
- Modernized ".perltidyrc".
- Improved Mojo::IOLoop::Server to prioritize RC4 cipher, which mitigates
the BEAST attack. (Danny Thomas)
- Improved not found page to highlight custom route names.
- Improved to method in Mojolicious::Routes::Route to give easier access to
default parameters.
- Improved message parser performance slightly.
- Improved documentation. (ichesnokov, sri)
- Improved tests.
- Fixed bug that prevented sessions from working in embedded applications.
- Fixed JSON Pointer escaping.
- Fixed small JSON Pointer bug in get command. (avkhozov)
- Fixed small application initialization bug in Mojo::Server.
2.98 2012-05-30
- Switched from IO::Socket::IP to IO::Socket::INET6 for IPv6 support.
- Improved IPv6 exception handling in Mojo::IOLoop::Client.
- Improved documentation.
- Improved tests.
- Fixed array appending bug in Mojo::Parameters.
2.97 2012-05-28
- Added workaround to make IO::Socket::SSL work with IO::Socket::IP.
- Removed Bonjour support.
- Improved documentation.
- Improved tests.
- Fixed bug that prevented Test::Mojo from working with normal Mojolicious
applications that use Mojolicious::Plugin::Config.
- Fixed a few small Unicode bugs in documentation.
2.96 2012-05-21
- Added merge method to Mojo::Path.
- Improved documentation.
- Improved tests.
- Fixed small memory leak in Mojolicious.
- Fixed small bug that prevented already prepared IO::Socket::SSL handles to
be used by Mojo::UserAgent.
- Fixed small Mojo::URL and Mojo::Path stringification bugs.
2.95 2012-05-10
- Improved documentation.
- Fixed bug that caused inactivity timeouts to be logged too often.
2.94 2012-05-09
- Added support for 308 redirects to Mojo::UserAgent.
- Added support for new HTTP status codes.
- Improved exception handling of all scripts.
- Improved built-in web servers to log inactivity timeouts as debug messages
instead of errors.
- Improved documentation.
- Fixed html_escape to always use entities with semicolon. (OlegG, crab)
- Fixed typo in 414 status message.
- Fixed small cookie formatting bug.
- Fixed small bug in cookie parser.
- Fixed small backlog bug in Mojo::Server::Daemon.
2.93 2012-05-05
- Added remove method to Mojolicious::Routes::Route.
- Improved 32bit Perl support of Mojo::Transaction::WebSocket.
(mikemagowan, sri)
- Improved exception handling of application and config file loaders.
- Improved exception handling of Mojolicious::Plugin::I18N.
- Improved renderer log messages.
- Improved documentation.
- Improved tests.
- Fixed bug that prevented helper names from starting with "end". (Akron)
- Fixed bug that prevented helper names from ending with "begin".
- Fixed empty frame handling in Mojo::Transaction::WebSocket.
- Fixed small rendering bug in Mojolicious::Plugin::PODRenderer.
- Fixed small code generation bug in Mojolicious::Plugin::I18N.
- Fixed small escaping bug in Mojo::URL.
2.92 2012-04-30
- Added commands attribute to Mojolicious.
- Improved documentation.
- Improved tests.
- Fixed attribute namespace selector bugs in Mojo::DOM::CSS.
2.91 2012-04-26
- Added cookies method to Mojo::Message.
- Updated HTML5 entities in Mojo::Util.
- Improved documentation.
2.90 2012-04-25
- Fixed small JavaScript bug in Mojolicious::Plugin::PODRenderer.
2.89 2012-04-24
- Made logo on built-in templates smaller.
- Improved CSS of built-in templates.
- Improved documentation.
- Improved tests.
2.88 2012-04-24
- Improved documentation.
- Improved tests.
2.87 2012-04-23
- Improved html_escape performance and added pattern support.
- Improved documentation.
- Improved tests.
- Fixed small escaping bug.
2.86 2012-04-23
- Added support for TO_JSON method to Mojo::JSON.
- Updated HTML5 entities in Mojo::Util.
- Increased default heartbeat_timeout from 10 to 20 seconds in
Mojo::Server::Hypnotoad.
- Improved Mojo::Template exception handling.
- Improved ojo exception handling.
- Improved documentation.
- Improved tests.
- Fixed a few HTML5 unescaping bugs.
2.85 2012-04-19
- Modernized ".perltidyrc".
- Improved documentation. (diegok, sri)
- Fixed bug in "user_agent.t".
2.84 2012-04-19
- Improved documentation.
- Improved tests.
- Fixed flash.
2.83 2012-04-18
- Added hostname verification support to Mojo::IOLoop::Client and
Mojo::UserAgent.
- Added SNI support to Mojo::IOLoop::Client and Mojo::UserAgent.
- Improved documentation.
- Fixed bug that prevented conditions to work in embedded applications.
- Fixed bug that changed default values in embedded applications.
- Fixed small bug in cpanify command.
2.82 2012-04-16
- Deprecated relaxed placeholders "/(.foo)" in favor of "/#foo".
- Deprecated Mojolicious::Routes::Route::waypoint.
- Deprecated Mojolicious::Routes::Route::block.
- Improved Mojolicious::Routes::Pattern to render formats.
- Improved regex formatting in routes command.
- Improved documentation.
- Improved tests.
2.81 2012-04-15
- Improved router to allow disabled format detection to be inheritable by
nested routes.
- Improved error handling in Mojolicious::Plugin::JSONConfig.
- Improved match method in Mojolicious::Routes::Pattern to support format
detection.
- Improved router log messages.
- Improved all debug messages.
- Improved documentation.
- Improved tests.
- Fixed format detection bugs in Mojolicious::Routes::Pattern.
- Fixed format handling in routes command.
2.80 2012-04-10
- Added support for alternative MIME types to Mojolicious::Types.
- Added endpoint method to Mojo::UserAgent::Transactor.
- Improved tests.
- Fixed HTTPS proxy keep-alive bug in Mojo::UserAgent.
2.79 2012-04-10
- Improved makefile and plugin generators to always use the latest
Mojolicious version.
- Improved documentation.
- Improved tests.
- Fixed HTTPS proxy support in Mojo::UserAgent.
- Fixed multiple Mojo::UserAgent::Transactor bugs.
2.78 2012-04-09
- Improved Mojolicious::Routes to allow redispatching controllers.
- Improved Mojolicious::Routes logging.
- Improved documentation.
2.77 2012-04-09
- Improved Mojo::Transaction::WebSocket to allow custom message parsers.
- Improved help command to be less strict.
- Improved documentation. (tempire, sri)
- Improved tests.
- Fixed bug that prevented --help and -h flags from working for generator
commands.
- Fixed small bug that prevented non-string secrets in Mojolicious.
2.76 2012-04-05
- Improved documentation.
2.75 2012-04-05
- Improved documentation.
- Improved tests.
- Fixed small bug in params method of Mojo::Parameters.
2.74 2012-04-04
- Improved documentation.
- Improved tests.
- Fixed multiple small bugs in form method of Mojo::UserAgent::Transactor.
2.73 2012-04-03
- Improved documentation.
- Improved tests.
- Fixed multiple progress event bugs in Mojo::Message.
2.72 2012-04-03
- Added kept_alive method to Mojo::Transaction::WebSocket.
- Improved documentation.
2.71 2012-04-03
- Improved Hypnotoad error handling.
- Improved version command to detect proxy servers automatically.
- Improved documentation.
- Improved tests.
- Fixed small argument bug in to_hash method of Mojo::Headers.
2.70 2012-03-30
- Improved speed of version command by switching to the MetaCPAN API.
- Improved all bundled TLS test certificates to expire at the same time.
- Improved documentation.
- Improved tests.
- Fixed handler detection precedence bug in Mojolicious::Renderer.
- Fixed ability to disable inactivity timeout in Hypnotoad.
- Fixed ability to disable accepts limit in Hypnotoad.
- Fixed small bug in get_all_data method of Mojo::Command.
- Fixed small bug in inflate command. (memowe)
2.69 2012-03-26
- Removed X-Forwarded-Host support since it is redundant for well
configured reverse proxies.
- Changed number of redirects ojo and the get command will follow to 10.
- Improved ojo to detect proxy servers automatically.
- Improved Mojo::DOM::CSS performance.
- Improved documentation.
- Improved Mojo::Reactor tests to be less strict.
- Fixed a bug where paths and classes in Mojolicious::Static and
Mojolicious::Renderer would have the wrong precedence.
- Fixed small bug where Hypnotoad would ignore the MOJO_REVERSE_PROXY
environment variable.
2.68 2012-03-24
- Improved documentation.
- Fixed generate command.
2.67 2012-03-24
- Added start_app method to Mojo::Command.
- Improved documentation.
- Improved tests.
- Fixed small bugs in Mojo::Command and Mojolicious::Commands.
2.66 2012-03-23
- Reformatted "Changes".
- Improved Mojo::Reactor::Poll performance.
- Improved tests.
- Fixed one_tick semantics to be equal in Mojo::Reactor::Poll and
Mojo::Reactor::EV.
2.65 2012-03-22
- Deprecated Mojo::IOLoop::drop in favor of Mojo::IOLoop::remove.
- Renamed Mojo::Reactor::drop to Mojo::Reactor::remove.
- Added Mojo::Reactor::Poll.
- Added one_tick method to Mojo::Reactor and Mojo::Reactor::EV.
- Removed experimental status from Mojo::IOLoop::Client.
- Removed experimental status from Mojo::IOLoop::Server.
- Removed experimental status from Mojo::IOLoop::Stream.
- Removed experimental status from Mojo::Reactor.
- Removed experimental status from Mojo::Reactor::EV.
- Removed experimental status from client_class, max_accepts, reactor,
server_class and stream_class attributes in Mojo::IOLoop.
- Removed experimental status from client server and stream methods in
Mojo::IOLoop.
- Updated jQuery to version 1.7.2.
- Improved documentation.
- Improved tests.
2.64 2012-03-21
- Deprecated Mojolicious::Routes::controller_base_class in favor of