Skip to content

Releases: jcabi/jcabi-matchers

Migrate to Jakarta XML Binding (JAXB 4) and clean up dependencies

Choose a tag to compare

@rultor rultor released this 02 May 07:21

See #154, release log:

Released by Rultor 2.0-SNAPSHOT, see build log

`hasXPaths` with `Iterable`

Choose a tag to compare

@rultor rultor released this 05 Dec 11:52

See #119, release log:

Released by Rultor 2.0-SNAPSHOT, see build log

refresh

Choose a tag to compare

@rultor rultor released this 07 Aug 16:31

See #70, release log:

Released by Rultor 1.75.1, see build log

saxon up to 11

Choose a tag to compare

@rultor rultor released this 24 Aug 05:26

See #52, release log:

Released by Rultor 2.0-SNAPSHOT, see build log

upgrade to jcabi 1.27.0

Choose a tag to compare

@rultor rultor released this 29 Jul 08:09

See #46, release log:

Released by Rultor 2.0-SNAPSHOT, see build log

jcabi-w3c 1.3

jcabi-w3c 1.3 Pre-release
Pre-release

Choose a tag to compare

@rultor rultor released this 14 Jan 18:38

See #35, release log:

Released by Rultor 1.62.2, see build log

RegexMatchers

Choose a tag to compare

@rultor rultor released this 07 Oct 22:13

See #10

W3CMatchers

Choose a tag to compare

@yegor256 yegor256 released this 05 May 14:02

This version introduces W3CMatchers that can match your HTML or CSS against W3C online validator. More details here: http://matchers.jcabi.com/w3c-matchers.html

First stable version

Choose a tag to compare

@yegor256 yegor256 released this 27 Apr 04:45

This is the first stable version after migration from rexsl-test. The library contains a few convenient XML/XHTML matchers:

import com.jcabi.matchers.XhtmlMatchers;
import org.hamcrest.MatcherAssert;

MatcherAssert.assertThat(
  "<test><name>Jeff</name></test>",
  XhtmlMatchers.hasXPath("/test/name[.='Jeff']");
);