Next | Query returned 17 messages, browsing 1 to 10 | Previous

History of commit frequency

CVS Commit History:


   2024-03-24 15:33:30 by Takahiro Kambe | Files touched by this commit (2) | Package updated
Log message:
textproc/ruby-csv: update to 3.3.0

3.2.9 (2024-03-22)

Fixes

* Fixed a parse bug that wrong result may be happen when:

    - :skip_lines is used
    - :row_separator is "\r\n"
    - There is a line that includes \n as a column value

 Reported by Ryo Tsukamoto.

 GH-296

3.3.0 (2024-03-22)

Fixes

* Fixed a regression parse bug in 3.2.9 that parsing with :skip_lines may
  cause wrong result.
   2024-01-21 16:28:47 by Takahiro Kambe | Files touched by this commit (1)
Log message:
textproc/ruby-csv: not for ruby33

This package is only for devel/ruby-redmine51 and ruby33 contains the same
version as default gem.
   2023-12-16 06:11:43 by Takahiro Kambe | Files touched by this commit (2) | Package updated
Log message:
textproc/ruby-csv: update to 3.2.8

3.2.8 (2023-11-08)

Improvements

* Added CSV::InvalidEncodingError.

  Patch by Kosuke Shibata.

  GH-287

Thanks

* Kosuke Shibata
   2023-09-09 16:38:46 by Takahiro Kambe | Files touched by this commit (1) | Package updated
Log message:
textproc/ruby-csv: update to 3.2.7

ruby-csv is default gem but 3.2.7 is newer version for both Ruby 3.1 and 3.2
with a few bug fixes.

3.2.7 (2023-06-26)

Improvements

* Removed an unused internal variable.  GH-273 [Patch by Mau Magnaguagno]
* Changed to use https:// instead of http:// in documents.  GH-274 [Patch by
  Vivek Bharath Akupatni]
* Added prefix to a helper module in test.  GH-278 [Patch by Luke Gruber]
* Added a documentation for liberal_parsing: {backslash_quotes: true}.
  GH-280 [Patch by Mark Schneider]

Fixes

* Fixed a wrong execution result in documents.  GH-276 [Patch by Yuki
  Tsujimoto]

* Fixed a bug that the same line is used multiple times.  GH-279 [Reported
  by Gabriel Nagy]

Thanks

* Mau Magnaguagno
* Vivek Bharath Akupatni
* Yuki Tsujimoto
* Luke Gruber
* Mark Schneider
* Gabriel Nagy
   2023-09-09 15:52:57 by Takahiro Kambe | Files touched by this commit (9)
Log message:
Drop support for Ruby 3.0.
   2023-05-30 17:34:58 by Takahiro Kambe | Files touched by this commit (1)
Log message:
textproc/ruby-csv: drop support for ruby27

Now this package is for redmine50 on ruby30.
   2023-03-05 06:15:40 by Takahiro Kambe | Files touched by this commit (2) | Package updated
Log message:
textproc/ruby-csv: update to 3.2.6

pkgsrc change:

* Add note that this package is mainly for redmine50 on Ruby 2.7 and 3.0.
* Not for Ruby 3.2 since ruby32-base has the same version as default gem.

3.2.6 (2022-12-08)

Improvements

