debian-elementpath/CHANGELOG.rst

165 lines
5.8 KiB
ReStructuredText
Raw Normal View History

2018-03-26 22:35:43 +02:00
*********
CHANGELOG
*********
2019-10-09 20:02:12 +02:00
`v1.3.0`_ (2019-10-11)
======================
2019-10-09 20:02:12 +02:00
* Improved schema proxy
* Improved XSD type matching using paths
* Cached parent path for XPathContext (only Python 3)
2019-10-09 20:02:12 +02:00
* Improve typed selection with TypedAttribute and TypedElement named-tuples
2019-09-30 15:54:12 +02:00
* Add iter_results to XPathContext
2019-10-09 20:02:12 +02:00
* Remove XMLSchemaProxy from package
* Fix descendant shortcut operator '//'
* Fix text() function
* Fix typed select of '(name)' token
2019-09-11 22:18:49 +02:00
* Fix 24-hour time for DateTime
`v1.2.1`_ (2019-08-30)
======================
* Hashable XSD datatypes classes
* Fix Duration types comparison
`v1.2.0`_ (2019-08-14)
======================
* Added special XSD datatypes
* Better handling of schema contexts
* Added validators for numeric types
* Fixed function conversion rules
* Fixed tests with lxml and XPath 1.0
* Added tests for uncovered code
`v1.1.8`_ (2019-05-20)
======================
* Added code coverage and flake8 checks
* Drop Python 3.4 support
* Use more specific XPath errors for functions and namespace resolving
* Fix for issue #4
`v1.1.7`_ (2019-04-25)
======================
* Added Parser.is_spaced() method for checking if the current token has extra spaces before or after
* Fixes for '/' and ':' tokens
* Fixes for fn:max() and fn:min() functions
2019-03-28 08:45:50 +01:00
`v1.1.6`_ (2019-03-28)
======================
* Fixes for XSD datatypes
* Minor fixes after a first test run with Python v3.8a3
`v1.1.5`_ (2019-02-23)
======================
* Differentiated unordered XPath gregorian types from ordered types for XSD
* Fix issue #2
`v1.1.4`_ (2019-02-21)
2019-02-19 07:32:58 +01:00
======================
* Implementation of a full Static Analysis Phase at parse() level
* Schema-based static analysis for XPath 2.0 parsers using schema contexts
* Added ``XPathSchemaContext`` class for processing schema contexts
* Added atomization() and get_atomized_operand() helpers to XPathToken
* Fix value comparison operators
2019-02-15 14:00:49 +01:00
2019-02-06 23:44:06 +01:00
`v1.1.3`_ (2019-02-06)
======================
2019-02-03 20:45:46 +01:00
* Fix for issue #1
2019-02-05 12:54:53 +01:00
* Added fn:static-base-uri() and fn:resolve-uri()
2019-02-06 23:44:06 +01:00
* Fixes to XPath 1.0 functions for compatibility mode
2019-02-03 20:45:46 +01:00
2019-01-30 17:01:50 +01:00
`v1.1.2`_ (2019-01-30)
======================
* Fixes for XSD datatypes
2019-01-30 17:01:50 +01:00
* Change the default value of *default_namespace* argument of XPath2Parser to ``None``
2019-01-30 17:01:50 +01:00
`v1.1.1`_ (2019-01-19)
======================
2019-01-12 15:31:47 +01:00
* Improvements and fixes for XSD datatypes
* Rewritten AbstractDateTime for supporting years with value > 9999
* Added fn:dateTime()
`v1.1.0`_ (2018-12-23)
======================
* Almost full implementation of XPath 2.0
* Extended XPath errors management
* Add XSD datatypes for data/time builtins
* Add constructors for XSD builtins
`v1.0.12`_ (2018-09-01)
=======================
* Fixed the default namespace use for names without prefix.
2018-07-25 09:11:13 +02:00
`v1.0.11`_ (2018-07-25)
=======================
* Added two recursive protected methods to context class
* Minor fixes for context and helpers
2018-06-13 14:15:32 +02:00
2018-06-15 18:33:03 +02:00
`v1.0.10`_ (2018-06-15)
=======================
* Updated TDOP parser and implemented token classes serialization
2018-06-13 14:15:32 +02:00
`v1.0.8`_ (2018-06-13)
2018-06-13 13:56:27 +02:00
======================
* Fixed token classes creation for parsers serialization
2018-06-13 14:15:32 +02:00
`v1.0.7`_ (2018-05-07)
======================
* Added autodoc based manual with Sphinx
2018-06-13 14:15:32 +02:00
`v1.0.6`_ (2018-05-02)
2018-06-13 13:56:27 +02:00
======================
* Added tox testing
* Improved the parser class with raw_advance method
2018-06-13 13:56:27 +02:00
`v1.0.5`_ (2018-03-31)
======================
2018-03-31 14:01:56 +02:00
* Added n.10 XPath 2.0 functions for strings
* Fix README.rst for right rendering in PyPI
2019-03-28 08:45:50 +01:00
* Added ElementPathMissingContextError exception for a correct handling of static context evaluation
`v1.0.4`_ (2018-03-27)
======================
2018-03-27 18:01:45 +02:00
* Fixed packaging ('packages' argument in setup.py).
`v1.0.3`_ (2018-03-27)
======================
2018-03-27 18:01:45 +02:00
* Fixed the effective boolean value for a list containing an empty string.
`v1.0.2`_ (2018-03-27)
======================
* Add QName parsing like in the ElementPath library (usage regulated by a *strict* flag).
`v1.0.1`_ (2018-03-27)
======================
* Some bug fixes for attributes selection.
`v1.0.0`_ (2018-03-26)
======================
* First stable version.
2018-06-13 13:56:27 +02:00
.. _v1.0.0: https://github.com/brunato/elementpath/commit/b28da83
.. _v1.0.1: https://github.com/brunato/elementpath/compare/v1.0.0...v1.0.1
.. _v1.0.2: https://github.com/brunato/elementpath/compare/v1.0.1...v1.0.2
.. _v1.0.3: https://github.com/brunato/elementpath/compare/v1.0.2...v1.0.3
.. _v1.0.4: https://github.com/brunato/elementpath/compare/v1.0.3...v1.0.4
.. _v1.0.5: https://github.com/brunato/elementpath/compare/v1.0.4...v1.0.5
.. _v1.0.6: https://github.com/brunato/elementpath/compare/v1.0.5...v1.0.6
.. _v1.0.7: https://github.com/brunato/elementpath/compare/v1.0.6...v1.0.7
.. _v1.0.8: https://github.com/brunato/elementpath/compare/v1.0.7...v1.0.8
2018-07-23 15:06:43 +02:00
.. _v1.0.10: https://github.com/brunato/elementpath/compare/v1.0.8...v1.0.10
.. _v1.0.11: https://github.com/brunato/elementpath/compare/v1.0.10...v1.0.11
.. _v1.0.12: https://github.com/brunato/elementpath/compare/v1.0.11...v1.0.12
.. _v1.1.0: https://github.com/brunato/elementpath/compare/v1.0.12...v1.1.0
2019-01-12 15:31:47 +01:00
.. _v1.1.1: https://github.com/brunato/elementpath/compare/v1.1.0...v1.1.1
.. _v1.1.2: https://github.com/brunato/elementpath/compare/v1.1.1...v1.1.2
2019-02-03 20:45:46 +01:00
.. _v1.1.3: https://github.com/brunato/elementpath/compare/v1.1.2...v1.1.3
2019-02-15 14:00:49 +01:00
.. _v1.1.4: https://github.com/brunato/elementpath/compare/v1.1.3...v1.1.4
.. _v1.1.5: https://github.com/brunato/elementpath/compare/v1.1.4...v1.1.5
2019-03-28 08:45:50 +01:00
.. _v1.1.6: https://github.com/brunato/elementpath/compare/v1.1.5...v1.1.6
.. _v1.1.7: https://github.com/brunato/elementpath/compare/v1.1.6...v1.1.7
.. _v1.1.8: https://github.com/brunato/elementpath/compare/v1.1.7...v1.1.8
.. _v1.1.9: https://github.com/brunato/elementpath/compare/v1.1.8...v1.1.9
.. _v1.2.0: https://github.com/brunato/elementpath/compare/v1.1.9...v1.2.0
.. _v1.2.1: https://github.com/brunato/elementpath/compare/v1.2.0...v1.2.1
.. _v1.3.0: https://github.com/brunato/elementpath/compare/v1.2.1...v1.3.0