2015-04-03 12:19:21 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 3.005 based on PR 49772 by kj Woolley:
3.005 Jan 05 2015
* Build improvements related to char signedness being platform
dependent.
3.004 Dec 27 2014
* Performance optimizations and other miscellaneous changes.
* Build improvements.
* Win32 fixes for weakrefs.
3.003 Oct 19 2014
* Niko Tyni fixed the 64-bit big endian Sereal bug! (Yay Niko!)
* Sereal::Decoder::Constants will now have a defined $VERSION
* Setup META.yml correctly so that certain dependencies are
marked as being test dependencies and not build or run-time
dependencies.
* Allow one to build against an externally supplied version
of csnappy or miniz. Thanks to Petr PÃsaÅ <ppisar@redhat.com>
3.002 Aug 20 2014
* Summary of changes from 3.001 - 3.002
- Introduce "set_readonly" option to decoder
- Introduce "set_readonly_scalars" option to decoder
* Bug fixes
- Fix assertion fails in DEBUG perls (Brian Fraser)
- Fix segfault with "into" interface when decoding references and
strings into the same target SV. See new test t/550_decode_into.t
* Test Infra Changes
- Split up bulk tests to speed up testing and make it easier
to see when a failure is restricted to a specific option.
* Big-Endian Support
- Improved support for Big-Endian machines. We now build and pass test
on Sparc and HP-UX and other platforms with big-endian or strict
alignedness requirements. Much thanks to Jarkko Hietaniemi,
Gregor Herrmann, and H. Merijn Brand for for their assistance with
this.
- We still have issues with s390x (Z/Os) with Sereal. If someone wants
to help it would be appreciated.
3.001
- Upgrade to version 3 of the protocol
* Add Zlib compression support to the protocol
* Add Zlib support to Encoder/Decoder
* Add CANONICAL_UNDEF tag to represent PL_sv_undef
* Change magic header so it is trivial to detect
and reject utf8 encoded Sereal packets.
- Change how we serialize variables which have more
than one of IOK, NOK, and POK set. In general we
favour the numeric form, with the exception of when
all three are set when we favour the string form
(this is to handle engineering notation like "0E0"
where numeric and string equivalence may differ)
|
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-02-06 13:48:52 by David Brownlee | Files touched by this commit (2) |
Log message:
Updated converters/p5-Sereal-Decoder to 2.03
2.03 Tue Jan 7 20:00 2014 (AMS time)
- (Hopefully) final fixes to FREEZE/THAW functionality:
=> Add safe assertion to make sure that we don't segfault on invalid
data.
=> Fix encoding/decoding of data structures with repeated references
to the same instance of a class that has FREEZE/THAW hooks.
Thanks to Christian Hansen for a test case.
- Distribution dependency fix.
2.02 Mon Jan 6 15:00 2014 (AMS time)
- Fundamental fixes for FREEZE/THAW support in previous Sereal v2
releases. If you plan to use FREEZE/THAW, make sure you have 2.02
or better (dito for the encoder).
2.01 Tue Dec 31 08:15 2013 (AMS time)
- Promoting changes from 0.37 to 2.00_03 to a stable release.
(This being the first protocol v2 stable release.)
- Minor performance tweaks.
2.00_03 Sun Dec 29 10:33 2013 (AMS time)
- FREEZE/THAW hooks for object serialization.
- Test improvements (allowing for partial parallel run)
2.00_02 Mon Oct 28 19:23 2013 (AMS time)
- Fix Test::Warn dependency problem of 2.00_01.
2.00_01 Tue Oct 1 07:34 2013 (AMS time)
- NEW PROTOCOL VERSION: V2
- User-data in header functionality: You may embed arbitrary
Sereal-serializable data in a document header. The document
header isn't compressed, so this is ideal for retrieving
small chunks of meta-data (eg. routing information) without
having to deserialize the entire document.
- Relocatable Sereal document bodies
- Encoder never emits non-incremental Snappy encoding for V2
- Offsets now 1-based in relocatable format, not 0
- Fixed VERY obscure (and rare) memory leak.
- Fixed VERY obscure crash on invalid data.
- Improved error messages
- Remove warning about Sereal not being production-grade
(because it IS).
- C89/Windows fixes (bulk88)
- 5.18 compat: Skip test failing due to hash-randomization (Zefram)
|
2013-10-02 12:57:46 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 0.37:
0.37 Mon Sep 2 07:40 2013 (AMS time)
- Remove spurious SvREFCOUNT_dec, previously causing
memory management problems on some vary invalid
input data.
- Fixed a memory leak on exception.
|
2013-07-03 08:41:50 by Jens Rehsack | Files touched by this commit (3) |
Log message:
Adding package for CPAN distribution Sereal-Decoder 0.36 into
converters/p5-Sereal-Decoder.
This library implements a deserializer for an efficient, compact-output,
and feature-rich binary protocol called Sereal. Its sister module
Sereal::Encoder implements an encoder for this format. The two are released
separately to allow for independent and safer upgrading.
The Sereal protocol version that is compatible with this decoder
implementation is currently protocol version 1. As it stands, it will
refuse to attempt to decode future versions of the protocol, but there
is likely going to be an option to decode the parts of the input that
are compatible with version 1 of the protocol. The protocol was designed
to allow for this.
|