All Versions
62
Latest Version
Avg Release Cycle
72 days
Latest Release
639 days ago

Changelog History
Page 4

  • v0.17.0 Changes

    April 12, 2017

    ➕ Added

    • ➕ Add support for multiple pseudo-selectors, line :not() and :nth-child() - thanks @jjcarstens
    • ➕ Add support for multiple selectors inside the :not() pseudo-class selector - thanks @jjcarstens
  • v0.16.0 Changes

    April 05, 2017

    ➕ Added

    • ➕ Add support for selectors that only include a pseudo-class selector - thanks @buhman
    • ➕ Add support for a new selector: fl-contains, which returns elements that contains a given text - thanks @buhman

    🛠 Fixed

    • 🛠 Fix :not() pseudo-class selector to accept simple pseudo-class selectors as well - thanks @mischov
  • v0.15.0 Changes

    March 14, 2017

    ➕ Added

    • ➕ Added support for the :not() pseudo-class selector.

    🛠 Fixed

    • 🛠 Fixed pseudo-class selectors that are used in conjunction with combinators - thanks @Eiji7
    • 🛠 Fixed order of elements after search using descendant combinator - thanks @Eiji7
  • v0.14.0 Changes

    February 07, 2017

    ➕ Added

    • ➕ Added support for configuring html5ever as the HTML parser. Issue #83 - thanks @hansihe and @aphillipo!
  • v0.13.2 Changes

    February 07, 2017

    🛠 Fixed

    • 🛠 Fixed bug that was causing Floki.text/1 and Floki.filter_out/2 to ignore "trees" with only text nodes. Issue #91 - thanks @boydm.
  • v0.13.1 Changes

    January 22, 2017

    🛠 Fixed

    • 🛠 Fix ordering of duplicated descendant matches - thanks @mmmries
    • 🛠 Fix ordering of Floki.text/1 when there are only root nodes - thanks @mmmries
  • v0.13.0 Changes

    January 22, 2017

    ➕ Added

    • Floki.filter_out/2 is now able to understand complex selectors to filter out from the tree.
  • v0.12.1 Changes

    January 20, 2017

    🛠 Fixed

    • 🛠 Fix search for elements using descendant combinator - issue #84 - thanks @mmmries
  • v0.12.0 Changes

    December 28, 2016

    ➕ Added

    • ➕ Add basic support for nth-child pseudo-class selector. Closes issue #64.

    🔄 Changed

    • ✂ Remove support for Elixir 1.1 and below.
    • ✂ Remove public documentation for internal code.
  • v0.11.0 Changes

    October 12, 2016

    ➕ Added

    • ⚡️ First attempt to transform nodes with Floki.transform/2. It is not able to update the tree yet, but works good with results from Floki.find/2 - thanks @bobjflong

    🔄 Changed

    • 📜 Using Logger to notify unknown tokens in selector parser - thanks @teamon and @geonnave
    • 📦 Replace mochiweb_html with mochiweb package. This is needed to fix conflict with other 📦 packages that are using mochiweb. - thanks @aphillipo