Upstream changes:
0.70 Sat Jun 9 21:53:05 CEST 2018
- Fix format specifier/argument mismatch PR#79 @a3f++
- Travis CI: Test on Perl 5.26 PR#80 @a3f++
- Fix a C90-compatibility issue PR#81 @stphnlyd++
Upstream changes:
0.67 Wed Nov 15 18:59:33 CET 2017
- Support standard tags !!str, !!map and !!seq instead of dying. PR#67
(TINITA++)
- Support JSON::PP::Boolean and boolean.pm via $YAML::XS::Boolean. PR#66
(TINITA++) Thanks also to Bj枚rn H枚hrmann for SvPV_nolen()
0.66 Thu Aug 17 20:06:06 CEST 2017
- Apply PR#55 (@vti++)
- Dump() was modifying original data, adding a PV to numbers
- Added a test for this (TINITA++)
0.65 Thu 18 May 23:09:38 CEST 2017
- Prevent warning about unused variables (see issue#59)
- Clarify documentation about exported functions
Upstream changes:
0.64 Fri 7 Apr 20:32:01 CEST 2017
- use lib FindBin::Bin in tests, preparing for perl 5.26 where '.' gets
removed from @INC. Fixes issue#54 TINITA++
- Use the latest libyaml sources.
- Lazy load B::Deparse for faster startup time. Applied PR/53 by
@perlpunk++ (submitted by @carnil++ from a Debian issue as GitHub
issue#52)
0.62 Mon Feb 22 15:46:06 UTC 2016
- Apply PR/42 @perlpunk++ (fix for detecting filehandles)
0.61 Sat Feb 20 18:04:19 UTC 2016
- Apply PR/37 @perlpunk++ (includes PR/36 @lameventanas++)
0.60 Tue Feb 9 14:36:09 EST 2016
- Apply PR/33. @andygrundman++. Solaris fixes.
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.
0.59 Mon Jan 26 15:04:10 PST 2015
- PR/23 Better scalar dump heuristics
- More closely match YAML.pm
- Thanks Matthias Bethke
0.58 Tue Jan 20 21:01:49 PST 2015
- Add a VERSION statement to YAML::LibYAML (issue#8)
0.57 Thu Jan 15 23:05:15 EST 2015
- Applied fix for PR/21. nawglan++
0.56 Thu Jan 15 22:21:47 EST 2015
- Update copyright year
- Use Swim cpan-tail block functions in doc
0.55 Mon Dec 22 17:26:27 PST 2014
- Get YAML::XS using latest libyaml
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.
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package
Like last time, where this caused no complaints.
from 0.33nb2 to 0.37.
pkgsrc changes:
- adjust module type
- adjust license
Upstream changes:
---
version: 0.37
date: Thu Sep 29 20:09:20 CEST 2011
changes:
- Fix the bug that accidentally released YAML-XS instead of YAML-LibYAML.
- Released from Wendy++ and Liz++'s Guest Bedroom.
---
version: 0.36
date: Sun Sep 25 22:08:53 CEST 2011
changes:
- Switch to Module::Package
- Fix LoadFile on empty file failure.
- Released from Wendy++ and Liz++'s Basement Server Room.
---
version: 0.35
date: Mon Apr 4 00:33:09 CST 2011
changes:
- Apply bdfoy patch from rt-46172
- Update ppport.h to fix rt-64749 & rt-62054
- Add ANDK's regexp.t patch from rt-62266
---
version: 0.34
date: Wed Apr 14 17:57:10 PDT 2010
changes:
- These changes from chansen++
- Handle misbehaved tied hashes
- Handle 'get' magic
- Added support for tied arrays and hashes
- Don't turn on the UTF-8 flag for strings containing US-ASCII (0x00-0x7F)
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.
sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
- Updating module to 0.32
Upstream changes:
version: 0.32
date: Mon Jan 12 11:23:55 IST 2009
changes:
- newSVpvs is not portable, change to newSVpvn
- update ppport.h options
version: 0.31
date: Mon Jan 12 11:23:55 IST 2009
changes:
- Fix the leak test so it doesn't load an unused, undeclared dependency
(Test::LongString)
Pkgsrc changes:
o Add PERL5_REQD+= 5.8.3
Upstream changes:
version: 0.30
date: Sun Jan 11 12:53:55 IST 2009
changes:
- Plug a leak in Load
- More efficient intermediate structure allocation
Upstream changes:
version: 0.29
date: Tue Nov 11 22:57:07 PST 2008
changes:
- Check SvNIOK when dumping and format if quotes when it's a string that looks
like a number
- Parse plain scalars as numbers when they look like numbers
- Load nulls as newSV(0) instead of &PL_sv_undef to avoid "Modification of
non-creatable hash value attempted" errors
version: 0.28
date: Mon Jun 23 15:23:24 PDT 2008
changes:
- Apply UTF8 patch supplied by KLEINJ in rt.cpan#36734
Packaged by Edgar Fuss and provided by PR 39756.
Kirill Siminov's libyaml is arguably the best YAML implementation.
The C library is written precisely to the YAML 1.1 specification.
It was originally bound to Python and was later bound to Ruby.
This module is a Perl XS binding to libyaml which will (eventually)
offer Perl the best YAML support to date.
This module exports the functions Dump and Load. These functions are
intended to work exactly like YAML.pm's corresponding functions.