* Update Serbian translation (thanks to Мирослав Николић).
* Add Chinese (simplified) translation of info page (thanks to Mingye Wang).
* Update Brazilian Portuguese translation (thanks to Rafael Fontenelle).
* Reduce the minimum translation to 60% for info files.
* Extract version from dpkg-parsechangelog using the new flag, rather
than sed.
* Add hardening flags via DEB_BUILD_MAINT_OPTIONS.
* Use secure VCS URIs.
* Update standards version to 3.9.8.
Version 3.8.2 released 2016-02-14
* Fix implicit cast compiler warning in _speedups.c
* simplejson is now available as wheels for OS X and Windows thanks to Travis-CI
and AppVeyor respectively! Many thanks to @aebrahim for getting this party
started.
https://github.com/simplejson/simplejson/pull/130https://github.com/simplejson/simplejson/issues/122
Version 3.8.1 released 2015-10-27
* Fix issue with iterable_as_array and indent option
https://github.com/simplejson/simplejson/issues/128
* Fix typo in keyword argument name introduced in 3.8.0
https://github.com/simplejson/simplejson/pull/123
Version 3.8.0 released 2015-07-18
* New iterable_as_array encoder option to perform lazy serialization of
any iterable objects, without having to convert to tuple or list.
Version 3.7.3 released 2015-05-31
* Fix typo introduced in 3.7.0 (behavior should be indistinguishable)
e18cc09b68 (commitcomment-11443842)
Version 3.7.2 released 2015-05-22
* Do not cache Decimal class in encoder, only reference the decimal module.
This may make reload work in more common scenarios.
Version 3.7.1 released 2015-05-18
* Fix compilation with MSVC
https://github.com/simplejson/simplejson/pull/119
Version 3.7.0 released 2015-05-18
* simplejson no longer trusts custom str/repr methods for int, long, float
subclasses. These instances are now formatted as if they were exact
instances of those types.
https://github.com/simplejson/simplejson/issues/118
Changelog:
15/11/2015
- RagTime v5-v6 parser: try to retrieve the embedded spreadsheets
+ begin to understand the hierarchical structures which store
a chart (but not the meaning of each field),
- ClarisWorks/AppleWorks: find a new structure in the file's header
(which could prevent to convert some database's file),
- BeagleWorks/GreatWorks/Word Perfect Works: retrieve the picture's
field in a database
- all: improve a little the methods which create spreadsheets,
- all: make some constructors explicit.
10/13/2015
- add a parser for Style documents(at least v1.6 and v1.9)
10/9/2015
- add file signatures for FullPaint documents which have the same format as MacPaint..
10/8/2015
- add a parser for Pixel Paint documents
Upstream changes:
2.27400 2016-04-23
[JSON::PP] appleid and merged long term neglected patches & PRs.
thanks to charsbar
- document patches
by AM909, leon[at]astray.com, dsteinbrunner, jwilk, alfiedotwtf
- modified Makefile.PL to set UNINST=1 if needed on old perls
by dagolden
- decode decimals to Perl's internal NV type
by dagolden
see to https://github.com/makamaka/JSON-PP/commits/master
libcdr 0.1.3
* Improvements for CMX parsers
- More robust parsing using the pointers from CMX header
- Implement almost all fills
- Implement outline properties
- Implement embedded raster images
- Implement transparency lens for fills
* Some fixes for CDR parsers
- Consider fill/outline styles
* Tools
- Make cmx2* and cdr2* tools handle both CDR and CMX
Upstream changes:
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 Dec 1 2015
* Build fixes.
3.009 Nov 30 2015
* Re-relase 3.008 with updated META files.
3.008 Nov 27 2015
* FIX: Win32 build issues.
3.007 Nov 26 2015
* Build fixes for boxes without any Sereal installed (it seems
to be common on certain types of smokers, and not on others).
* [ENCODER]: new sort orders added.
* Fix incremental parsing of utf8 strings. See
https://rt.cpan.org/Public/Bug/Display.html?id=93892
* Encoder 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
Upstream changes:
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 Dec 1 2015
* Build fixes.
3.009 Nov 30 2015
* Re-relase 3.008 with updated META files.
3.008 Nov 27 2015
* 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.
* FIX: Precedence issue related to sort keys options. Thanks
to Petr P穩sa� <ppisar@redhat.com> for the report and fix.
* FIX: Win32 build issues, thanks to bulk88 for help.
3.007 Nov 26 2015
* FIX: sorting should now work with tied hashes, and
be in general faster.
* CHANGED: Sort order for sort_keys=1 is now defined to be
"in order by length of bytes, then by byte order of the
underlying string, then by utd8ness, with non-utf8 first".
This sort order was chosen because it requires the least
operations to perform in the most cases, has a bounded number
of cases where we would have to create any temporary SV's or
to do operations that require us to introspect codepoints in
utf8 strings. IOW purely performance. Note that so long
as you compare data created with the same sort_keys setting
you will ALWAYS get the same order *in process*, regardless
of what you choose. Backwards compatible support for the
old order is available via sort_keys=3.
ADDED: sort_keys=2 to provide "perl cmp order"
(Its just there because it is easy to do, not for any
good reason.)
ADDED: sort_keys=3 to provide "rev perl cmp order"
Legacy sort order was equivalent to sort_keys=3, use this
option *ONLY* if you are extremely sensitive to changes in the
sorted order (or "canonical form").
* [DECODER] Build fixes for boxes without any Sereal installed (it seems
to be common on certain types of smokers, and not on others).
* Fix issues with serializing blessed scalars where we see the
blessed scalar before we see the reference to it.
* Handle PVLV undefs
* Build fixes for 5.8.9
* Doc patches
* Optimizations
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
Upstream changes:
1.5 Sat Jul 11 03:56:06 CEST 2015
- fix a heap overflow (testcase by Krzysztof Wojta�).
- on systems that support it (posix + mmap + map_anonymous),
allocate all dynamic areas via mmap and put four guard
pages around them, to catch similar heap overflows
safely in the future.
- find a safer way to pass in CC/CFLAGS to uulib.
- added stability canary support.
1.25 Wed Dec 16 03:05:57 UTC 2015
- Fix Normalize.xs to work on releases earlier than 5.8. The problem was
introduced in this module's version 1.24
- Go back to shipping pure perl version as well as XS, as was done up
through release 1.17
1.24 Sun Nov 29 05:48:44 UTC 2015
- Updated to use most recent GNU license file.
( https://rt.cpan.org/Public/Bug/Display.html?id=108003 )
- Silence compiler warning message
( https://rt.cpan.org/Public/Bug/Display.html?id=109577 )
- Add kwalitee suggested changes.
1.23 Sun Oct 25 14:50:28 UTC 2015
- Fix mkhdr to work on releases earlier than 5.8
1.22 Thu Oct 08 16:50:17 2015
- Reinstate XSUB, now works on modern EBCDIC perls as well.
- Kwalitee changes
- Makefile fixes
- small bug fix in header generation script.
1.21 Fri Oct 02 15:33:17 2015
- Get pure perl version to work on modern EBCDIC perls.
- Some comment and pod improvements
1.20 Fri Oct 02 15:30:40 2015
- Not officially released, was incomplete import of 1.19
1.19 Sat Jul 11 12:39:38 2015
- [rt.cpan.org #105620] Useless dependency on bytes and File::Copy
* Update MASTER_SITES
Changelog:
Notes for a candidate are not displayed if the candidate is the first one (RHBZ#1136421)
「」 cannot be typed with ibus-kkc when the German keyboard layout is used, only [] are inserted the (RHBZ#1136722)
Fix compilation error with development version of Vala
Changelog:
0.4.2 -> 0.4.3
- add support for Microsoft Word for DOS files
0.4.1 -> 0.4.2
- add support for Microsoft Write files
0.4.0 -> 0.4.1
- correct some afl errors + improve the sheet's generation...
Changelog:
0.3.0 - 0.3.1
* Fix crash when NULL is passed as input stream.
- Use symbol visibility on Linux. The library only exports public functions
now.
- Fix various crashes and hangs when reading broken files found with the
help of american-fuzzy-lop.
- Fix some warnings found by Coverity.
- Make --help output of all command line tools more help2man-friendly.
Changelog:
0.10.0 - 0.10.1
- Fix crash when NULL is passed as input stream.
- Use symbol visibility on Linux. The library only exports public functions
now.
- Avoid infinite loop. (libwpd#3)
- Remove bashism. (libwpd#5)
- Fix various crashes and hangs when reading broken files found with the
help of american-fuzzy-lop.
- Make --help output of all command line tools more help2man-friendly.
- Miscellaneous fixes and cleanups.
Changelog:
librevenge 0.0.4
- Fix possible crash in raw generators for unbalanced open/close calls.
- Fix build in C++11 mode.
- Fix gdb pretty printers and make them compatible with Python 3.
- Fix RVNGString::Iter::last(), which only worked correctly for strings
containing only ASCII characters.
- Document the difference between RVNGString::len() and RVNGString::size().
- Considerably improve performance of RVNGString iterator (a crude
measurement shows at least 45% improvement).
libpagemaker 0.0.3
- Make --help output of conversion tools help2man-friendly.
- Read big endian (Mac) files (tdf#91419).
- Other small fixes and improvements.
3.02 Fri Feb 26 22:45:20 CET 2016
- allow_nonref now affects booleans (\1, $Types::Serialiser::Boolean)
as well (reported by Alex Efros).
- allow literal tabs in strings in relaxed mode (patch by
lubo.rintel@gooddata.com).
- support "cbor" format in json_xs tool.
- support (and fix) calling encode and decode in list context
(reported by Вадим Власов).
- work around a bug in older perls crashing when presented
with shared hash keys (Reini Urban).
- use stability canary.
Changelog:
2016-02-13: Version 7.3.3. New flags h (print header) and p (remove
path from file name) for option -i, --info. Fixed printing text in
unicode UTF-16 mode on Windows, so that when it is redirected to
a file, a correct UTF-16 file is created. Fixed printing of East-Asian
text on Windows with an East-Asian regional setting.
libetonyek 0.1.6
- All formats:
+ Improved handling of text language, e.g., written language props now
include country and script.
- Keynote 6:
+ Parse links.
+ Parse text language.
+ Parse lists (bullets).
+ Resize tables properly.
+ Fix handling of texts containing non-ASCII characters (i.e., the
majority of non-English languages).
- Miscellaneous:
+ Fix build with boost 1.54/1.55.
+ Make help output of conversion tools more help2man-friendly.
+ Fix build with recent clang, which does not like 'register' keyword.
+ Various small fixes and improvements.
libetonyek 0.1.5
- Parse slide background.
- Parse shape style: fill, line stroke, opacity, shadow.
- Parse table style: default cell borders, background etc.
- Various fixes and improvements.
libetonyek 0.1.4
- Parse formulas.
- Parse cell type and number format.
- Require mdds 1.0 by default (but 0.12.1 is still supported).
- Add support for Keynote 6. Imported features include: shapes, images,
text + text formatting, presentation notes, tables (only simple tables
are supported.)
libetonyek 0.1.3
- Common:
+ Import more text formatting properties.
+ Correctly interpret properties set by paragraph style, but turned
off in character style.
+ Import paragraph borders.
+ Import metadata.
+ Collect styles and other referenceable entities even from skipped
parts of the input.
+ Fix a typo that caused shapes being dropped from output.
+ Import table borders.
+ Add dependency on mdds.
+ Various small bugfixes and improvements.
- Pages:
+ Import headers and footers.
+ Import footnotes and endnotes.
+ Import images.
+ Import shapes.
+ Import text columns.
+ Accept documents created by Pages 1-3.
- Numbers:
+ Accept documents created by Numbers 1.
libetonyek 0.1.2
- Use symbol visibility on Linux. The library only exports the two public
functions now.
- Refactor the parser to allow sharing of code among Keynote, Pages and
Numbers parsers.
- Add initial support for Pages (v. 4 only): text and text formatting,
tables.
- Parse text language.
- Parse links.
- Fix parsing of tab stops.
- Add dependency on glm.
- Add initial support for Numbers (v. 2 only): sheets and cell content.
- Fix parsing of simple cell text content, which was ignored previously.
- Various small bugfixes and improvements.