2.0.7 Tue May 23 20:41:13 EDT 2017
[FIXES]
- RT#108123: clean up MANIFEST.SKIP
- GH#1: marcdump now prints warnings (Johann Rolschewski)
- remove a reference to SourceForge
- fix a reference to the per4lib mailing list
2.63, 2017-02-03 Re-add some features supposedly in 2.62 but not, and add
more --header options.
ENHANCEMENT
The option -j is now a synonym for --parallelism. (And several
documention bugs about this option are fixed.)
ENHANCEMENT
Additional support for "--header" in dbcolmerge, dbcol, dbrow, and
dbroweval.
BUG FIX
Version 2.62 was supposed to have this improvement, but did not
(and now does): dbfilepivot now allows the --possible-pivots
option, and if it is provided processes the data in one pass.
BUG FIX
Version 2.62 was supposed to have this improvement, but did not
(and now does): dbroweval logs are now quoted.
3.015 Thu Sep 1 20:18:44 CEST 2016
* Fix builds under 5.25+
* Fix various buffer overun bugs found using AFL (thanks to dgryski)
* Fix issue in decode_from_file()
3.014 Dec 7 2015
* Fix builds under 5.8.9
3.012 Dec 6 2015
* Yet another release related to broken META files.
ExtUtils::MakeMaker and CPAN::Meta need to be up to date
or the META files miss stuff.
3.011 Dec 6 2015
* No significant changes. Doc typo fixes, and build tweaks.
3.010 Nov 30 2015
* Fix silly build issue for Sereal. We do some magic so that things
"Just Work" when building from withing the git repo, but that magic
was failing due to a precedence issue in the magic detection logic.
This mean that users building in a git based .cpan dir would see
breakage.
3.009 Nov 30 2015
* Re-relase 3.008 with updated META files.
3.008 Nov 27 2015
* [ENCODER] FIX: Make sure that reserializing a data structure created
using alias_varint_under does not produce a corrupted dataset.
Thanks to Iskra for the report.
* [ENCODER] FIX: Precedence issue related to sort keys options.
Thanks to Petr Písař <ppisar@redhat.com> for the report and fix.
* [ENCODER/DECODER] FIX: Win32 build issues.
3.007 Nov 26 2015
* [DECODER] Build fixes for boxes without any Sereal installed (it seems
to be common on certain types of smokers, and not on others).
* [ENCODER]: Base sort order changed, new sort orders added.
Rework sort logic to be more efficient, fix sorted tied hashes,
define new sort order.
See Sereal::Encoders CHANGES files.
* [ENCODER] Handle PVLV undefs
* [ENCODER] General optimizations.
* [ENCODER] Build fixes for 5.8.9
* [ENCODER] Doc patches
* Win32 build fixes.
3.006 Nov 14 2015
* [DECODER] fix segfaults from heavily corrupted data. Guards
against various pathological cases which could cause segfaults
fixed. Thanks to Damian Gryski and "fuzzing sereal with afl"
for finding these cases.
* [ENCODER] Various subtle fixes to how we choose whether to serialize
the string or numeric version of a value, in particular to
ensure that "00" always round trips as "00", and related issues.
Note this fix has correctness and performance consequences. In
some cases values that used to serialized as integers (arguably
incorrectly) will be serialized as strings instead, and some code
maybe be slower to serialize.
NOTE: Some issues related to this subject are not fixable without
a protocol change. In particular this change may affect the behavior
of code that uses binary logical operators on values serialized
with Perl.
Thanks to Zefram, Tom, and others for help with this issue.
* Fixups for cast warnings under -Wint-to-ptr builds by using
using PTR2INT and INT2PTR for casting our objects.
* Win32 fixes
* Build improvements
* Changes to how we generate constants
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!)
* 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
- Encoder: Introduce "canonical" option to encoder
- Encoder: Introduce "canonical_refs" option to encoder
- Decoder: Introduce "set_readonly" option to decoder
- Decooder: Introduce "set_readonly_scalars" option to decoder
* 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
- Production release 1 of protocol version 3
- Zlib support
- CANONICAL_UNDEF,
- new magic header to make it easier to detect
UTF8 encoded data.
- Minor changes to how scalar values are serialized
to favour more compact representations.
3.015 Thu Sep 1 20:18:44 CEST 2016
* Fix builds under 5.25+
* Fix various buffer overun bugs found using AFL (thanks to dgryski)
* Fix issue in decode_from_file()
2.94 2017-05-29
- fix a test to support perl 5.6
2.93 2017-05-15
- fix packaging issue
2.92 2017-05-15
- production release
2.91_04 2017-01-10
- fixed isa tests for bignum
2.91_03 2017-01-09
- reworked documentation, based on the one for JSON::XS
- let json_pp utility to show the version of JSON::PP
- applied a patch to fix loading order of B module (pali++)
2.91_02 2016-12-04
- fixed not to fail tests under Perl 5.25.* (srezic++)
2.91_01 2016-12-03
- changed the number detection logic, patched by haarg
(experimental)
- merged PR from dagolden to correct 0 handling
- removed base.pm dependency (dolmen)
- fixed wrong character offset spotted by ilmari
- applied patches from Jarkko Hietaniemi to address VAX issues
- small doc fixes from bessarabov, gregoa, Chris Anderson
- applied a patch to remove . in @INC in json_pp (Tony Cook)
- removed $VAR1 from json_pp output, spotted by tokuhirom
- fixed an issue to ignore trailing 0
- added Scalar::Util dependency for Perl 5.8+
- fixed issues spotted by Nicolas Seriot's JSON Test Suite
including experimental UTF-16/32 support and backward
incompatible change of C style comment handling (now disabled
by default)
- moved the guts of JSON::PP::Boolean into lib/JSON/PP/Boolean.pm
and gave it a proper version
- refactored incremental parser to let it handle incomplete
JSON text properly
- imported and tweaked tests from JSON.pm
- minor code clean up
1.08 Package asterisk::perl to resolve pause index upload.
1.07 Replace Config with Conf namespace to resolve conflict with Asterisk::config distro
1.06 New upload with original asterisk-perl distro name
More test script updates to increase code coverage.
1.05 Fix Asterisk::Manager undefined response RT#115789 ( Thanks Chris Hemmerly)
Fix MakeFile.PL and Asterisk::Perl for Pause Indexing (Thanks Jim Keenan)
minor updates on the test scripts
1.04 Asterisk-Perl distribution now on Github.
Added simple test scripts
Travis and CoverAll integration with new Github repository
Asterisk-Perl distribution now ready for Pull Request Challenge (http://cpan-prc.org/)
1.72 2016-09-02 06:50:53-05:00 America/Chicago
* Full release (no changes from 1.71 beyond version)
1.71 2016-09-01 22:57:25-05:00 America/Chicago (TRIAL RELEASE)
* Minor bump for impending BioPerl 1.7 release.
* #2 : 'Unescaped left brace in regex is deprecated' with newer versions of perl
fixed [fjossandon]
Add p5-Text-Diff as test dependency.
1.7.2 - "Entebbe"
[Bugs]
* #247 - Omit unnecessary parent_id attribute added by GFF3Loader [nathanweeks]
* #245 - Code coverage fixes [zmughal,cjfields]
* #237 - Fix warning in Bio::DB::IndexedBase [willmclaren,bosborne]
* #238 - Use a Travis cron job for network tests [zmughal,cjfields]
* #218 - Bio::DB::Flat::BinarySearch should use _fh() instead of fh() as fh() does not take arguments in [thibauthourlier,bosborne]
* #227 - Bio::SeqIO Ignores first line of sequence [VAR121,bosborne]
* #223 - Use Travis Perl helper script and enable coverage [zmughal,cjfields]
* #222 - Fix test RemoteDB/Taxonomy.t: requires networking [zmughal,cjfields]
* #216 - Apply carsonhh's patch (Inline::C fixes) [carsonh,bosborne]
* #213 - Support FTS5 in Bio::DB::SeqFeature::Store::DBI::SQLite [nathanweeks,bosborne]
* #210 - Sorting qualifiers while write embl files [hdevillers,cjfields]
* #209 - Fixed bug in _toDsspKey() [jvolkening,hlapp]
[Code changes]
* PAML-related code from bioperl and bioperl-run are now in a separate distribution on CPAN [carandraug]
2.24 2016-12-27T10:58:00
- Test with Test::More V 1.001002 rather than V 1.302019, and all tests still pass.
See RT#115236. Thanx to Kent Fredric for again (sorry!) prompting me over this.
Lowering the version of Test::More in Makefile.PL is the only change in this version.
2.23 2016-12-21T08:00:00
- Add no_xxe to XML::Twig instantiation. See RT#118972. Many thanx to Lisa Hare for a
very well-crafted set of patches provided via github.
Release Name: 1.14
====================
Tag.pm: Quiet warnings from 5.22.
Start implementing handlers: instead of FRAM(langs)[opts], one can use, e.g., func_name(ID3v1,Cue)[arg1][arg2]
# ID3v2::_frame_select_by_descr is missing //s
New configuration variable ampersand_joiner (default '; ').
New method _auto_field_from() (abstracted from _auto_field()).
Change logic of calling ->can() in _auto_field_from().
_parse_rex_microinterpolate() would not update $ecount on seeing %%.
When parsing with %=c etc: with %==c the match fails if there is no comment.
(Checked the same way as for %{c:}.)
Support some of %-escapes not being matched (e.g, due to alternatives in a REx).
(0-length matches were ignored anyway [when join()ing].)
parse_rex(), parse_rex_match() may return an extra result (if %{handler}s are present).
Recognize ID3v2 frame names as [A-Z]{3}[A-Z\d] (was \w{4}).
(Detection frame/vs/handler happens via PACKAGES; so if lang codes inf/cue appear, we may be in trouble.)
Use the same code in parse(_rex)?_prepare. (Now parse() allows the same %-constructs as parse_rex().)
ID3v2.pm:
New method have_one_of_frames().
New methods *_have() (for simplest fields: title, comment, track, artist, album, genre, year).
ImageExifTool.pm:
Comprehensive docs.
1.32 - 2017-09-15, H.Merijn Brand
* Add keep_headers attribute to csv ()
* Fix on_in when used in combination with key
* Fail on invalid arguments to csv
* Fix header method on EOL = CR (RT#122764)
Alembic is a database migrations tool written by the author of
SQLAlchemy. A migrations tool can emit ALTER statements to a database
in order to change the structure of tables and other constructs,
provides a system whereby "migration scripts" may be constructed; each
script indicates a particular series of steps that can "upgrade" a
target database to a new version, and optionally a series of steps
that can "downgrade" similarly, doing the same steps in reverse, and
allows the scripts to execute in some sequential manner.
Packaged by Kamel Ibn Aziz Derouiche and updated by me.
Recog is a framework for identifying products, services, operating
systems, and hardware by matching fingerprints against data returned
from various network probes. Recog makes it simply to extract useful
information from web server banners, snmp system description fields,
and a whole lot more.
Alphalens is a Python Library for performance analysis of predictive
(alpha) stock factors. Alphalens works great with the Zipline open
source backtesting library, and Pyfolio which provides performance and
risk analysis of financial portfolios.