Skip to content

Commit

Permalink
RevApi fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jponge committed Dec 7, 2020
1 parent cd7f54c commit cd2831e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
6 changes: 6 additions & 0 deletions implementation/revapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@
"old": "parameter void io.smallrye.mutiny.helpers.spies.UniOnTerminationSpy<T>::subscribing(===io.smallrye.mutiny.operators.UniSerializedSubscriber<? super T>===)",
"new": "parameter void io.smallrye.mutiny.helpers.spies.UniOnTerminationSpy<T>::subscribing(===io.smallrye.mutiny.subscription.UniSubscriber<? super T>===)",
"justification": "subscribing(subscriber) is a protected method that is not used by regular consumers of the Mutiny public API"
},
{
"code": "java.method.parameterTypeChanged",
"old": "parameter void io.smallrye.mutiny.operators.AbstractUni<T>::subscribing(===io.smallrye.mutiny.operators.UniSerializedSubscriber<? super T>===)",
"new": "parameter void io.smallrye.mutiny.operators.AbstractUni<T>::subscribing(===io.smallrye.mutiny.subscription.UniSubscriber<? super T>===)",
"justification": "subscribing(subscriber) is a protected method that is not used by regular consumers of the Mutiny public API"
}
]
}
Expand Down
12 changes: 8 additions & 4 deletions reactor/revapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@
"filter": {
"packages": {
"regex": true,
"include": ["io\\.smallrye\\.mutiny\\..*"]
"include": [
"io\\.smallrye\\.mutiny\\..*"
],
"exclude": [
"io\\.smallrye\\.mutiny\\.operators\\.*",
"io\\.smallrye\\.mutiny\\.operators\\..*"
]
}
}
}
Expand All @@ -21,9 +27,7 @@
"id": "breaking-changes",
"configuration": {
"criticality": "highlight",
"differences": [

]
"differences": []
}
},

Expand Down
12 changes: 8 additions & 4 deletions rxjava/revapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@
"filter": {
"packages": {
"regex": true,
"include": ["io\\.smallrye\\.mutiny\\..*"]
"include": [
"io\\.smallrye\\.mutiny\\..*"
],
"exclude": [
"io\\.smallrye\\.mutiny\\.operators\\.*",
"io\\.smallrye\\.mutiny\\.operators\\..*"
]
}
}
}
Expand All @@ -21,9 +27,7 @@
"id": "breaking-changes",
"configuration": {
"criticality": "highlight",
"differences": [

]
"differences": []
}
},

Expand Down

0 comments on commit cd2831e

Please sign in to comment.