-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathrevapi.yml
More file actions
66 lines (66 loc) · 4.2 KB
/
revapi.yml
File metadata and controls
66 lines (66 loc) · 4.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
acceptedBreaks:
"1.7.6":
com.rollbar:rollbar-java:
- code: "java.field.removed"
old: "field com.rollbar.notifier.config.ConfigBuilder.defaultErrorLevel"
justification: "Removing protected fields, deriving from ConfigBuilder should\
\ be done by other SDK classes only"
- code: "java.field.removed"
old: "field com.rollbar.notifier.config.ConfigBuilder.defaultMessageLevel"
justification: "Removing protected fields, deriving from ConfigBuilder should\
\ be done by other SDK classes only"
- code: "java.field.removed"
old: "field com.rollbar.notifier.config.ConfigBuilder.defaultThrowableLevel"
justification: "Removing protected fields, deriving from ConfigBuilder should\
\ be done by other SDK classes only"
"1.7.9":
com.rollbar:rollbar-java:
- code: "java.method.addedToInterface"
new: "method boolean com.rollbar.notifier.config.CommonConfig::truncateLargePayloads()"
justification: "This is a binary compatible change, which could only break custom\
\ implementations of our config interfaces, but those interfaces are not meant\
\ to be implemented by users"
- code: "java.method.addedToInterface"
new: "method com.rollbar.notifier.sender.json.JsonSerializer com.rollbar.notifier.config.CommonConfig::jsonSerializer()"
justification: "This is a binary compatible change, which could only break custom\
\ implementations of our config interfaces, but those interfaces are not meant\
\ to be implemented by users"
"2.0.0":
com.rollbar:rollbar-java:
- code: "java.method.addedToInterface"
new: "method com.rollbar.notifier.telemetry.TelemetryEventTracker com.rollbar.notifier.config.CommonConfig::telemetryEventTracker()"
justification: "This is going to be added in a major version"
- code: "java.method.addedToInterface"
new: "method int com.rollbar.notifier.config.CommonConfig::maximumTelemetryData()"
justification: "This is going to be added in a major version"
"2.1.0":
com.rollbar:rollbar-java:
- code: "java.method.addedToInterface"
new: "method java.util.Map<java.lang.Thread, java.lang.StackTraceElement[]> com.rollbar.notifier.wrapper.ThrowableWrapper::getAllStackTraces()"
justification: "This is a binary compatible change, which could only break custom\
\ implementations of our config interfaces, but those interfaces are not meant\
\ to be implemented by users"
- code: "java.method.addedToInterface"
new: "method com.rollbar.api.payload.data.body.RollbarThread com.rollbar.notifier.wrapper.ThrowableWrapper::getRollbarThread()"
justification: "This is a binary compatible change, which could only break custom\
\ implementations of our config interfaces, but those interfaces are not meant\
\ to be implemented by users"
- code: "java.method.addedToInterface"
new: "method java.util.List<com.rollbar.api.payload.data.body.RollbarThread> com.rollbar.notifier.wrapper.ThrowableWrapper::getRollbarThreads()"
justification: "This is a binary compatible change, which could only break custom\
\ implementations of our config interfaces, but those interfaces are not meant\
\ to be implemented by users"
"2.2.0":
com.rollbar:rollbar-java:
- code: "java.method.removed"
old: "method java.util.List<com.rollbar.api.payload.data.TelemetryEvent> com.rollbar.notifier.telemetry.RollbarTelemetryEventTracker::dump()"
justification: "This method is replaced by getAll(), the interface is not meant to be\
\ implemented by users"
- code: "java.method.removed"
old: "method java.util.List<com.rollbar.api.payload.data.TelemetryEvent> com.rollbar.notifier.telemetry.TelemetryEventTracker::dump()"
justification: "This method is replaced by getAll(), the interface is not meant to be\
\ implemented by users"
- code: "java.method.addedToInterface"
new: "method java.util.List<com.rollbar.api.payload.data.TelemetryEvent> com.rollbar.notifier.telemetry.TelemetryEventTracker::getAll()"
justification: "This method replaces dump(), the interface is not meant to be implemented\
\ by users"