Commit ecceab61ce9567f2039e46c6fd8692f53f866755
1 parent
5bbce89e
Add qpdf 12 information to release notes
Showing
1 changed file
with
21 additions
and
0 deletions
manual/release-notes.rst
| ... | ... | @@ -6,6 +6,23 @@ Release Notes |
| 6 | 6 | For a detailed list of changes, please see the file |
| 7 | 7 | :file:`ChangeLog` in the source distribution. |
| 8 | 8 | |
| 9 | +Planned changes for future 12.x (subject to change): | |
| 10 | + - ``QPDFObjectHandle`` will support move construction/assignment. | |
| 11 | + This change will be invisible to most developers but may break | |
| 12 | + your code if you rely on specific behavior around how many | |
| 13 | + references to a QPDFObjectHandle's underlying object exist. You | |
| 14 | + would have to write code specifically to do that, so if you're not | |
| 15 | + sure, then you shouldn't have to worry. | |
| 16 | + | |
| 17 | + - ``QPDFObjectHandle`` will be implicitly convertible to ``bool`` | |
| 18 | + with undefined objects evaluating to ``false``. This can simplify | |
| 19 | + error handling and will facilitate use of ``QPDFObjectHandle`` | |
| 20 | + with some newer standard library constructs. This change won't | |
| 21 | + affect any existing code unless you have written your own | |
| 22 | + conversion methods to/from ``QPDFObjectHandle``. In that case, | |
| 23 | + it's possible that the new qpdf-provided conversion may override | |
| 24 | + your conversion. | |
| 25 | + | |
| 9 | 26 | .. x.y.z: not yet released |
| 10 | 27 | |
| 11 | 28 | 11.4.0: not yet released |
| ... | ... | @@ -26,6 +43,10 @@ For a detailed list of changes, please see the file |
| 26 | 43 | - Add ``QPDF::newReserved`` as a better alternative to |
| 27 | 44 | ``QPDFObjectHandle::newReserved``. |
| 28 | 45 | |
| 46 | + - If you add an uninitialized ``QPDFObjectHandle`` to an array, | |
| 47 | + qpdf will throw a ``logic_error``. It has always been invalid to | |
| 48 | + do this, but before, it wouldn't have been caught until later. | |
| 49 | + | |
| 29 | 50 | - Bug fixes |
| 30 | 51 | |
| 31 | 52 | - Ignore an annotation's appearance state when the annotation only | ... | ... |