/XML-TreePP/Changes

http://xml-treepp.googlecode.com/ · #! · 171 lines · 142 code · 29 blank · 0 comment · 0 complexity · 3e4ae732ba4005a0786360ac7eba259c MD5 · raw file

  1. # XML::TreePP Changes
  2. 2010/10/31 (0.41)
  3. * require_xml_decl option added. thanks to nicomen
  4. https://rt.cpan.org/Ticket/Display.html?id=42441
  5. * empty element when #text node is undef
  6. http://www.kawa.net/works/perl/treepp/treepp.html#com-2009-07-23T16:38:09Z
  7. 2009/11/21 (0.40)
  8. * pod typo fix: (thanks to jkutej)
  9. http://annocpan.org/~KAWASAKI/XML-TreePP-0.39/lib/XML/TreePP.pm#note_2382
  10. 2009/06/30 (0.39)
  11. * parsehttp now uses decoded_content method under LWP 5.802.
  12. This allows compressed content by Content-Encoding: gzip, etc.
  13. (thanks to cormanaz and ikegami)
  14. http://perlmonks.org/?node_id=774537
  15. http://rt.cpan.org/Public/Bug/Display.html?id=47336
  16. 2009/03/01 (0.38)
  17. * dies by "Invalid tree" when write() is called without a hash argument.
  18. * warns by "Unsupported reference type" when write() is called with
  19. a tree which contains unsupported references, ex. BLOBREF.
  20. It avoids "Not a HASH reference" and "Can't use string as a HASH ref."
  21. * dies by "Unknown encoding" when unknown encoding is used.
  22. * No new features are added at this version except for the messages above.
  23. 2009/01/17 (0.37)
  24. * new option: xml_deref dereferences the numeric character references,
  25. like ë, 漢 etc.
  26. Now UTF-8 flag is correctly treated. (thanks to haarg)
  27. http://rt.cpan.org/Public/Bug/Display.html?id=42347
  28. * without xml_deref option, the numeric character references between
  29. U+0080 and U+00FF are not dereferenced any more.
  30. the numeric character references up to U+007F and the predefined
  31. character entity references are still dereferenced per default.
  32. * supports Perl 5.8.4 which includes Encode 1.99_01. (thanks to SAPER)
  33. http://rt.cpan.org/Public/Bug/Display.html?id=41986
  34. 2008/10/26 (0.36)
  35. * supports spaces around the "=" sign in attribute (thanks to John)
  36. ex. <Elem Attrib = "abc" />
  37. http://tech.groups.yahoo.com/group/xml-treepp/message/27
  38. * Perl 5.10.0 has a memory leak problem on qr//
  39. (thanks to Marcin Guzowski)
  40. http://rt.perl.org/rt3/Public/Bug/Display.html?id=59516
  41. * Makefile.PL now calls Jcode and HTTP::Lite when needed
  42. 2008/01/05 (0.33)
  43. * Subversion on Google Code
  44. http://xml-treepp.googlecode.com/svn/trunk/XML-TreePP/
  45. * supports UTF-8 with BOM when parsing XML
  46. http://www.kawa.net/works/perl/feedpp/feedpp.html#com-2008-01-03T15:02:56Z
  47. 2007/11/11 (0.32)
  48. * supports invalid xml decl quoted with single quote (thanks to xatrix)
  49. ex. <?xml version='1.0' encoding='windows-1250'?>
  50. http://rt.cpan.org/Public/Bug/Display.html?id=30187
  51. 2007/09/22 (0.31)
  52. * "]]>" in CDATA must be separated into "<![CDATA[]]]]><![CDATA[>]]>"
  53. http://www.w3.org/TR/REC-xml/#sec-cdata-sect
  54. * utf8_flag option requires Perl 5.8.1
  55. * avoid "Wide character in print at" in writefile()
  56. 2007/08/27 (0.29)
  57. * 34_utf8_flag.t skips all tests on Perl 5.8.0
  58. utf8::is_utf8() wasn't there in 5.8.0.
  59. http://www.nntp.perl.org/group/perl.perl5.changes/2003/08/msg8628.html
  60. * 34_utf8_flag.t passes all tests on Perl 5.8.1-2
  61. http://rt.perl.org/rt3/Public/Bug/Display.html?id=24846
  62. * avoid "Use of uninitialized value in substitution" in xml_escape
  63. 2007/08/13 (0.27)
  64. * bug fix: autoload Encode.pm on particular environment, $] == 5.008
  65. http://www.nntp.perl.org/group/perl.cpan.testers/2007/08/msg557739.html
  66. http://www.nntp.perl.org/group/perl.cpan.testers/2007/08/msg557741.html
  67. * pod revised. OPTIONS FOR PARSING/WRITING sections are separated.
  68. 2007/08/07 (0.26)
  69. * new option: force_array => '*' means every elements (thanks to Niek)
  70. * new option: force_hash => [], and also '*' means every elements
  71. * new option: elem_class => 'class'
  72. * new tests: t/35_force_hash.t t/36_elem_class.t
  73. 2007/07/28 (0.22)
  74. * new option: ident => 2 (thanks to Aaron)
  75. * new option: utf8_flag => 1
  76. * new option: base_class => 'class'
  77. * new tests: t/32_base_class.t t/33_indent.t t/34_utf8_flag.t
  78. * LICENSE field added in META.yml
  79. 2007/07/25 (0.21)
  80. * bug fix: use_ixhash missing order on elements with attribute(s)
  81. 2007/07/22 (0.20)
  82. * new option: http_lite => HTTP::Lite->new()
  83. * new option: lwp_useragent => LWP::UserAgent->new() (thanks to NEELY)
  84. http://rt.cpan.org/Ticket/Display.html?id=28167
  85. * new option: use_ixhash => 1 (thanks to RENEEB)
  86. http://rt.cpan.org/Ticket/Display.html?id=23522
  87. * first_out and last_out options keep its order (thanks to BASHI and sajohn52)
  88. http://tech.groups.yahoo.com/group/xml-treepp/message/13
  89. * new tests: 27_http-lite-force.t 28_http-lwp-force.t
  90. 29_http-lwp-withcache.t 30_first_out.t 31_tie_ixhash.t
  91. 2006/11/03 (0.19)
  92. * new option: text_node_key (thanks to Niek)
  93. * attr_prefix now supports zero-length prefix.
  94. 2006/08/13 (0.18)
  95. * parsehttp()'s 4th argument: an HTTP request header as a hash ref.
  96. * new option: ignore_error (thanks to Riyousha)
  97. * new option: xml_decl (thanks to Stephen and Jon)
  98. * new tests: 20_http-lite-cached.t 21_http-lwp-cached.t
  99. 22_http-lite-headers.t 23_http-lwp-headers.t 24_ignore_error.t
  100. 2006/05/25 (0.17)
  101. * bug fix: multiple CDATA or text nodes in a element (thanks to junichi)
  102. * new test: 19_multi_text.t
  103. 2006/05/21 (0.16)
  104. * bug fix: character references support (since 0.14)
  105. * Encode::FB_XMLCREF support (again)
  106. * new test: 18_escape_amp.t
  107. 2006/05/15 (0.14)
  108. * new encodings: eucJP-win and eucJP-ms (for Perl 5.005/5.6.1)
  109. * new entity references: &apos;
  110. * character references supported: &#38; &#x26;
  111. * spaces in text node are not deleted on parse() method.
  112. * returns are not added in text node on write() method.
  113. * HTTP tests are skipped per default: 09_http-lite.t 10_http-lwp.t
  114. * new tests: 00_pod.t 13_encoding_en.t 14_encoding_zh.t
  115. 15_encoding_ja.t 16_encoding_ko.t 17_output_encoding.t
  116. 2006/04/30 (0.10)
  117. * attr_prefix parameter added to emulate E4X, ECMAScript for XML.
  118. * user_agent parameter and its default value added.
  119. * source code passed perltidy. (thanks to Nadim)
  120. 2006/04/08 (0.08)
  121. * set() and get() method added.
  122. * cdata_scalar_ref option added. CDATASection's round trip supported.
  123. * some error checkes added. (thanks to Nadim)
  124. 2006/03/09 (0.07)
  125. * Correct POD about parsehttp() method
  126. 2006/03/02 (0.06)
  127. * parsehttp() method now supports the HTTP::Lite pure Perl module as well.
  128. * Bug fix: xml_escape() call in hash_to_xml() method. (thanks to suVene)
  129. 2006/02/26 (0.04)
  130. * Correct POD about force_array option of new() method.
  131. * parsehttp() method returns a hash tree and xml source on array context.
  132. 2006/02/22 (0.03)
  133. * Changes
  134. 2006/02/21 (0.02)
  135. * Change encoding from ISO-8859-1 to UTF-8 is natively supported.
  136. * t/force_array.t t/parse.t t/parsefile.t t/parsehttp.t t/write.t
  137. t/index.rdf t/family.xml
  138. * Test scripts added.
  139. 2006/02/20 (0.01)
  140. * first release.
  141. # http://www.kawa.net/works/perl/treepp/treepp-e.html (English)
  142. # http://www.kawa.net/works/perl/treepp/treepp.html#changes (Japanese)