Next | Query returned 38 messages, browsing 11 to 20 | Previous

History of commit frequency

CVS Commit History:


   2018-02-25 20:03:22 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
p5-YAML-Tiny: update to 1.73.

1.73    2018-02-21 21:07:59Z

        - shipping 1.72 as stable, with no changes.

1.72    2017-02-12 23:17:26Z (TRIAL RELEASE)

        [FIXED]

        - fix compatibility with Test::Builder 0.94 in test shim

1.71    2017-02-04 05:44:07Z (TRIAL RELEASE)

        [FIXED]

        - Perform correct stripping of leading white space in literal/folded
          text blocks (Flavio Poletti, GitHub #44, fixes RT#56045).
   2017-06-05 16:25:36 by Ryo ONODERA | Files touched by this commit (2298)
Log message:
Recursive revbump from lang/perl5 5.26.0
   2017-02-22 13:48:11 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
Updated textproc/p5-YAML-Tiny to 1.70
-------------------------------------
1.70    2017-01-22 08:59:54Z
        [FIXED]
        - Some errors writing to a file were incorrectly reported.
   2016-06-08 21:25:20 by Thomas Klausner | Files touched by this commit (2236)
Log message:
Bump PKGREVISION for perl-5.24.
   2016-01-08 15:18:32 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 1.69

Upstream changes:
1.69    2015-07-26 00:51:03Z
        - No changes since 1.68-TRIAL.

1.68    2015-07-09 23:39:49Z (TRIAL RELEASE)

        [FIXED]

        - tests no longer print to stderr unnecessarily; this makes core perl
          builds (where this distribution is included as CPAN-Meta-YAML) a
          little quieter.

        [CHANGED]

        - the Test::More dependency has been reduced to 0.88 by emulating
          'subtest' for those tests that need it

1.67    2015-05-12 00:10:24Z

        [FIXED]

        - instead of erroring on duplicate keys found in a hash (introduced in
          version 1.63), now we only warn. This fixes an issue in Strawberry Perl
          (via CPAN::Meta::YAML) when parsing a configuration file.

        [CHANGED]

        - Updated File::Temp test prereq to 0.19 for 'newdir'

1.66    2015-03-16 22:26:30Z

        [CHANGED]

        - removed bundled Test::TempDir::Tiny to rely on File::Temp
          for temporary directories during testing

1.65    2015-03-13 23:02:34Z

        [CHANGED]

        - artifacts left behind from testing are now cleaned up (GH#34)

1.64    2014-10-08 02:56:30Z

        [CHANGED]

        - remove silencing of any errors encountered while loading
          Scalar::Util (GH#33, Graham Knop)
        - now using JSON::MaybeXS in tests instead of JSON.pm
   2015-11-04 03:00:17 by Alistair G. Crooks | Files touched by this commit (797)
Log message:
Add SHA512 digests for distfiles for textproc category

Problems found locating distfiles:
	Package cabocha: missing distfile cabocha-0.68.tar.bz2
	Package convertlit: missing distfile clit18src.zip
	Package php-enchant: missing distfile php-enchant/enchant-1.1.0.tgz

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
   2015-06-12 12:52:19 by Thomas Klausner | Files touched by this commit (3152)
Log message:
Recursive PKGREVISION bump for all packages mentioning 'perl',
having a PKGNAME of p5-*, or depending such a package,
for perl-5.22.0.
   2014-08-11 04:30:54 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 1.63

Upstream changes:
1.63      2014-06-11 21:58:18Z

        [FIXED]

        - incorrect error messages fixed, when $@ is clobbered when Carp
          wasn't loaded (GH#30, GH#31, Hilko Bengen)

        [CHANGED]

        - now checking for, and erroring on, duplicate keys found in a hash
          (GH#32, Hilko Bengen)
   2014-05-30 01:38:20 by Thomas Klausner | Files touched by this commit (3049)
Log message:
Bump for perl-5.20.0.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
   2014-05-03 12:43:10 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 1.62

Upstream changes:
1.62      2014-03-16 12:28:44Z

        [FIXED]

        - fix handling of trailing colon in key name (RT#92916, H.Merijn
          Brand)

1.61      2014-02-24 16:59:49Z
        [FIXED]

        - fixed a test for VMS (RT#93297, Craig Berry)

1.60      2014-02-13 20:31:56Z

        - shipping 1.59 as stable, with no changes.

1.59      2014-02-06 03:10:35Z (TRIAL RELEASE)

        [CHANGED]

        - numeric values are now quoted whenever they've been used as a string
          (fixes inconsistent behaviour seen with numeric values, due to
          differences between the XS and pure-perl variants of Data::Dumper).
          (github issue #24)
        - numeric hash keys are now always quoted.

1.58      2014-02-04 18:01:58Z

        [INCOMPATIBLE CHANGE]

        - 1.57 omitted a change entry for the following change:

        - Previously, YAML::Tiny was sloppy about file encodings.  It is
          now strict.  The 'read' method and 'LoadFile' function expect
          UTF-8 encoded files.  The 'write' method and 'DumpFile' function
          produce UTF-8 encoded files.  The 'read_string' and
          'write_string' methods and the 'Load' and 'Dump' functions
          expect or generate (decoded) character data.

1.57      2014-01-30 22:12:38Z

        [INCOMPATIBLE CHANGE]

          - Previously, some errors would throw exceptions and some would
            return the error condition in $YAML::Tiny::errstr.  Now all
            errors throw exceptions.  Use of $errstr and the errstr method
            are deprecated. (David Golden)

        [FIXED]

          - Fixed write method to encode YAML file with UTF-8 (David Golden)
          - Improved SYNOPSIS and documentation of new (David Golden)

        [TESTING]

          - Tests have been cleaned up and reorganized.  Test coverage
            has been significnatly improved. (Ingy d枚t Net, David Golden,
            Jim Keenan, Karen Etheridge)

1.56      2013-09-25 02:38:19Z
          - read_string documentation error fixed (RT#74409, thanks Tim Heaney!)
          - re-release with fixed compile test

1.55      2013-09-19 04:07:32Z
          - again packaging with ExtUtils::MakeMaker

1.54      2013-08-22 03:55:41Z
          - convert to Dist::Zilla
          - Updated format to conform to CPAN::Changes::Spec

Next | Query returned 38 messages, browsing 11 to 20 | Previous