Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Releases: zendframework/zend-dom

zend-dom 2.7.2

18 Jun 10:39
release-2.7.2
66b8459
Compare
Choose a tag to compare

Added

  • #26 adds support for PHP 7.3.

Changed

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.

zend-dom 2.7.1

09 Apr 20:23
Compare
Choose a tag to compare

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 the DOMNode 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

27 Mar 21:06
Compare
Choose a tag to compare

Added

  • #20 adds support for
    attribute selectors that contain spaces, such as input[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

  • #13 and
    #19 remove support for PHP
    versions prior to 5.6.

  • #13 and
    #19 remove support for HHVM.

Fixed

  • Nothing.

release-2.6.0

14 Oct 03:44
Compare
Choose a tag to compare

Added

  • #2 adds context node
    support for DOMXPath->query that supports querying in the context of a
    specific node.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #5 - Increase test converage and improve tests.