File tree Expand file tree Collapse file tree
java/com/blueconic/browscap
java/com/blueconic/browscap/impl Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ 1.4.3 - 5 December 2023
2+ - Updated to browscap 6001006 (https://github.com/browscap/browscap/releases/tag/6.1.6)
3+ - Detection for GPTBot
4+ - Detection for ImagesiftBot
5+ - Added Seekport crawler
6+ - support to Opera until 115
7+ - support for Opera Mobile until 85
8+ - Android 14 detection
9+ - MacOS X until version 14
10+ - Improved BingBot detection
11+ - Skipped 1.4.2 due to Sonatype publishing issues
12+
1131.4.1 - 26 July 2023
214- Updated to browscap 6001005 (https://github.com/browscap/browscap/releases/tag/6.1.5)
315- Updated chrome versions up until 125
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ Add this to the dependencies in your pom.xml.
4444<dependency >
4545 <groupId >com.blueconic</groupId >
4646 <artifactId >browscap-java</artifactId >
47- <version >1.4.1 </version >
47+ <version >1.4.3 </version >
4848</dependency >
4949```
5050
Original file line number Diff line number Diff line change 44 <groupId >com.blueconic</groupId >
55 <artifactId >browscap-java</artifactId >
66 <packaging >jar</packaging >
7- <version >1.4.1 </version >
7+ <version >1.4.3 </version >
88 <name >browscap-java</name >
99 <description >A blazingly fast and memory efficient Java client on top of the BrowsCap CSV source files.</description >
1010
3030 <url >https://github.com/blueconic/browscap-java</url >
3131 </scm >
3232
33+ <distributionManagement >
34+ <snapshotRepository >
35+ <id >ossrh</id >
36+ <url >https://s01.oss.sonatype.org/content/repositories/snapshots</url >
37+ </snapshotRepository >
38+ <repository >
39+ <id >ossrh</id >
40+ <url >https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url >
41+ </repository >
42+ </distributionManagement >
43+
3344 <url >http://www.blueconic.com</url >
3445 <properties >
3546 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
Original file line number Diff line number Diff line change 2222public class UserAgentService {
2323
2424 // The version of the browscap file this bundle depends on
25- public static final int BUNDLED_BROWSCAP_VERSION = 6001005 ;
25+ public static final int BUNDLED_BROWSCAP_VERSION = 6001006 ;
2626 private String myZipFilePath ;
2727 private InputStream myZipFileStream ;
2828
Original file line number Diff line number Diff line change 2222import java .nio .file .Paths ;
2323import java .util .Collection ;
2424
25+ import org .junit .jupiter .api .Test ;
26+
2527import com .blueconic .browscap .BrowsCapField ;
2628import com .blueconic .browscap .Capabilities ;
2729import com .blueconic .browscap .ParseException ;
2830import com .blueconic .browscap .UserAgentParser ;
2931import com .blueconic .browscap .UserAgentService ;
30- import org .junit .jupiter .api .Test ;
3132
3233class UserAgentServiceTest {
3334
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments