-
Notifications
You must be signed in to change notification settings - Fork 14
/
ChangeLog.xml
3021 lines (3021 loc) · 120 KB
/
ChangeLog.xml
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
<?xml version="1.0" encoding="utf-8"?>
<!-- :tabSize=2:indentSize=2:wrap=hard: -->
<changelog xmlns="http://www.blackperl.com/2009/01/ChangeLogML"
xmlns:sc="http://www.blackperl.com/2009/01/ChangeLogML/source-control"
xmlns:git="http://www.blackperl.com/2009/01/ChangeLogML/source-control/git"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.blackperl.com/2009/01/ChangeLogML etc/ChangeLogML.xsd">
<project>RPC::XML</project>
<title>Perl Module RPC::XML Change History</title>
<description>
Revision history for the Perl extension module RPC::XML. This is an
implementation of the XML-RPC standard as described at
<xhtml:a href="http://www.xmlrpc.com">http://www.xmlrpc.com</xhtml:a>.
This implementation also permits some minor
extensions to the base protocol in terms of supporting HTTP/1.1 and
allowing choice of character-set encodings for XML messages.
</description>
<release date="2021-01-06T09:59:00-08:00" version="0.82" sc:tag="0.82">
<change git:commit="22b657667a47ceb4ee68c59d04321c4f4e54b22a">
<fileset>
<file path="Makefile.PL" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Bump version numbers.
</description>
</change>
<change git:commit="b4b6f085eeabc58ddb8f578465ba24a27e5be11d">
<fileset>
<file path="Makefile.PL" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/40_server.t" />
<file path="t/40_server_xmllibxml.t" />
<file path="t/41_server_hang.t" />
<file path="t/60_net_server.t" />
<file path="t/util.pl" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=120472">RT #120472</xhtml:a>:
Applied patch from Petr Písař for fixes to IPv6 support. Full detail
in the message for this commit in the git repository.
</description>
</change>
</release>
<release date="2021-01-05T18:33:00-08:00" version="0.81" sc:tag="0.81">
<change git:commit="b34a215258a85305f4834f8d1861e7b84841d044">
<fileset>
<file path="MANIFEST" />
<file path="perlcritic.rc" action="ADD" />
</fileset>
<description>
Add a perlcritic.rc file for testers who run author tests.
</description>
</change>
<change git:commit="e0412dab68f103cadf6db3c42596658b3ceaa6e5">
<fileset>
<file path="t/40_server.t" />
<file path="t/40_server_xmllibxml.t" />
</fileset>
<description>
Remove redundant testing and general clean-up.
Removed tests of url() that were just re-testing HTTP::Daemon::url().
</description>
</change>
<change git:commit="7609db93606c4e592032e49d49c5eb7083ef7908">
<file path="lib/RPC/XML/Client.pm" />
<description>
Parameterize the request-as-string debug feature.
</description>
</change>
<change git:commit="68b3ab72470662eb8b76392978135b58bf9e73e3">
<file path="lib/RPC/XML/Client.pm" />
<description>
Merge pull request #13 from enrico-sorcinelli/add-request-string.
Added xmlrpc request string as object property. (Enrico Sorcinelli)
</description>
</change>
</release>
<release date="2016-05-08T12:45:00-07:00" version="0.80" sc:tag="0.80">
<change git:commit="32560525e443799daa8d2a2429ea9d1d782a1bfd">
<file path="etc/make_method" />
<description>
Make the build reproducible by dropping timestamps in make_method
output. (Niko Tyni)
</description>
</change>
<change git:commit="3270580b3538e108a2df16273e7513d197eee2d3">
<fileset>
<file path="t/40_server.t" />
<file path="t/40_server_xmllibxml.t" />
<file path="t/50_client.t" />
</fileset>
<description>
Fixes for test problems with Strawberry Perl.
</description>
</change>
<change git:commit="d5671287e928fc2911bccb88da9ffb73531e5e4c">
<file path="lib/RPC/XML/Client.pm" />
<description>
Fix leak caused by failing to free Expat parser. We don't want to
return from the method until the parser's been freed. We therefore
need to call $parser->release() before the return statements caused
by request failures. (Tom Grimwood-Taylor)
</description>
</change>
<change git:commit="8158b17b8979c0126a5824909e8f57e1d4c13dd8">
<file path="lib/RPC/XML/Server.pm" />
<description>
One socket-opt change, one typo corrected.
</description>
</change>
<change git:commit="703a41a19874b54c8edf7d287752b5bf5d0c0008">
<file path="lib/RPC/XML.pm" />
<description>
Applied patch for numeric regexes and critic cleanup. Addresses
<xhtml:a href="https://github.com/rjray/rpc-xml/pull/10">GitHub
pull request #10</xhtml:a> and
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=111636">RT
#111636</xhtml:a>.
</description>
</change>
<change git:commit="b183920628411a7a19a1251ebae6907ccda72739">
<file path="t/60_net_server.t" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=99578">RT #99578</xhtml:a>:
Work-around fix for Net::Server+IO::Socket::IP. If a system's IPv6
declaration of localhost was before the IPv4 declaration in the hosts
file, this test would fail.
</description>
</change>
</release>
<release date="2015-05-01T09:00:00-07:00" version="0.79" sc:tag="0.79">
<change git:commit="70f6e31b98b3e80bb2ab5fe99f1e42dc454271e9">
<fileset>
<file path="t/40_server.t" />
<file path="t/40_server_xmllibxml.t" />
<file path="t/41_server_hang.t" />
<file path="t/60_net_server.t" />
<file path="t/70_compression_detect.t" />
<file path="t/90_rt54183_sigpipe.t" />
<file path="t/util.pl" />
</fileset>
<description>
Test clean-up/fixes to address CPAN test failures. Should address
problems with having IO::Socket::IP acting in place of IO::Socket::INET
and also address some issues with a dynloader bug being triggered by
<xhtml:tt>t/70_compression_detect.t</xhtml:tt>.
</description>
</change>
<change git:commit="93f34fa9e8c65cefadb90a7bf31e70e08ed850b1">
<fileset>
<file path="t/00_load.t" />
<file path="t/10_data.t" />
<file path="t/11_base64_fh.t" />
<file path="t/12_nil.t" />
<file path="t/13_no_deep_recursion.t" />
<file path="t/14_datetime_iso8601.t" />
<file path="t/15_serialize.t" />
<file path="t/20_xml_parser.t" />
<file path="t/21_xml_libxml.t" />
<file path="t/25_parser_negative.t" />
<file path="t/29_parserfactory.t" />
<file path="t/30_procedure.t" />
<file path="t/35_namespaces.t" />
<file path="t/40_server.t" />
<file path="t/40_server_xmllibxml.t" />
<file path="t/41_server_hang.t" />
<file path="t/50_client.t" />
<file path="t/51_client_with_host_header.t" />
<file path="t/60_net_server.t" />
<file path="t/90_rt50013_parser_bugs.t" />
<file path="t/90_rt54183_sigpipe.t" />
<file path="t/90_rt54494_blessed_refs.t" />
<file path="t/90_rt58065_allow_nil.t" />
<file path="t/90_rt58323_push_parser.t" />
<file path="t/util.pl" />
</fileset>
<description>
Perl::Critic clean-up of test suites.
</description>
</change>
<change git:commit="a2399e760b584f0f57e4953ed8e225371d8b448a">
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<description>
Fix to prevent a new sprintf-related warning in 5.21.
</description>
</change>
<change git:commit="58c384f53333577ee5d2ab7b56c761fc12793dfb">
<fileset>
<file path="README" />
<file path="lib/Apache/RPC/status.code" />
</fileset>
<description>
Merge pull request #8 from jkg/docfixes (James Green). Replace
indirect object notation with direct.
</description>
</change>
</release>
<release date="2014-02-06T20:00:00-08:00" version="0.78" sc:tag="0.78">
<change git:commit="4c9208b3309cd332cd9b19f7553ab29ce4b90491">
<file path="lib/RPC/XML.pm" />
<description>
A patch to loop detection in smart_encode from Dag-Erling Smørgrav.
Some other minor bits.
</description>
</change>
<change git:commit="ae9a69e1176bef9211da57e480ca3e06b4d35c61">
<file path="lib/RPC/XML/Procedure.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=83108">RT #83108</xhtml:a>:
Fixed a spelling error. Some other fixes, too.
</description>
</change>
<change git:commit="f6cee931344ffa6a757eb526b02de33c30b672f8">
<file path="lib/RPC/XML.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=86187">RT #86187</xhtml:a>:
Force key-ordering in struct as_string and serialize.
Was getting some intermittent bug reports of failures in
t/15_serialize.t that amounted to the keys in a fault struct not being
in consistent order.
</description>
</change>
<change git:commit="33617691326a0bc01efea624e05c65047f1c6154">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="t/15_serialize.t" />
</fileset>
<description>
Undo the previous change and fix the test. The previous change didn't
feel right, so this rolls it back and fixes the problem at the level of
the test, instead.
</description>
</change>
<change git:commit="e340f5f43c386f918216ff9c445239d4c7d90b4c">
<fileset>
<file path="Makefile.PL" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Replace direct evals for loading optional modules with Module::Load.
Required adding this to Makefile.PL because Module::Load is not core
in 5.8.8. Also did some slight doc tweaking.
</description>
</change>
<change git:commit="c00cd567fd32e4e6e35622434246bce14df58b93">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
</fileset>
<description>
Merge pull request #5 from alexrj/utf8-encode. Use utf8::encode()
instead of utf8::downgrade().
</description>
</change>
<change git:commit="e63f767f7d40f4629157f7fc67ea172bdc9f6e8c">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Finish the uft8 encode vs. downgrade change from the previous commit.
Changed in places that were overlooked, and adjusted the version
number in all three modules.
</description>
</change>
<change git:commit="fd84f87624cffe3667212fb9c2a8d32a6bdc7fbe">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
</fileset>
<description>
Merge pull request #6 from dctabuyz/master. Added 'no_blanks' libxml
option to skip blank XML::LibXML::Text nodes.
</description>
</change>
<change git:commit="856da319f0ff661c81dab46c6b857fc058d72cea">
<file path="lib/RPC/XML/Server.pm" />
<description>
Merge pull request #7 from kvar/master. Initialize $do_compress in
RPC::XML::Server between requests.
</description>
</change>
<change git:commit="c22977c83bc411c95443f7056c9f7776371fe9df">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Bump version numbers on modules changed in github pulls.
</description>
</change>
</release>
<release date="2012-09-03T12:00:00-07:00" version="0.77" sc:tag="0.77">
<change git:commit="23ea1e487cf203e826ddf8a09d450986dfa29599">
<file path="t/15_serialize.t" />
<description>
Fix a test failure on Windows.
</description>
</change>
<change git:commit="4f2493aa66fd4311f981e0424c38edfa88352450">
<file path="lib/RPC/XML.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=70408">RT #70408</xhtml:a>:
Fix spelling error in man page, reported by Debian group.
</description>
</change>
<change git:commit="978c9263f04683aa360fdc525ecb2518018dd68a">
<file path="t/90_rt54183_sigpipe.t" />
<description>
Fix to handle cases where server creation fails. Now skips the
tests rather than dying.
</description>
</change>
<change git:commit="d5a10436f0efebdae39aba7865c2e3a94d4d046a">
<file path="lib/RPC/XML/Client.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=67486">RT #67486</xhtml:a>:
Add port to Host header in client requests.
</description>
</change>
<change git:commit="eae9b4438c4345d2d6ca82fee27ffca3360a86f9">
<file path="lib/RPC/XML/Server.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=65341">RT #65341</xhtml:a>:
Added "use" of forgotten library File::Temp. This was causing failure
when "message_file_thresh" kicked in.
</description>
</change>
<change git:commit="20994f8b09dc1c136a74352caba7a8f20a94f9ca">
<file path="t/10_data.t" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=78602">RT #78602</xhtml:a>:
Changed 64-bit test from use64bitint to longsize.
On some systems (such as OS X), use64bitint can be true even when in
32-bit mode.
</description>
</change>
<change git:commit="e0362fccbd78d834b6709caf9cb912f0eb77a1f3">
<file path="t/21_xml_libxml.t" />
<description>
Fix from Christian Walde, skip passed test on Windows.
</description>
</change>
<change git:commit="865cf9a319d12b950c148289ee5577de7d63642f">
<fileset>
<file path="lib/RPC/XML/Server.pm" />
<file path="t/40_server.t" />
</fileset>
<description>
Checkpoint refactoring and additional tests.
Work is not complete here, but the Net::Server changes demand
immediate attention
</description>
</change>
<change git:commit="427bddcc18504b2af1afb0e8728b6a028414d441">
<file path="t/20_xml_parser.t" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=72780">RT #72780</xhtml:a>:
Check for a possible parser failure. One instance of XML::Parser
failing to parse the extern entities test. Cannot reproduce, so wrap it
in a "skip" block for now.
</description>
</change>
<change git:commit="b1680acfcbdb1b991001888e6e5fd64f28341135">
<fileset>
<file path="lib/RPC/XML/Procedure.pm" />
<file path="t/30_method.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=71452">RT #71452</xhtml:a>:
Correct handling of dateTime parameters. Existing code in
<xhtml:tt>lib/RPC/XML/Procedure.pm</xhtml:tt> did not properly handle
parameters of the dateTime.iso8601 type. Also, there were no tests for
these.
</description>
</change>
<change git:commit="8dcd49066c06be3c588a0fe135efabb7af96c4bd">
<fileset>
<file path="MANIFEST" />
<file path="t/30_method.t" action="DELETE" />
<file path="t/30_proceudre.t" action="ADD" />
</fileset>
<description>
Renamed t/30_method.t to t/30_procedure.t.
</description>
</change>
<change git:commit="de7c117392aff2a524a8cf02ef622879788c26f5">
<file path="lib/RPC/XML/Server.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=77992">RT #77992</xhtml:a>:
Make RPC::XML::Server work with Net::Server again, after the API
changes of Net::Server 2.x.
</description>
</change>
</release>
<release date="2011-08-20T18:30:00-07:00" version="0.76" sc:tag="0.76">
<change git:commit="6ac04c12677b0285d54213171aaf0211122c2ce5">
<fileset>
<file path="etc/make_method" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=70258">RT #70258</xhtml:a>:
Fixed typos in docs pointed out by Debian team.
</description>
</change>
<change git:commit="5fd094cbda162a5421df70228d642bff2501412f">
<file path="lib/Apache/RPC/Server.pm" />
<description>
Better version of the fix for infinite loops.
This is the patch originally suggested by Eric Cholet, who found
the bug.
</description>
</change>
<change git:commit="b7210744ecffa57fb6f4eac51b8ed302809c0daa">
<file path="t/00_load.t" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=70280">RT #70280</xhtml:a>:
This test was still testing RPC/XML/Method.pm.
Rewrote to remove that but include the (forgotten) XMLLibXML.pm module.
That test has to be conditional on the presence of XML::LibXML.
</description>
</change>
<change git:commit="e63c1a71610657ec7ca7738aae6e522f961a586a">
<fileset>
<file path="Makefile.PL" />
<file path="t/51_client_with_host_header.t" />
</fileset>
<description>
Clean up test suite to work with older Test::More.
Also specify a minimum Test::More that supports subtest(). This is
also a part of
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=70280">RT #70280</xhtml:a>.
</description>
</change>
<change git:commit="73aa084d14a5befc1251f309ff32189a6d0aa1a8">
<fileset>
<file path="t/11_base64_fh.t" />
<file path="t/20_xml_parser.t" />
<file path="t/21_xml_libxml.t" />
<file path="t/40_server.t" />
</fileset>
<description>
These tests had failures when run as root.
Permissions-based negative tests were incorrectly passing.
</description>
</change>
<change git:commit="800899531bc13da5cbc36423662bae76de304fb5">
<file path="t/10_data.t" />
<description>
Moved the 64-bit "TODO" tests to a SKIP block.
Non-64-bit systems will skip, rather than fail, these tests.
</description>
</change>
<change git:commit="cc02b294421a3b343ac741fdd4ceb11349626972">
<file path="lib/RPC/XML/Server.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=65616">RT #65616</xhtml:a>:
Fix for slow methods killing servers.
Applied and modified patch from person who opened the ticket.
</description>
</change>
<change git:commit="c2e33bcb41fd923f74581b70bca2849dbd91a679">
<fileset>
<file path="MANIFEST" />
<file path="lib/RPC/XML.pm" />
<file path="t/10_data.t" />
<file path="t/14_datetime_iso8601.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=55628">RT #55628</xhtml:a>:
Improve flexibility of date parsing.
This adds the ability to pass any ISO 8601 string to the
RPC::XML::datetime_iso8601 constructor.
</description>
</change>
</release>
<release date="2011-08-13T17:30:00-07:00" version="0.75" sc:tag="0.75">
<change git:commit="69eba1c169417b60c13b9a00665f9f0a52e3b949">
<file path="MANIFEST" />
<description>
Somehow, t/13_no_deep_recursion.t never got added to MANIFEST.
</description>
</change>
<change git:commit="d0f00193b051e8dce1ef072348737c515e02dd8d">
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=65154">RT #65154</xhtml:a>:
Fixed a cut/paste error in an error message.
</description>
</change>
<change git:commit="b86ad6375b3fa5f1d19522cff84b71fa97a14bb7">
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="t/51_client_with_host_header.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=68792">RT #68792</xhtml:a>:
Merge pull request #2 from dragon3/master
(<xhtml:a href="https://github.com/dragon3">https://github.com/dragon3</xhtml:a>).
Allow setting of "Host" header, and test suite for it.
</description>
</change>
<change git:commit="51448ca16b097537f0eac4120f840e7542ec0e66">
<fileset>
<file path="MANIFEST" />
<file path="t/51_client_with_host_header.t" />
</fileset>
<description>
Added new test suite to MANIFEST, fixed spelling.
Also added "plan tests" line to the test suite.
</description>
</change>
<change git:commit="c7dfbfccde32621caf59b1fd5c3919fbaf8b2e02">
<fileset>
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="t/20_xml_parser.t" />
<file path="t/21_xml_libxml.t" />
<file path="t/41_server_hang.t" />
</fileset>
<description>
Merge pull request #3 from yannk/master
(<xhtml:a href="https://github.com/yannk">https://github.com/yannk</xhtml:a>).
Expat parser subclass is protected against ext ent attack, libxml
isn't.
</description>
</change>
<change git:commit="2e5292c32d326d90699da355c9c3543606c120af">
<file path="t/41_server_hang.t" />
<description>
Undo a change to this suite from yannk's pull.
</description>
</change>
<change git:commit="70e5e86e5d53c7aa2e3d6ecbdc450da599dc8dff">
<fileset>
<file path="etc/make_method" />
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Function.pm" />
<file path="lib/RPC/XML/Method.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/ParserFactory.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
More perlcritic-driven clean-up.
This is mostly POD sections, but also includes heavy re-working of
etc/make_method and parts of lib/RPC/XML.pm.
</description>
</change>
<change git:commit="ed371c566925c1fff75c1abe26844e5ab3b16e50">
<fileset>
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="t/21_xml_libxml.t" />
</fileset>
<description>
Fixed external entity handling on MacOS.
Also made small change to the test suite to be cleaner.
</description>
</change>
<change git:commit="2c63eeb48fb59087c9768e7be32e064a9b012982">
<fileset>
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
</fileset>
<description>
Took out warnings on external entities blocking.
Now it blocks silently. Also cleaned up some docs.
</description>
</change>
<change git:commit="c17c8f05bf132ff8564fd3d633d7b8ed6d59d64b">
<file path="t/15_serialize.t" />
<description>
Additions to increase code coverage in XML.pm.
</description>
</change>
<change git:commit="1a92f352abc670dc1e54b3fbdbffebd0aefdc60c">
<file path="lib/RPC/XML.pm" />
<description>
Turns out this wasn't exporting RPC_I8.
</description>
</change>
<change git:commit="235afd8c7c7140b5a3eb837b1ec38c3cbb26c35e">
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Function.pm" />
<file path="lib/RPC/XML/Method.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/ParserFactory.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="xt/02_pod_coverage.t" />
</fileset>
<description>
Made 5.8.8 the new minimum-required perl.
Also dropped the utf8_downgrade hack, which affected an xt test.
</description>
</change>
<change git:commit="7edab9cbb49b96ef2c3bb5c1f42157f15ae888ad">
<file path="lib/RPC/XML/Client.pm" />
<description>
Improved arguments-checking in send_request.
</description>
</change>
<change git:commit="f82de550319e5e16c292d96a0b6ffcbea1fe365d">
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Fixed error-cases in usage of File::Temp->new().
File::Temp::new croaks on errors, doesn't return undef like I
thought.
</description>
</change>
<change git:commit="11db8815f41084b3a3ab099a4741959cdf0bd9fd">
<fileset>
<file path="MANIFEST" />
<file path="lib/RPC/XML/Function.pm" action="DELETE" />
<file path="lib/RPC/XML/Method.pm" action="DELETE" />
<file path="lib/RPC/XML/Procedure.pm" />
</fileset>
<description>
Roll Method.pm and Function.pm into Procedure.pm.
Remove Method.pm and Function.pm from distro.
</description>
</change>
<change git:commit="61241910ef453f45de89fbbecb51212bd7eb829e">
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<description>
Fixed regexp for methodName validation.
</description>
</change>
<change git:commit="343e66b597f2d1f5fe5a903bddb01876001e5294">
<fileset>
<file path="t/10_data.t" />
<file path="t/11_base64_fh.t" />
<file path="t/12_nil.t" />
<file path="t/15_serialize.t" />
<file path="t/20_xml_parser.t" />
<file path="t/21_xml_libxml.t" />
<file path="t/25_parser_negative.t" action="ADD" />
<file path="t/29_parserfactory.t" />
<file path="t/30_method.t" />
<file path="t/40_server.t" />
<file path="t/40_server_xmllibxml.t" />
<file path="t/50_client.t" />
<file path="t/BadParserClass.pm" action="ADD" />
<file path="t/meth_good_1.xpl" />
<file path="t/namespace3.xpl" />
<file path="t/svsm_text.b64" action="ADD" />
<file path="t/util.pl" />
</fileset>
<description>
First round of Devel::Cover-inspired improvements.
These are the changes to the test suites to increase coverage of the
code.
</description>
</change>
<change git:commit="d04bd3c06a69b3885857fb85179458e2830db69c">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Fixes and such from Devel::Cover analysis.
</description>
</change>
<change git:commit="b8f94379ae4b01ae922e352a31b6150e0e3c7cbf">
<fileset>
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/30_method.t" />
<file path="t/meth_good_1.xpl" />
<file path="t/meth_good_2.xpl" action="ADD" />
<file path="t/meth_good_3.xpl" action="ADD" />
</fileset>
<description>
Fixes for file-based method loading/reloading.
New tests in the suite, and re-working of the ugliest hacky part of this
package.
</description>
</change>
<change git:commit="ffb4ccff320e9b521308c81279845d5a67eb64f8">
<fileset>
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/30_method.t" />
<file path="t/meth_good_3.xpl" />
</fileset>
<description>
RPC::XML::Procedure test-coverage improvement.
Also removed some unneeded code.
</description>
</change>
<change git:commit="105d7d2a5f38a208772f34ebf990bac428abf129">
<fileset>
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/30_method.t" />
<file path="t/40_server.t" />
</fileset>
<description>
Last round of RPC::XML::Procedure test coverage.
This is mostly in t/40_server.t, though some bugs were found and
addressed in the modules and in t/30_method.t.
</description>
</change>
<change git:commit="010bc4ad28cd73b092ac4fdaa7e7f94d463b46ec">
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/ParserFactory.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Documentation clean-up and update.
</description>
</change>
<change git:commit="b801e5449ec901ee40a637f65950e5598c26089b">
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Changes from new Perl::Critic::Bangs policies.
</description>
</change>
<change git:commit="2da2abffca68579b10f1b906ec9adbcd61a">
<fileset>
<file path="xt/01_pod.t" />
<file path="xt/02_pod_coverage.t" />
<file path="xt/03_meta.t" />
<file path="xt/04_minimumversion.t" />
<file path="xt/05_critic.t" />
</fileset>
<description>
Adjustments to reflect moving from t to xt.
Also made changes to xt/02_pod_coverage.t to reflect changes to
modules.
</description>
</change>
<change git:commit="fd93112b964188a551e8ce206a5941011a8f152c">
<file path="lib/RPC/XML/Client.pm" />
<description>
Removed some error checks that can never fail.
</description>
</change>
<change git:commit="681a9a7a600b87898aea5a6fe797439dfc319c1d">
<fileset>
<file path="lib/RPC/XML/Server.pm" />
<file path="t/40_server.t" />
</fileset>
<description>
Code-coverage-driven changes and added tests.
</description>
</change>
<change git:commit="8f30897dfe5f8af5a7d2b2b6e7e956bebb47d31d">
<file path="etc/make_method" />
<description>
Fixes from new Perl::Critic::Bangs policies.
</description>
</change>
<change git:commit="72b0b1e897bee75dc6b40b15dbcd4d51d38ec6e7">
<file path="lib/RPC/XML/Server.pm" />
<description>
Removed usage of AutoLoader completely.
</description>
</change>
<change git:commit="294c25cec95168b2ba0ab2187c0dbb1d8d7677a7">
<fileset>
<file path="lib/RPC/XML/Server.pm" />
<file path="t/40_server.t" />
<file path="xt/02_pod_coverage.t" />
</fileset>
<description>
Removed some dead code and better did the aliases.
This required a change in t/40_server.t for a private sub that no
longer exists. Also updated xt/02_pod_coverage.t for private subs that
have no pod.
</description>
</change>
<change git:commit="9babd1c2a1dd035db0456a5a6de814f120d7a516">
<file path="lib/Apache/RPC/Server.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=67694">RT #67694</xhtml:a>:
Fix a potential infinite-loop condition.
</description>
</change>
</release>
<release date="2011-01-23T12:50:00-08:00" version="0.74" sc:tag="0.74">
<change git:commit="a8537225834935868bda315946f0a0ce8088ac26">
<file path="t/90_rt54183_sigpipe.t" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=56800">RT #56800</xhtml:a>:
Make this suite skip all tests on Windows platforms.
</description>
</change>
<change git:commit="7f70bb335266db40899aef1263f500a2abfab142">
<file path="lib/Apache/RPC/Server.pm" />
<description>
Clean up some run-time "use of undefined value" messages.
</description>
</change>
<change git:commit="61de588a81d12a5000bb0f6d64cdd1dcc471999c">
<fileset>
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="t/90_rt58323_push_parser.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=58323">RT #58323</xhtml:a>:
Started as making the parser interfaces correctly report errors when
passed null-length strings or "0" values. Turned out that the error
return interface from XMLLibXML.pm was not consistent with the rest of
the system, so fixed that as well.
</description>
</change>
<change git:commit="12dc29c33da5e9a14dcb57d8e8eb9a47cbf0b649">
<fileset>
<file path="lib/RPC/XML/Server.pm" />
<file path="t/40_server.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=58240">RT #58240</xhtml:a>:
Applied a patch from Martijn van de Streek that adds access to the
HTTP::Request object to called method code.
</description>
</change>
<change git:commit="cd498bd7cabfb6dc453517bc653aa853425e671a">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="t/90_rt58065_allow_nil.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=58065">RT #58065</xhtml:a>:
Allow the parsing of <xhtml:tt><nil /></xhtml:tt> tags when they
are encountered, even if $RPC::XML::ALLOW_NIL is not set. Only limit
the generation of these tags.
</description>
</change>
<change git:commit="f8288640e3bf979d85865635c304643c2f63a6e5">
<fileset>
<file path="lib/RPC/XML/Server.pm" />
<file path="t/41_server_hang.t" />
</fileset>
<description>
This test sporadically fails, so enhance the error message for more info.
Also alter the test slightly, hoping it fixes the random failures.
</description>
</change>
<change git:commit="4ef6b98fd97e9fe42b3813dcac9c0bbbe4bf3647">
<file path="etc/make_method" />
<description>
Applied perlcritic to the make_method tool.
</description>
</change>
<change git:commit="e787398f714fa33ef12ad4b5da79624b7435c8db">
<fileset>
<file path="lib/XML/RPC.pm" />
<file path="t/10_data.t" />
<file path="t/20_xml_parser.t" />
<file path="t/21_xml_libxml.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=62916">RT #62916</xhtml:a>:
Previous adjustments to the <xhtml:tt>dateTime.iso8601</xhtml:tt>
stringification caused it to no longer fit the XML-RPC spec. Fixed.
</description>
</change>
<change git:commit="81e3fab5732b1e402616bd33b5f81f55dc870c29">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/ParserFactory.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Used <xhtml:tt>warnings::unused</xhtml:tt> to find unused variables
not found by Perl::Critic.
</description>
</change>
<change git:commit="2537bdb141d4b6be8ace5b3db48ba2fd2c70ac81">
<file path="t/10_data.t" />
<description>
Realized I had no boundary-tests for ints in smart_encode(). This
revealed some problems with i8 values on my 32-bit system. Don't
want to introduce dependency on BigInt right now, so marked those
tests "TODO".
</description>
</change>
</release>
<release date="2010-03-16T22:45:00-07:00" version="0.73" sc:tag="0.73">
<change git:commit="b234042a3b3e74ee83a74163bc68253130f76c21">
<fileset>
<file path="MANIFEST" />
<file path="t/28_parser_bugs_50013.t" action="DELETE" />
<file path="t/90_rt50013_parser_bugs.t" action="ADD" />
</fileset>
<description>
Rename of t/28_parser_bugs_50013.t to fit more universal scheme for
test suites that directly address specific RT bugs.
</description>
</change>
<change git:commit="984e381b2ec9e56896c4d35d6eb9f3e68c11629c">
<fileset>
<file path="lib/RPC/XML/Server.pm" />
<file path="t/90_rt54183_sigpipe.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=54183">RT #54183</xhtml:a>:
Provide handling of SIGPIPE when sending the response to the client,
in case they've terminated the connection.
</description>
</change>
<change git:commit="d5a354d801ca5b7e6243cb4c6289468dcd7be244">
<file path="MANIFEST" />
<description>
Forgot to add the new test suite to MANIFEST.
</description>
</change>
<change git:commit="3195d6348f01e60b64282e0bd8fab902eecfb219">
<file path="lib/RPC/XML/Server.pm" />
<description>
Forgot to update the module version number.
</description>
</change>
<change git:commit="87735249de1ec4311ecd9bbb04d890e1b7649c47">
<file path="lib/RPC/XML.pm" />
<description>
Fix typo in reftype() call.
</description>
</change>
<change git:commit="cd38fc54f524518e3fc1d8effdf76c5b8e99a669">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="t/90_rt54494_blessed_refs.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=54494">RT #54494</xhtml:a>:
Fix handling of blessed references in smart_encode().
</description>
</change>
<change git:commit="2664b6b614d62e9c110bed12d5a8f4d658d1c4a0">
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Function.pm" />
<file path="lib/RPC/XML/Method.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/ParserFactory.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Large-scale code clean-up driven by Perl::Critic. All critic flags
down to severity 1 now removed.
</description>
</change>
<change git:commit="e5a2f983fcc2df9b3f126cb8af26e917812c46d7">
<file path="MANIFEST" />
<description>
Forgot to add t/90_rt54494_blessed_refs.t when it was created.