Skip to content

Releases: code4craft/xsoup

xsoup-0.3.7

12 Jun 16:35
Compare
Choose a tag to compare

What's Changed

  • [Snyk] Security upgrade org.assertj:assertj-core from 1.5.0 to 1.6.0 by @snyk-bot in #51
  • Compatible for jsoup-1.12.1 by @umishu in #45
  • Bump junit from 4.7 to 4.13.1 by @dependabot in #50
  • [Snyk] Security upgrade org.jsoup:jsoup from 1.13.1 to 1.14.2 by @snyk-bot in #52
  • Make local copy of methods "isWhiteSpace" and "in" from jsoup. by @patricklam in #53
  • Update jsoup from 1.14.2 to 1.15.1 by @rzo1 in #54
  • Upgrades to jsoup 1.15.2 by @rzo1 in #56
  • Update jsoup from 1.15.2 to 1.15.3 by @rzo1 in #57
  • Move assertj into test scope (not required for actual code) by @rzo1 in #59

New Contributors

Full Changelog: https://github.com/code4craft/xsoup/commits/xsoup-0.3.7

xsoup-0.3.6

06 Oct 11:34
Compare
Choose a tag to compare

What's Changed

  • [Snyk] Security upgrade org.assertj:assertj-core from 1.5.0 to 1.6.0 by @snyk-bot in #51
  • Compatible for jsoup-1.12.1 by @umishu in #45
  • Bump junit from 4.7 to 4.13.1 by @dependabot in #50
  • [Snyk] Security upgrade org.jsoup:jsoup from 1.13.1 to 1.14.2 by @snyk-bot in #52
  • Make local copy of methods "isWhiteSpace" and "in" from jsoup. by @patricklam in #53
  • Update jsoup from 1.14.2 to 1.15.1 by @rzo1 in #54
  • Upgrades to jsoup 1.15.2 by @rzo1 in #56
  • Update jsoup from 1.15.2 to 1.15.3 by @rzo1 in #57

New Contributors

Full Changelog: https://github.com/code4craft/xsoup/commits/xsoup-0.3.6

xsoup-0.2.1

22 Mar 10:18
Compare
Choose a tag to compare

Bugfix: #7 nth-of-type selector does not work with tag "SVG"

xsoup 0.2.0

11 Mar 05:24
Compare
Choose a tag to compare

API change:

  • #1 Add getter of element to XElement.
  • Change XElement, XElements and XPathEvaluator to interface.

XPath syntax support:

  • contains #2 :

    //div[contains(@id,'test')]
    
  • and/or and bracket #4 :

    //div[@id='test' or @class='test']
    //div[@id='test' and @class='test']
    //div[@id='test' and @class='test' or @id='test1']
    
  • | for XPath combing #6 :

    //div[@id='test']/text() | //div[@class='test']/div/text()