Release v1.0.1
Changes
- Added support for absolute etree Path queries. An absolute path begins with
/
or//
and begins a search from the element's document root. - Added
GetPath
andGetRelativePath
functions to theElement
type.
Breaking changes
- A path starting with
//
is now interpreted as an absolute path. Previously, it was interpreted as a relative path starting from the element whoseFindElement
method was called. To remain compatible with this release, all paths prefixed with//
should be prefixed with.//
when used with any element other than the document's root. - [edit 2/1/2019]: Minor releases should not contain breaking changes. Even though this breaking change was very minor, it was a mistake to include it in this minor release. In the future, all breaking changes will be limited to major releases (e.g., version 2.0.0).