Skip to content

Commit

Permalink
Merge pull request #84 from bugsnag/next
Browse files Browse the repository at this point in the history
v3.2.0
  • Loading branch information
fractalwrench authored Jul 3, 2018
2 parents b7c3e47 + 4c8ec24 commit b17d7f3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
20 changes: 16 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,29 @@
# Changelog

## 3.2.0 (2018-07-03)

This release introduces automatic tracking of sessions, which by
default are captured for each HTTP request received via the Servlet API. To disable this data collection, call `bugsnag.setAutoCaptureSessions(false)`.

If you wish to use a custom strategy for tracking sessions, call `bugsnag.startSession()` in the
appropriate place within your application.
[Jamie Lynch](https://github.com/fractalwrench)
[#70](https://github.com/bugsnag/bugsnag-java/pull/70)

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

## 3.2.0-beta (2018-06-14)

**Important**: This is a beta release which introduces automatic tracking of sessions, which by
default are captured for each HTTP request received via the Servlet API
To disable this data collection, call `bugsnag.setAutoCaptureSessions(false)`.
default are captured for each HTTP request received via the Servlet API. To disable this data collection, call `bugsnag.setAutoCaptureSessions(false)`.

If you wish to use a custom strategy for tracking sessions, call `bugsnag.startSession()` in the
appropriate place within your application.
[Jamie Lynch](https://github.com/fractalwrench)
[#70](https://github.com/bugsnag/bugsnag-java/pull/70)

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

## 3.1.6 (2018-05-03)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=3.2.0-beta
version=3.2.0
group=com.bugsnag

# Default properties
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/bugsnag/Notifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

@Expose
Expand Down

0 comments on commit b17d7f3

Please sign in to comment.