Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

The change log has moved to this repo's [GitHub Releases Page](https://github.com/rollbar/rollbar-java/releases).

# 1.3.0
- Fix rollbar-log4j2 appender by overriding stop methods and close the Rollbar client. [#156](https://github.com/rollbar/rollbar-java/pull/156)
- Add configuration options to the rollbar-log4j2 to match the ones of the rollbar-logback. [#157](https://github.com/rollbar/rollbar-java/pull/157)
- Fix rollbar-android publication by setting in the pom.xml the packaging value as `arr`. [#158](https://github.com/rollbar/rollbar-java/pull/158)
- Fix rollbar-android dependencies to include the one declared as api. [#159](https://github.com/rollbar/rollbar-java/pull/159)
- Add feature to set up a proxy to be used by to send the payloads. [#154](https://github.com/rollbar/rollbar-java/pull/154)

## 1.2.1
- Fix NPE when not passing default values in rollbar-logback and override stop method to stop the appender [#147](https://github.com/rollbar/rollbar-java/pull/147)

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_NAME=1.2.1
VERSION_NAME=1.3.0
GROUP=com.rollbar

POM_DESCRIPTION=For connecting your applications built on the JVM to Rollbar for Error Reporting
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.util.concurrent.TimeUnit;

public class Rollbar {
private static final String NOTIFIER_VERSION = "1.2.1";
private static final String NOTIFIER_VERSION = "1.3.0";
private static final String ITEM_DIR_NAME = "rollbar-items";
private static final String ANDROID = "android";
private static final String DEFAULT_ENVIRONMENT = "production";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

public class NotifierProviderTest {

static final String VERSION = "1.2.1";
static final String VERSION = "1.3.0";

@Rule
public MockitoRule rule = MockitoJUnit.rule();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ protected RollbarAppender(String name, Filter filter, Layout<? extends Serializa
* Create appender plugin factory method.
*
* @param accessToken the Rollbar access token.
* @param endpoint the Rollbar endpoint to be used.
* @param environment the environment.
* @param language the language.
* @param configProviderClassName The class name of the config provider implementation to get
* the configuration.
* @param name the name.
* @param layout the layout.
* @param filter the filter.
Expand Down