Skip to content

Commit

Permalink
RELEASE: Version 3.2.12.4 released.
Browse files Browse the repository at this point in the history
DATA: Updated the Lite data files for December data.
BUG: putIfAbsent will return null if the key was not already set, which will always be the case as this is only called when get returns null.
FEAT: Usage data now shared over HTTPS.
FEAT: Added benchmark example.
FEAT: Overrides are now applied to the match method in the same way as they were with the now depricated results method.
FEAT: Usage sharing and property value overrides are now released as stable.
OPTIM: The getValues method now ensures that the get method is not run twice.
OPTIM: Modified the implementation of getValues to use a ConcurrentHashMap.
  • Loading branch information
Joseph51D authored and ben51degrees committed Dec 22, 2016
2 parents 53ae12b + db92dc2 commit f70b029
Show file tree
Hide file tree
Showing 42 changed files with 1,551 additions and 644 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ nb-configuration.xml
*.lic
.idea/
*.iml
/target/
/target/
nbactions*
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ As of version 3.2.2.20-beta the Maven coordinates for the 51Degrees Java API hav
<dependency>
<groupId>com.51degrees</groupId>
<artifactId>device-detection-core</artifactId>
<version>3.2.2.20-beta</version>
<version>x.x.x.x</version>
</dependency>
```

Expand All @@ -24,11 +24,11 @@ As of version 3.2.2.20-beta the Maven coordinates for the 51Degrees Java API hav
<dependency>
<groupId>com.51degrees</groupId>
<artifactId>device-detection-webapp</artifactId>
<version>3.2.2.20-beta</version>
<version>x.x.x.x</version>
</dependency>
```

You can also get a package with examples and a package with WebApp example servlets. For more details see [Maven Central Repository](http://search.maven.org/#search|ga|1|g%3A%22com.51degrees%22).
You can also get a package with examples and a package with WebApp example servlets. For more details and the latest packages see [Maven Central Repository](http://search.maven.org/#search|ga|1|g%3A%22com.51degrees%22).

**Server Side and Offline projects:** Initialize detector like...

Expand Down Expand Up @@ -100,6 +100,13 @@ Data files which are updated weekly and daily, automatically, and with more prop

## Recent Changes

### Version 3.2.11.3 Changes:
Removed assert which caused increased memory usage.

Improved detections per second per thread when using a large number of threads.

WebProvider match function now calls base match function with headers.

### Version 3.2.10.4 Changes:
Fix for profile override cookie.

Expand Down
170 changes: 0 additions & 170 deletions README.txt

This file was deleted.

4 changes: 3 additions & 1 deletion device-detection-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ As of version 3.2.2.20-beta the Maven coordinates for the Core package have chan
<dependency>
<groupId>com.51degrees</groupId>
<artifactId>device-detection-core</artifactId>
<version>3.2.2.20-beta</version>
<version>x.x.x.x</version>
</dependency>
```

Please remember to update your project POM files to reflect the change.

The latest package can be found on the [Maven Central Repository](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.51degrees%22%20AND%20a%3A%22device-detection-core%22)

**Summary**

This package contains the implementation of device detection and provides access to classes and methods for working with the 51Degrees device data nd device detection.
Expand Down
2 changes: 1 addition & 1 deletion device-detection-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.51degrees</groupId>
<artifactId>device-detection</artifactId>
<version>3.2.10.4</version>
<version>v3.2.12.4</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
Loading

0 comments on commit f70b029

Please sign in to comment.