Skip to content

Commit c05e979

Browse files
authored
Merge pull request #160 from rollbar/release-1.3.0
Release 1.3.0
2 parents 6ff5fff + ba2ad22 commit c05e979

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

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

5+
# 1.3.0
6+
- Fix rollbar-log4j2 appender by overriding stop methods and close the Rollbar client. [#156](https://github.com/rollbar/rollbar-java/pull/156)
7+
- Add configuration options to the rollbar-log4j2 to match the ones of the rollbar-logback. [#157](https://github.com/rollbar/rollbar-java/pull/157)
8+
- Fix rollbar-android publication by setting in the pom.xml the packaging value as `arr`. [#158](https://github.com/rollbar/rollbar-java/pull/158)
9+
- Fix rollbar-android dependencies to include the one declared as api. [#159](https://github.com/rollbar/rollbar-java/pull/159)
10+
- Add feature to set up a proxy to be used by to send the payloads. [#154](https://github.com/rollbar/rollbar-java/pull/154)
11+
512
## 1.2.1
613
- 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)
714

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1.2.1
1+
VERSION_NAME=1.3.0
22
GROUP=com.rollbar
33

44
POM_DESCRIPTION=For connecting your applications built on the JVM to Rollbar for Error Reporting

rollbar-android/src/main/java/com/rollbar/android/Rollbar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import java.util.concurrent.TimeUnit;
2626

2727
public class Rollbar {
28-
private static final String NOTIFIER_VERSION = "1.2.1";
28+
private static final String NOTIFIER_VERSION = "1.3.0";
2929
private static final String ITEM_DIR_NAME = "rollbar-items";
3030
private static final String ANDROID = "android";
3131
private static final String DEFAULT_ENVIRONMENT = "production";

rollbar-java/src/test/java/com/rollbar/notifier/provider/notifier/NotifierProviderTest.java

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

1515
public class NotifierProviderTest {
1616

17-
static final String VERSION = "1.2.1";
17+
static final String VERSION = "1.3.0";
1818

1919
@Rule
2020
public MockitoRule rule = MockitoJUnit.rule();

rollbar-log4j2/src/main/java/com/rollbar/log4j2/RollbarAppender.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ protected RollbarAppender(String name, Filter filter, Layout<? extends Serializa
6161
* Create appender plugin factory method.
6262
*
6363
* @param accessToken the Rollbar access token.
64+
* @param endpoint the Rollbar endpoint to be used.
65+
* @param environment the environment.
66+
* @param language the language.
67+
* @param configProviderClassName The class name of the config provider implementation to get
68+
* the configuration.
6469
* @param name the name.
6570
* @param layout the layout.
6671
* @param filter the filter.

0 commit comments

Comments
 (0)