File tree Expand file tree Collapse file tree
main/java/com/DeathByCaptcha
test/java/com/DeathByCaptcha Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33All notable changes to this project are documented in this file.
44
5+ ## [ 4.6.8] - 2026-03-06
6+
7+ ### Changed
8+
9+ - Bumped library/version metadata from ` 4.6.7 ` to ` 4.6.8 ` in:
10+ - ` pom.xml `
11+ - ` src/main/java/com/DeathByCaptcha/Client.java ` (` API_VERSION ` )
12+ - ` src/test/java/com/DeathByCaptcha/ClientTest.java `
13+ - Updated Selenium sample and Selenium integration test to use Chrome by default in headless CI-friendly mode.
14+ - Added stricter Selenium integration assertion to require ` Verification Success ` after form submission.
15+ - Updated Selenium integration workflow diagnostics and browser setup flow to avoid unstable GeckoDriver action dependency.
16+ - Made all runnable classes in ` src/main/java/examples/ ` public so ` mvn exec:java -Dexec.mainClass=... ` works consistently across samples.
17+
518## [ 4.6.7] - 2026-03-06
619
720### Changed
Original file line number Diff line number Diff line change 66
77 <groupId >io.github.deathbycaptcha</groupId >
88 <artifactId >deathbycaptcha-java-library</artifactId >
9- <version >4.6.7 </version >
9+ <version >4.6.8 </version >
1010 <packaging >jar</packaging >
1111
1212 <name >DeathByCaptcha library for Java</name >
13- <description >DeathByCaptcha Java library v4.6.7 (unified package: core client library + full samples + Selenium integration in one artifact)</description >
13+ <description >DeathByCaptcha Java library v4.6.8 (unified package: core client library + full samples + Selenium integration in one artifact)</description >
1414 <url >https://github.com/deathbycaptcha/deathbycaptcha-api-client-java</url >
1515
1616 <licenses >
Original file line number Diff line number Diff line change 1414 * Base Death by Captcha API client.
1515 */
1616abstract public class Client {
17- final static public String API_VERSION = "DBC/Java v4.6.7 " ;
17+ final static public String API_VERSION = "DBC/Java v4.6.8 " ;
1818 final static public int SOFTWARE_VENDOR_ID = 0 ;
1919
2020 final static public int DEFAULT_TIMEOUT = 60 ;
Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ public void testGetCredentialsAuthtoken() {
289289
290290 @ Test
291291 public void testConstants () {
292- assertEquals ("DBC/Java v4.6.7 " , Client .API_VERSION );
292+ assertEquals ("DBC/Java v4.6.8 " , Client .API_VERSION );
293293 assertEquals (0 , Client .SOFTWARE_VENDOR_ID );
294294 assertEquals (60 , Client .DEFAULT_TIMEOUT );
295295 assertEquals (120 , Client .DEFAULT_TOKEN_TIMEOUT );
You can’t perform that action at this time.
0 commit comments