Next | Query returned 92 messages, browsing 71 to 80 | Previous

History of commit frequency

CVS Commit History:


   2014-04-28 03:18:03 by Takahiro Kambe | Files touched by this commit (4)
Log message:
* Fix PLIST due to broken print-PLIST target.
* Avoid to patch gemspec but use OVERRIDE_GEMSPEC.
   2014-04-25 11:28:57 by Jonathan Perkin | Files touched by this commit (4)
Log message:
Update ruby-nokogiri to 1.6.0.  This is a new branch.  Changes:

1.6.0 / 2013-06-08

  This release was based on v1.5.10 and 1.6.0.rc1, and contains changes
  mentioned in both.

  Deprecations

    Remove pre 1.9 monitoring from Travis.

1.6.0.rc1 / 2013-04-14

  This release was based on v1.5.9, and so does not contain any fixes mentioned
  in the notes for v1.5.10.

  Notes

    mini_portile is now a runtime dependency

    Ruby 1.9.2 and higher now required

  Features

    (MRI) Source code for libxml 2.8.0 and libxslt 1.2.26 is packaged with the
    gem. These libraries are compiled at gem install time unless the environment
    variable NOKOGIRI_USE_SYSTEM_LIBRARIES is set. VERSION_INFO (also `nokogiri
    -v`) exposes whether libxml was compiled from packaged source, or the system
    library was used.

    (Windows) libxml upgraded to 2.8.0

  Deprecations

    Support for Ruby 1.8.7 and prior has been dropped
   2014-03-25 17:14:45 by Takahiro Kambe | Files touched by this commit (1)
Log message:
Add support for GEM_EXTSDIR.
   2014-03-13 12:08:54 by Jonathan Perkin | Files touched by this commit (67)
Log message:
Set USE_GCC_RUNTIME=yes for packages which build shared libraries but do
not use libtool to do so.  This is required to correctly depend upon a
gcc runtime package (e.g. gcc47-libs) when using USE_PKGSRC_GCC_RUNTIME.
   2014-01-01 12:52:43 by Thomas Klausner | Files touched by this commit (776)
Log message:
Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump.
   2013-12-30 00:26:04 by Takahiro Kambe | Files touched by this commit (2)
Log message:
Update ruby-nokogiri to 1.5.11, fixing security problem of CVE-2013-6461.
This problem is in JRuby only, but JRuby exists in pkgsrc-wip.

=== 1.5.11 / 2013-12-14

* Bugfixes

  * (JRuby) Fix out of memory bug when certain invalid documents are parsed.
  * (JRuby) Fix regression of billion-laughs vulnerability. #586
   2013-09-15 18:20:51 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update ruby-nokogiri to 1.5.10.

=== 1.5.10 / 2013-06-07

* Bugfixes

  * (JRuby) Fix "null document" error when parsing an empty IO in \ 
jruby 1.7.3. #883
  * (JRuby) Fix schema validation when XSD has DOCTYPE set to DTD. #861 (Thanks, \ 
Patrick Cheng!)
  * (MRI) Fix segfault when there is no default subelement for an HTML node. #917

* Notes

  * Use rb_ary_entry instead of RARRAY_PTR (you know, for Rubinius). #877 \ 
(Thanks, Dirkjan Bussink!)
  * Fix TypeError when running tests. #900 (Thanks, Cédric Boutillier!)

=== 1.5.9 / 2013-03-21

* Bugfixes

  * Ensure that prefixed attributes are properly namespaced when reparented. #869
  * Fix for inconsistent namespaced attribute access for SVG nested in HTML. #861
  * (MRI) Fixed a memory leak in fragment parsing if nodes are not all \ 
subsequently reparented. #856

=== 1.5.8 / 2013-03-19

* Bugfixes

  * (JRuby) Fix EmptyStackException thrown by elements with xlink:href \ 
attributes and no base_uri #534, #805. (Thanks, Patrick Quinn and Brian \ 
Hoffman!)
  * Fixes duplicate attributes issue introduced in 1.5.7. #865
  * Allow use of a prefixed namespace on a root node using \ 
Nokogiri::XML::Builder #868

=== 1.5.7 / 2013-03-18

* Features

  * Windows support for Ruby 2.0.

