Skip to content

Commit c50cd84

Browse files
committed
v3.2.0
1 parent b7c3e47 commit c50cd84

3 files changed

Lines changed: 16 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 3.2.0 (2018-07-03)
4+
5+
This release introduces automatic tracking of sessions, which by
6+
default are captured for each HTTP request received via the Servlet API
7+
To disable this data collection, call `bugsnag.setAutoCaptureSessions(false)`.
8+
If you wish to use a custom strategy for tracking sessions, call `bugsnag.startSession()` in the
9+
appropriate place within your application.
10+
[Jamie Lynch](https://github.com/fractalwrench)
11+
[#70](https://github.com/bugsnag/bugsnag-java/pull/70)
12+
13+
**Deprecation notice**
14+
`setEndpoints(String notify, String session)` is now the preferred way to configure custom endpoints,
15+
if you are using Bugsnag On-Premise.
16+
317
## 3.2.0-beta (2018-06-14)
418

519
**Important**: This is a beta release which introduces automatic tracking of sessions, which by

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=3.2.0-beta
1+
version=3.2.0
22
group=com.bugsnag
33

44
# Default properties

src/main/java/com/bugsnag/Notifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class Notifier {
66
private static final String NOTIFIER_NAME = "Bugsnag Java";
7-
private static final String NOTIFIER_VERSION = "3.2.0-beta";
7+
private static final String NOTIFIER_VERSION = "3.2.0";
88
private static final String NOTIFIER_URL = "https://github.com/bugsnag/bugsnag-java";
99

1010
@Expose

0 commit comments

Comments
 (0)