Skip to content

Commit b17d7f3

Browse files
Merge pull request #84 from bugsnag/next
v3.2.0
2 parents b7c3e47 + 4c8ec24 commit b17d7f3

3 files changed

Lines changed: 18 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,29 @@
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. To disable this data collection, call `bugsnag.setAutoCaptureSessions(false)`.
7+
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**: `setEndpoints(String notify, String session)` is now the preferred way to configure custom endpoints,
14+
if you are using Bugsnag On-Premise.
15+
316
## 3.2.0-beta (2018-06-14)
417

518
**Important**: This is a beta release which 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)`.
19+
default are captured for each HTTP request received via the Servlet API. To disable this data collection, call `bugsnag.setAutoCaptureSessions(false)`.
20+
821
If you wish to use a custom strategy for tracking sessions, call `bugsnag.startSession()` in the
922
appropriate place within your application.
1023
[Jamie Lynch](https://github.com/fractalwrench)
1124
[#70](https://github.com/bugsnag/bugsnag-java/pull/70)
1225

13-
**Deprecation notice**
14-
`setEndpoints(String notify, String session)` is now the preferred way to configure custom endpoints,
26+
**Deprecation notice**: `setEndpoints(String notify, String session)` is now the preferred way to configure custom endpoints,
1527
if you are using Bugsnag On-Premise.
1628

1729
## 3.1.6 (2018-05-03)

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)