Skip to content

Commit a8c037d

Browse files
committed
1.3.12 - 3 March 2022
- Updated to browscap 6001000 (Safari 15.3, 15.4 and Chrome/FireFox versions updated until 107)
1 parent 72650db commit a8c037d

File tree

7 files changed

+16
-5
lines changed

7 files changed

+16
-5
lines changed

CHANGELOG.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
1.3.12 - 3 March 2022
2+
- Updated to browscap 6001000 (Safari 15.3, 15.4 and Chrome/FireFox versions updated until 107)
3+
14
1.3.11 - 1 December 2021
25
- Updated to browscap 6000051
36

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# browscap-java
44
A blazingly fast and memory efficient (thread-safe) Java client on top of the BrowsCap [CSV source files](https://github.com/browscap/browscap).
5-
The BrowsCap version currently shipped is: 6000051.
5+
The BrowsCap version currently shipped is: 6001000.
66

77
## Description
88
This library can be used to parse useragent headers in order to extract information about the used browser, browser version, platform, platform version and device type. Very useful to determine if the client is a desktop, tablet or mobile device or to determine if the client is on Windows or Mac OS (just to name a few examples).
@@ -42,7 +42,7 @@ Add this to the dependencies in your pom.xml.
4242
<dependency>
4343
<groupId>com.blueconic</groupId>
4444
<artifactId>browscap-java</artifactId>
45-
<version>1.3.11</version>
45+
<version>1.3.12</version>
4646
</dependency>
4747
```
4848

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.blueconic</groupId>
55
<artifactId>browscap-java</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.3.11</version>
7+
<version>1.3.12</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

src/main/java/com/blueconic/browscap/UserAgentService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
public class UserAgentService {
2323

2424
// The version of the browscap file this bundle depends on
25-
public static final int BUNDLED_BROWSCAP_VERSION = 6000051;
25+
public static final int BUNDLED_BROWSCAP_VERSION = 6001000;
2626
private String myZipFilePath;
2727
private InputStream myZipFileStream;
2828

-4.92 MB
Binary file not shown.
5.07 MB
Binary file not shown.

src/test/resources/useragents.txt

+9-1
Original file line numberDiff line numberDiff line change
@@ -1252,4 +1252,12 @@ Safari 15 macOS 10.15 Desktop Mozilla/5.0 (Macintosh; Intel Mac O
12521252
Samsung Browser 14 Android 11.0 Tablet Mozilla/5.0 (Linux; Android 11; SAMSUNG SM-T295) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/14.2 Chrome/87.0.4280.141 Safari/537.36
12531253
Samsung Browser 15 Android 11.0 Mobile Phone Mozilla/5.0 (Linux; Android 11; SAMSUNG SM-G973F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/15.0 Chrome/90.0.4430.210 Mobile Safari/537.36
12541254
Safari 15 macOS 12.0 Desktop Mozilla/5.0 (Macintosh; Intel Mac OS X 12_0_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15
1255-
Chrome 100 Win10 10.0 Desktop Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4650.4 Safari/537.36
1255+
Chrome 100 Win10 10.0 Desktop Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4650.4 Safari/537.36
1256+
Edge 103 Win10 10.0 Desktop Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4867.0 Safari/537.36 Edg/103.0.1169.1
1257+
Firefox 107 Win10 10.0 Desktop Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:100.0) Gecko/20100101 Firefox/107.0
1258+
Chrome 107 Win10 10.0 Desktop Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.4758.102 Safari/537.36
1259+
Firefox 100 Win10 10.0 Desktop Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:100.0) Gecko/20100101 Firefox/100.0
1260+
Safari 15 iOS 15.2 Mobile Phone Mozilla/5.0 (iPhone; CPU iPhone OS 15_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Mobile/15E148 Safari/604.1
1261+
Safari 15 iOS 15.3 Mobile Phone Mozilla/5.0 (iPhone; CPU iPhone OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1
1262+
Safari 15 ipadOS 15.2 Tablet Mozilla/5.0 (iPad; CPU OS 15_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Mobile/15E148 Safari/604.1
1263+
Safari 15 ipadOS 15.3 Tablet Mozilla/5.0 (iPad; CPU OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1

0 commit comments

Comments
 (0)