Changelog for
libqpdf21-8.0.0-3.1.x86_64.rpm :
Mon Feb 26 13:00:00 2018 avindraAATTopensuse.org
- Update to version 8.0.0
* Fix: QPDFObjectHandle::getUTF8Val now properly treats
non-Unicode strings as encoded with PDF Doc Encoding.
* Fix: Improvements to handling of objects in PDF files that are
not of the expected type. In most cases, qpdf will be able to
warn for such cases rather than fail with an exception. Previous
versions of qpdf would sometimes fail with errors such as
“operation for dictionary object attempted on object of wrong
type”. This situation should be mostly or entirely eliminated now.
* CLI: option --linearize-pass1=file has been added for debugging
linearization code.
* CLI: option --coalesce-contents can be used to combine content
streams of a page whose contents are an array of streams into
a single stream.
* API: Add function qpdf_check_pdf to C API. It does basic checking
that is a subset of what qpdf --check performs.
* API: Major enhancements to lexical layer of qpdf. Improved
ability to handle erroneous files. Programs can now handle
whitespace, comments, and inline images as tokens. See
ChangeLog for more detail.
* API: New API for working with PDF content streams at a lexical
level. The new class QPDFObjectHandle::TokenFilter allows the
developer to provide token handlers. Token filters can be used
with several different methods in QPDFObjectHandle as well as
with a lower-level interface. See comments in QPDFObjectHandle.hh
as well as the new examples examples/pdf-filter-tokens.cc and
examples/pdf-count-strings.cc for details.
Mon Feb 5 13:00:00 2018 idonmezAATTsuse.com
- Update to version 7.1.1
* Fix one linearization bug affecting files whose first /ID
component is not 16 bytes long
* Fix some build issues
- Add signature and keyring
Wed Jan 24 13:00:00 2018 avindraAATTopensuse.org
- Update to version 7.1.0
* Allow raw encryption key to be specified in libary and command
line with the QPDF::setPasswordIsHexKey method and
- -password-is-hex-key option. Allow encryption key to be displayed
with --show-encryption-key option. See
https://blog.didierstevens.com/2017/12/28/cracking-encrypted-pdfs-part-3/
for a discussion of using this for cracking encrypted PDFs. I hope
that a future release of qpdf will include some additional
recovery options that may also make use of this capability.
* Fix lexical error: the PDF specification allows floating point
numbers to end with \".\"
* Fix link order in the build to avoid conflicts when building
from source while an older version of qpdf is installed
* Add support for TIFF predictor for LZW and Flate streams. Now
* Clarify documentation around options that control parsing but
not output creation. Two options: --suppress-recovery and
- -ignore-xref-streams, were documented in the \"Advanced
Transformation Options\" section of the manual and --help output
even though they are not related to output. These are now
described in a separate section called \"Advanced Parsing Options.\"
* Implement remaining PNG filters for decode. Prior versions could
decode only the \"up\" filter. Now all PNG filters (sub, up,
average, Paeth, optimal) are supported for decoding.
The implementation of the remaining PNG filters changed the
interface to the private Pl_PNGFilter class, but this class\'s
header file is not in the installation, and there is no public
interface to the class. Within the library, the class is never
allocated on the stack; it is only ever dynamically allocated. As
such, this does not actually break binary compatibility of the
library. all predictor functions are supported
- cleanup with spec-cleaner
Wed Sep 20 14:00:00 2017 idonmezAATTsuse.com
- Update to version 7.0.0
* License is now Apache-2.0
* Add new libjpeg8-devel dependency
* Improve the error message that is issued when QPDFWriter
encounters a stream that can\'t be decoded. In particular, mention
that the stream will be copied without filtering to avoid data
loss.
* Add new methods to the C API to correspond to new additions to
QPDFWriter:
- qpdf_set_compress_streams
- qpdf_set_decode_level
- qpdf_set_preserve_unreferenced_objects
- qpdf_set_newline_before_endstream
* Add support for writing PCLm files
* QPDF now supports reading and writing streams encoded with
JPEG or RunLength encoding. Library API enhancements and
command-line options have been added to control this
behavior. See command-line options --compress-streams
and --decode-level and methods QPDFWriter::setCompressStreams
and QPDFWriter::setDecodeLevel.
* Page rotation is now supported and accessible from both the
library and the command line.
* Fixes CVE-2017-12595 bsc#1055960, CVE-2017-9208 bsc#1040311
CVE-2017-9209 bsc#1040312, CVE-2017-9210 bsc#1040313,
CVE-2017-11627 bsc#1050577, CVE-2017-11626 bsc#1050578,
CVE-2017-11625 bsc#1050579, CVE-2017-11624 bsc#1050581
Tue Nov 10 13:00:00 2015 idonmezAATTsuse.com
- Update to version 6.0.0
* Bump shared library version since 5.2.0 broke ABI.
Sun Nov 8 13:00:00 2015 idonmezAATTsuse.com
- Update to version 5.2.0
* Support for deterministic /IDs for non-encrypted files. This is
off by default.
* Handle more invalid xref tables
Mon May 25 14:00:00 2015 idonmezAATTsuse.com
- Update to version 5.1.3
* Handle object streams with more than 255 objects
* Security fixes courtesy of Google Security Team
* Properly handle pages that have no content
* Robustness fixes for invalid PDF files
Thu Jun 12 14:00:00 2014 idonmezAATTsuse.com
- Update to version 5.1.2
* Please see the included ChangeLog file
Wed Jan 29 13:00:00 2014 jsmeixAATTsuse.de
- Provide the license source file Artistic-2.0 in the binary RPM
(fix declined IBS submitrequest 30947).
Fri Jan 17 13:00:00 2014 idonmezAATTsuse.com
- Update to version 5.1.1
* Fixes https://github.com/qpdf/qpdf/issues/28
Wed Dec 18 13:00:00 2013 idonmezAATTsuse.com
- Update to version 5.1.0
* Add ability to provide your own source of random numbers
at runtime
* More handling of damaged PDF files
Tue Oct 22 14:00:00 2013 idonmezAATTsuse.com
- Update to version 5.0.1
* Some security fixes, courtesy of Redhat
Wed Jul 10 14:00:00 2013 idonmezAATTsuse.com
- Update to 5.0.0
* Same as 4.2.0 but shared lib version bumped due to ABI changes
- Apply shared library packaging policy
Mon Jul 8 14:00:00 2013 idonmezAATTsuse.com
- Update to version 4.2.0
* Fixes bug that would result in the loss of compressible objects
whose generation numbers were greater than 0 when generating
object streams.
* Added better API calls for handling object ID and generation
together as a QPDFObjGen.
* Added --show-npages option to the qpdf command-line tool.
* Several small enhancements to make qpdf able to handle a wider
range of broken input files.
Sun Apr 14 14:00:00 2013 idonmezAATTsuse.com
- Update to version 4.1.0
* New API calls for parsing PDF content streams
* qpdf --check now parses all pages\' content streams in addition
to doing other checks.
* Overridden compressed objects are properly handled.
- Drop qpdf-ppc64.patch: merged upstream
Thu Jan 3 13:00:00 2013 dvaleevAATTsuse.com
- Detect binary attachments better (qpdf-ppc64.patch)
This fix eliminates a false test failure on some platforms and makes
the binary test work properly whether characters with the high bit
set, when treated as integers, are negative or not.
- pass --enable-show-failed-test-output to configure, to see
detailed failure reason in build log.
Mon Dec 31 13:00:00 2012 idonmezAATTsuse.com
- Update to version 4.0.0
* Support for Acrobat X & XI encryption
* Support for extension levels in PDF version information.
* New methods for supporting read and write from/to arbitrary sources.
* Support for unencrypted files with encrypted attachments.
* Support for files with junk preceding the PDF header.
Fri Sep 7 14:00:00 2012 idonmezAATTsuse.com
- Update to version 3.0.2
* Calling QPDFWriter::setOutputMemory would result in a
segmentation fault from write() if setStaticID() was not used.
* New method call QPDFWriter::setExtraHeaderText to add text
* Make it so that you can write the same QPDF object through two
different QPDFWriter objects that both have linearization enabled.
Sat Aug 11 14:00:00 2012 idonmezAATTsuse.com
- Update to version 3.0.1
* qpdf may falsely report premature EOF when reading files that
have object streams that end with scalars not followed by
whitespace.
Thu Aug 2 14:00:00 2012 idonmezAATTsuse.com
- Update to version 3.0.0
* Page-based splitting and merging
* Support for large files
* The ability to set the encryption parameters of one file by copying
them from another file.
* Support for creating PDF files from scratch
- Drop applied patches
Sun Apr 22 14:00:00 2012 dimstarAATTopensuse.org
- Add qpdf-gcc47.patch: Fix build with gcc 4.7.
Mon Feb 27 13:00:00 2012 dmuellerAATTsuse.de
- fix build with pcre 8.30
Tue Jan 24 13:00:00 2012 jengelhAATTmedozas.de
- Remove redundant sections (see specfile guidelines)
Mon Jan 23 13:00:00 2012 crrodriguezAATTopensuse.org
- Fix devel package requires
- Build with -fvisibility-inlines-hidden, test suite
confirms it works and saves a few dozens of entries in the
exported symbol table.
Mon Jan 2 13:00:00 2012 idonmezAATTsuse.com
- Update to v2.3.1
* Fix threading problem with PCRE usage
Thu Aug 4 14:00:00 2011 idonmezAATTnovell.com
- Update to v2.2.4
* Build system fixes
- Drop qpdf-gcc46.patch and qpdf-nostrip.patch: applied upstream
Wed Aug 3 14:00:00 2011 idonmezAATTnovell.com
- Remove unicode data to make sure its not redistributed
Thu Jun 23 14:00:00 2011 idonmezAATTnovell.com
- Add qpdf-nostrip.patch: don\'t strip libraries
Wed Jun 22 14:00:00 2011 idonmezAATTnovell.com
- Update to v2.3.3
* API improvements
* Compatibility fixes with some PDF files