From bee29f23d2d11722746612454d87c7bd387dde34 Mon Sep 17 00:00:00 2001 From: jeg2 Date: Sat, 25 Oct 2008 00:54:38 +0000 Subject: * lib/csv.rb: Fixed a bug in read_to_char() that would slurp whole files if the encoding was invalid. It will now read up to 10 bytes ahead to find a valid character boundary or give up. [ruby-core:19465] * test/csv/test_features.rb, test/csv/test_table.rb, test/csv/test_row.rb: Loosened some tests to check for a compatible? Encoding instea of an exact Encoding. [ruby-core:19470] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19931 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 38445d087..69599e507 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +Sat Oct 25 09:54:10 2008 James Edward Gray II + + * lib/csv.rb: Fixed a bug in read_to_char() that would slurp + whole files if the encoding was invalid. It will now read + up to 10 bytes ahead to find a valid character boundary or + give up. [ruby-core:19465] + * test/csv/test_features.rb, test/csv/test_table.rb, test/csv/test_row.rb: + Loosened some tests to check for a compatible? Encoding instea + of an exact Encoding. [ruby-core:19470] + Sat Oct 25 07:42:49 2008 Eric Hodel * lib/rdoc*: Update to RDoc 2.2.2 r192. -- cgit