Releases: zendframework/zend-dom
zend-dom 2.7.2
Added
- #26 adds support for PHP 7.3.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- Nothing.
zend-dom 2.7.1
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
-
#21 fixes an issue with
matching against nested attribute selectors (e.g.,div[class="foo"] div [class="bar"]
), ensuring such syntax will transform to expected XPath. -
#22 adds a missing import
statement for theDOMNode
class to the (deprecated)Zend\Dom\Query
class
definition. -
#24 updates how the
tokenizer marks multiple words within attribute values in order to be
more robust. -
#23 fixes an issue with
how descendant selectors work, ensuring spaces may be used around the>
operator.
zend-dom 2.7.0
Added
-
#20 adds support for
attribute selectors that contain spaces, such asinput[value="Marty McFly"]
.
Previously, spaces within the selector value would result in a query per
space-separated word; they now, correctly, result in a single query for the
exact value. -
#19 adds support for PHP
versions 7.1 and 7.2. -
Adds documentation and publishes it to https://docs.zendframework.com/zend-dom/
Deprecated
- Nothing.
Removed
Fixed
- Nothing.