forked from mojolicious/mojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChanges
3188 lines (2871 loc) · 126 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.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
Mojolicious::Routes->base_classes.
- Removed handle argument from io watchers in Mojo::Reactor.
- Improved documentation.
2.63 2012-03-20
- Renamed Mojo::IOWatcher to Mojo::Reactor.
- Added Mojolicious::Routes::Route.
- Added find and root methods to Mojolicious::Routes::Route.
- Improved form_for helper to automatically add method="POST" attributes
when necessary.
- Improved memory usage of Mojolicious::Routes.
- Improved Mojolicious::Renderer performance.
- Improved documentation.
- Improved tests.
- Fixed bug that slowed down Mojolicious::Renderer.
- Fixed small newline capture bug in Mojolicious::Routes::Match.
2.62 2012-03-17
- Deprecated Mojolicious::Renderer->default_template_class in favor of
Mojolicious::Renderer->classes.
- Deprecated Mojolicious::Static->default_static_class in favor of
Mojolicious::Static->classes.
- Added options function to Mojolicious::Lite.
- Added options method to Mojolicious::Routes.
- Added options method to Mojo::UserAgent.
- Added options_ok method to Test::Mojo.
- Added o function to ojo.
- Removed experimental status from Mojo::Cache.
- Removed experimental status from Mojo::DOM::CSS.
- Removed experimental status from Mojo::DOM::HTML.
- Removed experimental status from Mojo::Server::Morbo.
- Removed experimental status from Mojo::Transaction::WebSocket.
- Removed experimental status from Mojo::UserAgent::Transactor.
- Removed experimental status from Mojolicious::Command::cpanify.
- Removed experimental status from upgrade event in
Mojo::Transaction::HTTP.
- Removed experimental status from t helper in
Mojolicious::Plugin::TagHelpers.
- Removed experimental status from current_route and url_with helpers in
Mojolicious::Plugin::DefaultHelpers.
- Removed experimental status from websocket function in Mojolicious::Lite.
- Removed experimental status from cache attribute in
Mojolicious::Renderer.
- Removed experimental status from format attribute in
Mojolicious::Routes::Pattern.
- Removed experimental status from ca and local_address,
request_timeout and transactor attributes in Mojo::UserAgent.
- Removed experimental status from cache attribute in Mojolicious::Routes.
- Removed experimental status from send method in Mojolicious::Controller.
- Removed experimental status from finish_ok, message_is, message_isnt,
message_like, message_unlike, send_ok and websocket_ok methods in
Test::Mojo.
- Removed experimental status from detect method in Mojolicious::Types.
- Removed experimental status from app_url, build_websocket_tx and
websocket methods in Mojo::UserAgent.
- Removed experimental status from emit_safe method in Mojo::EventEmitter.
- Removed experimental status from to_psgi_app method in
Mojo::Server::PSGI.
- Removed experimental status from clone method in Mojo::Message::Request.
- Removed experimental status from has_conditions, has_custom_name,
has_websocket, is_websocket and websocket methods in Mojolicious::Routes.
- Removed experimental status from clone, is_limit_exceeded and
max_line_size methods in Mojo::Headers.
- Removed experimental status from text_after, text_before and xml
methods, as well as trim arguments in Mojo::DOM.
- Removed experimental status from boundary, charset, clone, is_dynamic,
progress and max_leftover_size methods in Mojo::Content.
- Removed experimental status from clone method in
Mojo::Content::MultiPart.
- Removed experimental status from clone method in Mojo::Content::Single.
- Removed experimental status from is_dynamic, is_limit_exceeded and
max_line_size methods in Mojo::Message.
- Improved Mojo::IOWatcher exception handling a little.
- Improved Mojolicious::Routes logging.
- Improved documentation.
- Improved tests.
- Fixed port generation bug. (xaka)
- Fixed IPv6 listen value bug in Mojo::Server::Daemon.
2.61 2012-03-14
- Merged Mojolicious exception handling into the around_dispatch hook, this
will allow a whole new category of exception handling plugins.
- Improved documentation.
2.60 2012-03-13
- Added EXPERIMENTAL current_route helper to
Mojolicious::Plugin::DefaultHelpers.
- Made text_area helper a little smarter. (sshaw, sri)
- Improved inactivity timeout logging for WebSockets.
- Improved documentation.
- Improved tests.
- Fixed escaping bug in select_field and text_area helpers.
- Fixed Windows bug in "asset.t".
2.59 2012-03-09
- Removed duplicate 2.58 directory.
2.58 2012-03-09
- Added support for MOJO_LISTEN environment variable.
- Removed listen attribute from Mojo::Server::Morbo.
- Improved event loop compatibility of Mojo::Server::PSGI.
- Improved documentation.
- Improved tests.
- Fixed Mojo::URL object handling bug in url_for.
- Fixed bug in Hypnotoad that prevented disabling of reverse proxy support
between zero downtime software upgrades.
- Fixed small caching bug in Morbo file watcher.
- Fixed Windows bug in "asset.t".
2.57 2012-03-03
- Replaced protection from excessively large form values in Mojo::Message
with documentation.
- Improved documentation.
2.56 2012-03-01
- Deprecated custom HTTPS listen values in favor of URLs for all built-in
web servers.
https://*:3000:/x/server.crt:/y/server.key:/z/ca.crt
becomes
https://*:3000?cert=/x/server.crt&key=/y/server.key&ca=/z/ca.crt
- Removed experimental status from patch function in Mojolicious::Lite.
- Removed experimental status from patch method in Mojolicious::Routes.
- Removed experimental status from patch method in Mojo::UserAgent.
- Removed experimental status from patch_ok method in Test::Mojo.
- Removed experimental status from t function in ojo.
- Improved documentation.
- Fixed small inconsistency between Mojo::IOWatcher and Mojo::IOWatcher::EV
where Mojo::IOWatcher wouldn't stop automatically when not watching for
events anymore.
- Fixed Mojo::IOLoop to clean up after itself.
2.55 2012-02-28
- Combined WebSocket timeout with normal inactivity timeout.
- Improved documentation.
2.54 2012-02-27
- Deprecated class and method stash values in favor of controller and
action.
- Added EXPERIMENTAL patch function to Mojolicious::Lite.
- Added EXPERIMENTAL patch method to Mojolicious::Routes.
- Added EXPERIMENTAL patch method to Mojo::UserAgent.
- Added EXPERIMENTAL patch_ok method to Test::Mojo.
- Added EXPERIMENTAL t function to ojo.
- Added support for MOJO_CONNECT_TIMEOUT, MOJO_INACTIVITY_TIMEOUT,
MOJO_REQUEST_TIMEOUT and MOJO_WEBSOCKET_TIMEOUT environment
variables.
- Split up Mojolicious::Guides::Cheatsheet into more reference
documentation.
- Increased default connect timeout from 3 to 10 seconds in Mojo::UserAgent
and Mojo::IOLoop::Client.
- Improved resilience of Mojo::IOLoop::Stream.
- Improved test command to colorize by default.
- Improved documentation.
- Fixed small rendering bug in Mojolicious::Plugin::PODRenderer.
2.53 2012-02-25
- Improved Hypnotoad with many info level log messages.
- Improved resilience of Mojo::IOLoop::Stream.
- Improved documentation.
- Fixed Hypnotoad upgrade timeout bug.
2.52 2012-02-24
- Removed experimental status from config method in Mojo.
- Renamed send_message method in Mojolicious::Controller to send.
- Renamed send_message_ok method in Test::mojo to send_ok.
- Renamed to_psgi method in Mojo::Server::PSGI to to_psgi_app.
- Combined send_message and send_frame methods in
Mojo::Transaction::WebSocket to send.
- Improved emit_chain method in Mojolicious::Plugins to allow reforwarding.
(jamadam)
- Improved documentation.
- Fixed bug that prevented Mojo::IOLoop from dying when started twice.
- Fixed a cookie jar path parsing bug. (marcus)
- Fixed multiple value bug in param method of Mojolicious::Controller.
2.51 2012-02-19
- Added EXPERIMENTAL to_psgi method to Mojo::Server::PSGI.
- Removed experimental status from around_dispatch hook.
- Removed experimental status from emit_chain method in
Mojolicious::Plugins.
- Removed experimental status from drain event in Mojo::Content.
- Improved portability of scripts.
- Improved documentation.
- Fixed bug that can prevent foreign event loops from being able to control
Mojo::IOLoop.
2.50 2012-02-18
- Added EXPERIMENTAL is_running method to Mojo::IOWatcher and
Mojo::IOWatcher::EV.
- Added file upload support to param method in Mojolicious::Controller.
- Removed gitignore command.
- Improved Mojo::IOLoop to be controllable from foreign event loops.
- Improved protection from excessively large form values in Mojo::Message.
- Improved resilience of Mojo::IOLoop::Client.
- Improved documentation.
- Fixed Mojo::Template expressions and escaped expressions to consistently
enforce scalar context.
- Fixed small bugs in makefile command. (tempire, marcus, sri)
2.49 2012-02-13
- Deprecated Mojolicious::Renderer->root in favor of
Mojolicious::Renderer->paths. (memowe, sri)
- Deprecated Mojolicious::Static->root in favor of
Mojolicious::Static->paths. (memowe, sri)
- Added support for multiple "templates" and "public" directories to
Mojolicious. (memowe, sri)
- Improved version command to be more responsive. (crab)
- Improved resilience of Mojo::IOLoop::Client.
- Improved documentation.
- Improved tests.
- Fixed parent combinator bug in Mojo::DOM::CSS. (sharifulin, sri)
2.48 2012-02-09
- Improved documentation.
- Improved tests.
- Fixed Hypnotoad HTTPS bug.
- Fixed small URL escaping bug in Mojo::UserAgent::Transactor.
- Fixed small MIME::Base64 and MIME::QuotedPrint related bugs in
Mojo::Util. (sestegra, sri)
2.47 2012-02-06
- Deprecated Hypnotoad configuration files in favor of more powerful
application configuration files.
- Deprecated Mojo::Server::Daemon->prepare_ioloop in favor of
Mojo::Server::Daemon->start.
- Deprecated Mojo::Headers->x_forwarded_for.
- Added EXPERIMENTAL config method to Mojo.
- Added EXPERIMENTAL ca attribute to Mojo::UserAgent.
- Added EXPERIMENTAL drain event to Mojo::Content.
- Added EXPERIMENTAL drain event to Mojo::Transaction::WebSocket.
- Added EXPERIMENTAL support for RSV1-3 flags to
Mojo::Transaction::WebSocket.
- Added EXPERIMENTAL tls_ca option to Mojo::IOLoop::Client->connect.
- Added lock_timeout parameter to Hypnotoad.
- Removed experimental status from JSON Pointer support.
- Removed Cygwin exception from Hypnotoad.
- Replaced drop_handle and drop_timer methods in Mojo::IOWatcher with drop
method.
- Renamed change and watch methods in Mojo::IOWatcher to watch and io.
- Renamed resume and pause methods in Mojo::IOLoop::Server to start and
stop.
- Renamed resume and pause methods in Mojo::IOLoop::Stream to start
and stop.
- Added pdf MIME type. (bfaist)
- Improved documentation.
- Improved tests.
- Improved CSS of some built-in templates.
- Fixed bug that prevented newer dual-life modules to be loaded.
- Fixed small bug in Mojo::IOLoop::Stream that caused close events to fail
sometimes.
- Fixed small relative URL detection bug in get command.
2.46 2012-01-25
- Added EXPERIMENTAL request_timeout attribute to Mojo::UserAgent.
- Added EXPERIMENTAL text_after and text_before methods to Mojo::DOM.
- Improved all uses of syswrite to be more defensive. (bduggan, sri)
- Improved documentation.
- Improved tests.
- Fixed small parser bug in Mojo::Message::Response.
- Fixed small partial rendering bug.
- Fixed small HTML5 parser bug in Mojo::DOM::HTML. (dougwilson)
2.45 2012-01-18
- Removed T-Shirt link.
- Fixed small caching bug in Mojolicious::Plugin::EPRenderer.
- Fixed typo in exception template.
2.44 2012-01-18
- Added new not_found page for development mode.
- Added EXPERIMENTAL url_with helper to
Mojolicious::Plugin::DefaultHelpers. (diegok, marcus, judofyr, sri)
- Added EXPERIMENTAL support for removing query parameters while merging to
query method of Mojo::URL. (marcus, judofyr, sri)
- Removed experimental status from Mojo::IOLoop::Delay.
- Removed defer method from Mojo::IOLoop.
- Improved exception page for development mode.
- Improved syntax highlighting in documentation browser slightly.
- Improved Mojo::Base tests.
- Improved documentation.
- Fixed Mojo::Command->app to be an attribute and not a method.
- Fixed Mojo::ByteStream, Mojo::Collection and Mojo::DOM to not be
subclasses of Mojo::Base.
2.43 2012-01-08
- Improved most commands with shortcut options.
- Improved get command to automatically enable verbose mode for HEAD
requests. (simotrone)
- Improved documentation.
2.42 2012-01-02
- Deprecated Test::Mojo->max_redirects.
- Removed exprimental status from respond_to method in
Mojolicious::Controller.