summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-10-10 13:04:06 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-10-10 13:04:06 -0700
commit6fa0b39390f23a53619b88e0ace732095f6e369c (patch)
treeff5f6d6b6811f0d9be2c840686d956cf1353c950 /docs
parent285fec31fc8fe1999e7bf9a42af0ceafd92b64e3 (diff)
docs: Update changelog for 1.7
Diffstat (limited to 'docs')
-rw-r--r--docs/manual.adoc25
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/manual.adoc b/docs/manual.adoc
index af48a10..9998c15 100644
--- a/docs/manual.adoc
+++ b/docs/manual.adoc
@@ -2112,6 +2112,31 @@ Because of the differences in document object models, performance considerations
:!numbered:
+[[v1.7]]
+=== v1.7 ^17.10.2015^
+
+Major release, featuring performance and memory improvements along with some new features. Changes:
+
+* Compact mode:
+ . Introduced a new tree storage mode that takes significantly less memory (2-5x smaller DOM) at some performance cost.
+ . The mode can be enabled using `PUGIXML_COMPACT` define.
+
+* New integer parsing/formatting implementation:
+ . Functions that convert from and to integers (e.g. `as_int`/`set_value`) do not rely on CRT any more.
+ . New implementation is 3-5x faster and is always correct wrt overflow or underflow. This is a behavior change - where previously `as_uint()` would return UINT_MAX on a value "-1", it now returns 0.
+
+* New features:
+ . XPath objects (`xpath_query`, `xpath_node_set`, `xpath_variable_set`) are now movable if your compiler supports C++11. Additionally, `xpath_variable_set` is copyable.
+ . Added `format_indent_attributes` that makes the resulting XML friendlier to line diff/merge tools.
+ . Added a variant of `xml_node::attribute` function with a hint that can improve lookup performance.
+ . Custom allocation functions are now allowed (but not required) to throw instead of returning a null pointer.
+
+* Bug fixes:
+ . Fix Clang 3.7 crashes in out-of-memory cases (C++ DR 1748)
+ . Fix XPath crashes on SPARC64 (and other 32-bit architectures where doubles have to be aligned to 8 bytes)
+ . Fix xpath_node_set assignment to provide strong exception guarantee
+ . Fix saving for custom xml_writer implementations that can throw from write()
+
[[v1.6]]
=== v1.6 ^10.04.2015^