Skip to content

Commit a71c4ed

Browse files
Prepare release 4.6.8 metadata and changelog
1 parent 0ba9d4b commit a71c4ed

4 files changed

Lines changed: 17 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
All 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

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
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>

src/main/java/com/DeathByCaptcha/Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* Base Death by Captcha API client.
1515
*/
1616
abstract 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;

src/test/java/com/DeathByCaptcha/ClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)