* Bugfixes

  * SAX::Parser.parse_io throw an error when used with lower case encoding. #828
  * (JRuby) Java Nokogiri is finally green (passes all tests) under 1.8 and 1.9 \ 
mode. High five everyone. #798, #705
  * (JRuby) Nokogiri::XML::Reader broken (as a pull parser) on jruby - reads the \ 
whole XML document. #831
  * (JRuby) JRuby hangs parsing "&". #837
  * (JRuby) JRuby NPE parsing an invalid XML instruction. #838
  * (JRuby) Node#content= incompatibility. #839
  * (JRuby) to_xhtml doesn't print the last slash for self-closing tags in \ 
JRuby. #834
  * (JRuby) Adding an EntityReference after a Text node mangles the entity in \ 
JRuby. #835
  * (JRuby) JRuby version inconsistency: nil for empty attributes. #818
  * CSS queries for classes (e.g., ".foo") now treat all whitespace \ 
identically. #854
  * Namespace behavior cleaned up and made consistent between JRuby and MRI. \ 
#846, #801 (Thanks, Michael Klein!)
  * (MRI) SAX parser handles empty processing instructions. #845
   2013-09-09 14:29:26 by Filip Hajny | Files touched by this commit (9)
Log message:
Resign as maintainer (not really using Ruby at all any more).
   2013-02-11 03:44:26 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update ruby-nokogiri to 1.5.6.

== 1.5.6 / unreleased

* Features

  * Improved performance of XML::Document#collect_namespaces. #761 (Thanks, \ 
Juergen Mangler!)
  * New callback SAX::Document#processing_instruction (Thanks, Kitaiti Makoto!)
  * Node#native_content= allows setting unescaped node contant. #768
  * XPath lookup with namespaces supports symbol keys. #729 (Thanks, Ben Langfeld.)
  * XML::Node#[]= stringifies values. #729 (Thanks, Ben Langfeld.)
  * bin/nokogiri will process a document from $stdin
  * bin/nokogiri -e will execute a program from the command line
  * bin/nokogiri --version will print the Xerces and NekoHTML versions when ran \ 
with JRuby.

* Bugfixes
  * Nokogiri now detects XSLT transform errors. #731 (Thanks, Justin Fitzsimmons!)
  * Don't throw an Error when trying to replace top-level text node in \ 
DocumentFragment. #775
  * Raise an ArgumentError if an invalid encoding is passed to the SAX parser. \ 
#756 (Thanks, Bradley Schaefer!)
  * [JRuby] space prior to xml preamble causes nokogiri to fail parsing. (fixed \ 
along with #748) #790
  * [JRuby] Fixed the bug Nokogiri::XML::Node#content inconsistency between Java \ 
and C. #794, #797
  * [JRuby] raises INVALID_CHARACTER_ERR exception when EntityReference name \ 
starts with '#'. #719
  * [JRuby] doesn't coerce namespaces out of strings on a direct subclass of \ 
Node. #715
  * [JRuby] Node#content now renders newlines properly. #737 (Thanks, Piotr \ 
Szmielew!)
  * [JRuby] Unknown namespace are ignore when the recover option is used. #748
  * [JRuby] XPath queries for namespaces should not throw exceptions when called \ 
twice in a row. #764
  * [JRuby] More consistent (with libxml2) whitespace formatting when emitting \ 
XML. #771
  * [JRuby] namespaced attributes broken when appending raw xml to builder. #770
  * [JRuby] Nokogiri::XML::Document#wrap raises undefined method `length' for \ 
nil:NilClass when trying to << to a node. #781
  * [JRuby] Fixed "bad file descriptor" bug when closing open file \ 
descriptors. #495
  * [JRuby] JRuby/CRuby incompatibility for attribute decorators. #785
  * [JRuby] Issues parsing valid XML with no internal subset in the DTD. #547, #811
  * [JRuby] Issues parsing valid node content when it contains colons. #728
  * [JRuby] Correctly parse the doc type of html documents. #733
  * [JRuby] Include dtd in the xml output when a builder is used with \ 
create_internal_subset. #751
  * [JRuby] builder requires textwrappers for valid utf8 in jruby, not in mri. #784
   2012-10-25 08:57:09 by Aleksej Saushev | Files touched by this commit (587)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.

Next | Query returned 92 messages, browsing 71 to 80 | Previous