* Wed Jun 25 2025 pgajdos@suse.com
- disable specific-bugs and inline-images tests for s390x [bsc#1245308]
* Thu Jun 12 2025 pgajdos@suse.com
- version update to 11.10.1
11.10.1: February 15, 2025
Build fixes
. Fix incorrect detection of zopfli.
. Recognize cygwin perl as Windows when running test suite.
11.10.0: February 8, 2025
Bug fixes
. Detect and break loops in the outline (bookmark) tree.
. Correctly handle outline (bookmark) items where the destination is
given as a dictionary with ‘/D’ entry.
. When loading object streams, ignore any objects not included in the
xref table.
. When writing real numbers as JSON ensure they do not end in a
trailing decimal point.
. When QPDF::getObject, getObjectByObjGen or getObjectByID are called
with a QPDFObjGen that does not
exists in the xref and object tables return a direct null.
. Fix handling of certain deleted objects in hybrid reference files.
. Default the stream decode level to generalized.
. Reject CLI flags with parameters.
CLI Enhancements
. The fix-qdf command now allows an output file to be specified as an
optional second argument.
. New --remove-metadata and --remove-info options to exclude document
metadata and information from the output PDF.
Library Enhancements
. qpdf can now be built with zopfli support.
. Add QPDFObjectHandle operator bool.
. New C API function qpdf_oh_free_buffer to free malloc allocated buffers.
* for other changes see
https://qpdf.readthedocs.io/en/stable/release-notes.html
- deleted patches
- qpdf-11.9.1-gcc15.patch (upstreamed)
* Sat May 03 2025 hsk17@mail.de
- add qpdf-11.9.1-gcc15.patch from upstream to fix gcc-15 compile
time error
* Thu Jun 13 2024 dmueller@suse.com
- update to 11.9.1:
* Rewrite a recursive function to be iterative in linearization
to enable more complex files to be linearized, especially on
Windows.
* Avoid non-standard use of `std::basic_string_view`.
* Thu Feb 29 2024 pmonreal@suse.com
- Update to 11.9.0:
* CLI Enhancements
- Add new command-line arguments --file and --range which can be
used within --pages in place of positional arguments. Allow
- -file to be used inside of --overlay and --underlay as well.
These new options can be freely intermixed with positional
arguments.
- Allow --overlay and --underlay to be repeated. They may appear
multiple times on the command-line and will be stacked in the
order in which they appear. In QPDFJob JSON (see QPDFJob: a
Job-Based Interface), the overlay and underlay keys may contain
arrays. For compatibility, they may also contain a single dictionary.
* Library Enhancements
- Add file(), range(), and password() to QPDFJob::PagesConfig
as an alternative to pageSpec.
- Add QPDFObjectHandle::writeJSON to write the JSON representation
of the object directly to a pipeline. This is much faster than
calling QPDFObjectHandle::getJSON.
* Other Enhancements
- There have been non-user-visible improvements to the reliability
of the JSON parser. The JSON parser has been added to fuzz testing
with OSS-Fuzz.
* Remove openssl3_2-fuzz-16214.patch fixed upstream
* Wed Jan 17 2024 otto.hollmann@suse.com
- Temporary workaround for test fuzz-16214 (bsc#1218902)
* Add openssl3_2-fuzz-16214.patch
- Update to 11.8.0:
* Bug fixes:
- When flattening annotations, preserve hyperlinks and other annotations
that inherently have no appearance information.
* CLI Enhancements
- Introduce x in the numeric range syntax to allow exclusion of pages
within a page range. See Page Ranges for details.
- Support comma-separated numeric values with --collate to select
different numbers of pages from different groups.
- Add --set-page-labels option to completely override page labels in the
output.
* Library Enhancements
- Add API to support --set-page-labels:
- QPDFJob::Config::setPageLabels
- pdf_page_label_e enumerated type
- QPDFPageLabelDocumentHelper::pageLabelDict
- Improve file recovery logic to better handle files with cross-reference
streams. This should enable qpdf to recover some files that it would
previously have reported “unable to find trailer dictionary.”
* Wed Dec 27 2023 dmueller@suse.com
- update to 11.7.0:
* Add QPDFAcroFormDocumentHelper::disableDigitalSignatures,
which disables any digital signature fields, leaving their
visual representations intact.
The --remove-restrictions command-line argument now calls this.
* Generate a more complete qpdf "man page" from the same source
as qpdf --help. Fixes #1064.
* Allow the syntax "--encrypt --user-password=user-password
- -owner-password=owner-password --bits={40,128,256}" when
encrypting PDF files. This is an alternative to the syntax
"--encrypt user-password owner-password {40,128,256}", which
will continue to be supported. The new syntax works better with
shell completion and allows creation of passwords that start
with "-".
* When setting a check box value, allow any value other than
/Off to mean checked. This is permitted by the spec.
* Fix to QPDF JSON: a floating point number that appears in
scientific notation will be converted to fixed-point notation,
rounded to six digits after the decimal point.
* Fix to QPDF JSON: the syntax "n:/pdf-syntax" is now accepted
as an alternative way to represent names. This can be used for
any name (e.g. "n:/text#2fplain"), but it is necessary when the
name contains binary characters.
* Update code and tests so that qpdf's test suite no longer
depends on the output of any specific zlib implementation.
This makes it possible to get a fully passing test suite with any
API-compatible zlib library. CI tests with the default zlib
as well as zlib-ng (including verifying that zlib-ng is not the
default), but any zlib implementation should work. Fixes
[#774].
* Bug fix: with --compress-streams=n, don't compress object,
XRef, or linearization hint streams.
* Add new C++ functions "qpdf_c_get_qpdf" and "qpdf_c_wrap" to
qpdf-c.h that make it possible to write your own extern "C"
functions in C++ that interoperate with the C API. See
examples/extend-c-api for more information.
* Fri Dec 15 2023 dmueller@suse.com
- update to 11.6.4:
* Install fix: include cmake files with the dev component.
* Build AppImage with an older Linux distribution to support
AWS Lambda. Fixes #1086.
* Sun Oct 29 2023 dmueller@suse.com
- update to 11.6.3:
* Tweak linearization code to better handle files between 2 GB
and 4 GB in size. Fixes #1023.
* Fix data loss bug: qpdf could discard a the character after
an escaped octal string consisting of less than three
digits. For content, this would only happen with QDF or when
normalizing content. Outside of content, it could have happened
in any binary string, such as /ID, if the encoding software used
octal escape strings with less than three digits. This bug was
introduced between 10.6.3 and 11.0.0.
* Tue Oct 10 2023 info@paolostivanin.com
- version update to 11.6.2:
* Bug fix: when piping stream data, don't call finish on failure
if the failure was caused by a previous call to finish.