aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-01-18 00:40:38 +0100
committerJay Berkenbilt <ejb@ql.org>2022-01-30 19:11:03 +0100
commite8e8f6f43c760523520dfe7a5c76d88c959599f6 (patch)
treea000bcb5cbbde3e2833a57a28e761449b62165b2 /ChangeLog
parentb9af421ef788b94fcbf18ecf702cec3ba9a018b7 (diff)
downloadqpdf-e8e8f6f43c760523520dfe7a5c76d88c959599f6.tar.zst
Add JSON::parse
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 696915ad..b70d6699 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,8 +4,20 @@
to QPDFObjectHandle with corresponding functions added to the C
API. Thanks to m-holger for the contribution.
+2022-01-19 Jay Berkenbilt <ejb@ql.org>
+
+ * Add a JSONHandler class that allows sax-like, recursive handling
+ of JSON objects.
+
2022-01-17 Jay Berkenbilt <ejb@ql.org>
+ * Add JSON::parse. Now qpdf's JSON class implements a
+ general-purpose JSON parser and serializer, but there are better
+ options for general use. This is really designed for qpdf's
+ internal use and is set up to be compatible with qpdf's existing
+ API and to hook into a planned JSON-based API to the QPDFJob
+ class.
+
* Add isDictionary and isArray to JSON
2022-01-11 Jay Berkenbilt <ejb@ql.org>