* CSV#read consumes the same lines with other methods like CSV#shift.
  [GitHub#258] [Reported by Lhoussaine Ghallou]
* All Enumerable based methods consume the same lines with other methods.
  This may have a performance penalty.  [GitHub#260] [Reported by Lhoussaine
  Ghallou]
* Simplify some implementations.  [GitHub#262] [GitHub#263] [Patch by Mau
  Magnaguagno]

Fixes

* Fixed CSV.generate_lines document. [GitHub#257] [Patch by Sampat Badhe]

Thanks

* Sampat Badhe
* Lhoussaine Ghallou
* Mau Magnaguagno
   2022-08-29 14:59:17 by Takahiro Kambe | Files touched by this commit (3) | Package updated
Log message:
textproc/ruby-csv: update to 3.2.5

3.2.4 (2022-08-22)

Improvements

* Cleaned up internal implementations. [GitHub#249] [GitHub#250]
  [GitHub#251] [Patch by Mau Magnaguagno]
* Added support for RFC 3339 style time. [GitHub#248] [Patch by Thierry
  Lambert]
* Added support for transcoding String CSV. Syntax is
  from-encoding:to-encoding. [GitHub#254] [Reported by Richard Stueven]
* Added quoted information to CSV::FieldInfo. [GitHub#254] [Reported by
  Hirokazu SUZUKI]

Fixes

* Fixed a link in documents. [GitHub#244] [Patch by Peter Zhu]

Thanks

* Peter Zhu
* Mau Magnaguagno
* Thierry Lambert
* Richard Stueven
* Hirokazu SUZUKI
   2022-04-29 14:34:37 by Takahiro Kambe | Files touched by this commit (2) | Package updated
Log message:
textproc/ruby-csv: update to 3.2.3

3.2.3 (2022-04-09)

Improvements

* Added contents summary to CSV::Table#inspect. [GitHub#229][Patch by Eriko
  Sugiyama] [GitHub#235][Patch by Sampat Badhe]

* Suppressed $INPUT_RECORD_SEPARATOR deprecation warning by
  Warning.warn. [GitHub#233][Reported by Jean byroot Boussier]

* Improved error message for liberal parsing with quoted
  values. [GitHub#231][Patch by Nikolay Rys]

* Fixed typos in documentation. [GitHub#236][Patch by Sampat Badhe]

* Added :max_field_size option and deprecated :field_size_limit
  option. [GitHub#238][Reported by Dan Buettner]

* Added :symbol_raw to built-in header converters. [GitHub#237][Reported by
  taki] [GitHub#239][Patch by Eriko Sugiyama]

Fixes

* Fixed a bug that some texts may be dropped unexpectedly. [Bug
  #18245][ruby-core:105587][Reported by Hassan Abdul Rehman]

* Fixed a bug that :field_size_limit doesn't work with not complex
  row. [GitHub#238][Reported by Dan Buettner]

Thanks

* Hassan Abdul Rehman

* Eriko Sugiyama

* Jean byroot Boussier

* Nikolay Rys

* Sampat Badhe

* Dan Buettner

* taki
   2022-01-16 16:01:48 by Takahiro Kambe | Files touched by this commit (3) | Package updated
Log message:
textproc/ruby-csv: update to 3.2.2

pkgsrc change: remove restriction for Ruby's version since this
package can install without error for All Ruby Version although
Ruby 3.1 has the same version in base.

3.2.2 (2021-12-24)

Improvements

* Added a validation for invalid option
  combination. [GitHub#225][Patch by adamroyjones]

* Improved documentation for developers. [GitHub#227][Patch by Eriko
  Sugiyama]

Fixes

* Fixed a bug that all of ARGF contents may not be
  consumed. [GitHub#228][Reported by Rafael Navaza]

* Fixed a bug that some texts may be dropped unexpectedly. [Bug
  #18245][ruby-core:105587][Reported by Hassan Abdul Rehman]

* Thanks

  - adamroyjones
  - Eriko Sugiyama
  - Rafael Navaza
  - Hassan Abdul Rehman

3.2.1 (2021-10-23)

Improvements

* doc: Fixed wrong class name. [GitHub#217][Patch by Vince]

* Changed to always use "\n" for the default row separator on Ruby 3.0
  or later because $INPUT_RECORD_SEPARATOR was deprecated since Ruby
  3.0.

* Added support for Ractor. [GitHub#218][Patch by rm155]

  - Users who want to use the built-in converters in non-main Ractors
    need to call Ractor.make_shareable(CSV::Converters) and/or
    Ractor.make_shareable(CSV::HeaderConverters) before creating
    non-main Ractors.

* Thanks

  - Vince
  - Joakim Antman
  - rm155

3.2.0 (2021-06-06)

Improvements

* CSV.open: Added support for :newline option. [GitHub#198][Patch by
  Nobuyoshi Nakada]

* CSV::Table#each: Added support for column mode with duplicated
  headers. [GitHub#206][Reported by Yaroslav Berezovskiy]

* Object#CSV: Added support for Ruby 3.0.

* CSV::Row: Added support for pattern matching. [GitHub#207][Patch by
  Kevin Newton]

Fixes

* Fixed typos in documentation. [GitHub#196][GitHub#205][Patch by
  Sampat Badhe]

* Thanks

  - Sampat Badhe
  - Nobuyoshi Nakada
  - Yaroslav Berezovskiy
  - Kevin Newton

Next | Query returned 17 messages, browsing 1 to 10 | Previous