All Versions
62
Latest Version
Avg Release Cycle
72 days
Latest Release
212 days ago
Changelog History
Page 6
Changelog History
Page 6
-
v0.5.0 Changes
September 27, 2015โ Added
- โ Add the child combinator to
Floki.find/2
. - โ Add the adjacent sibling combinator to
Floki.find/2
. - โ Add the general adjacent sibling combinator to
Floki.find/2
.
- โ Add the child combinator to
-
v0.4.1 Changes
September 18, 2015 -
v0.4.0 Changes
September 17, 2015โ Added
- A robust representation of selectors in order to enable queries using a mix of selector types, such as classes with attributes, attributes with types, classes with classes and so on. Here is a list with examples of what is possible now:
- Include
mochiweb
in the applications list at mix.exs - thanks @EricDykstra
๐ Changed
Floki.find/2
will now return a list instead of tuple when searching only by IDs. For now on, Floki should always return the results inside a list, even if it's an ID match.
โ Removed
Floki.find/2
does not accept tuples as selectors anymore. This is because with the robust selectors representation, it won't be necessary to query directly using tuples or another data structures rather than string.
-
v0.3.3 Changes
August 23, 2015๐ Fixed
- ๐ Fix
Floki.find/2
when there is a non-HTML input. It closes the issue #17
- ๐ Fix
-
v0.3.2 Changes
June 27, 2015๐ Fixed
- ๐ Fix
Floki.DeepText
when there is a comment inside nodes.
- ๐ Fix
-
v0.3.1 Changes
June 21, 2015๐ Fixed
- ๐ Fix
Floki.find/2
to consider XML trees.
- ๐ Fix
-
v0.3.0 Changes
June 07, 2015โ Added
- โ Add attribute equals selector. This feature enables the user to search using
HTML attributes other than "class" or "id".
E.g:
Floki.find(html, "[data-model=user]")
- @nelsonr
- โ Add attribute equals selector. This feature enables the user to search using
HTML attributes other than "class" or "id".
E.g:
-
v0.2.1 Changes
June 04, 2015๐ Fixed
- ๐ Fix
parse/1
when parsing a part of HTML without a root node - @antonmi
- ๐ Fix
-
v0.2.0 Changes
May 03, 2015โ Added
- ๐ Support HTML string when searching for attributes with
Floki.attribute/2
. - Option for
Floki.text/2
to disable deep search and use flat search instead.
๐ Changed
- ๐ Change
Floki.text/1
to perform a deep search of text nodes. - โ Consider doctests in the test suite.
- ๐ Support HTML string when searching for attributes with
-
v0.1.1 Changes
March 25, 2015โ Added
- โ Add CHANGELOG.md following the Keep a changelog.
๐ Changed
- Using MochiWeb as a hex dependency instead of embedded code. It closes the issue #5