Skip to content

Commit

Permalink
RevApi document non-breaking-breaking changes in the Uni spies APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
jponge committed Dec 7, 2020
1 parent ac80ee9 commit 9985faf
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions implementation/revapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"io\\.smallrye\\.mutiny\\..*"
],
"exclude": [
"io\\.smallrye\\.mutiny\\.operators\\.*",
"io\\.smallrye\\.mutiny\\.operators\\..*"
]
}
Expand All @@ -32,6 +33,48 @@
"old": "method <T> io.smallrye.mutiny.helpers.Subscriptions.SingleItemSubscription<T> io.smallrye.mutiny.helpers.Subscriptions::single(org.reactivestreams.Subscriber<T>, T)",
"new": "method <T> org.reactivestreams.Subscription io.smallrye.mutiny.helpers.Subscriptions::single(org.reactivestreams.Subscriber<T>, T)",
"justification": "SingleItemSubscription should not be exposed, and should be used as a regular Subscription"
},
{
"code": "java.method.parameterTypeChanged",
"old": "parameter void io.smallrye.mutiny.helpers.spies.UniGlobalSpy<T>::subscribing(===io.smallrye.mutiny.operators.UniSerializedSubscriber<? super T>===)",
"new": "parameter void io.smallrye.mutiny.helpers.spies.UniGlobalSpy<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.helpers.spies.UniOnCancellationSpy<T>::subscribing(===io.smallrye.mutiny.operators.UniSerializedSubscriber<? super T>===)",
"new": "parameter void io.smallrye.mutiny.helpers.spies.UniOnCancellationSpy<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.helpers.spies.UniOnFailureSpy<T>::subscribing(===io.smallrye.mutiny.operators.UniSerializedSubscriber<? super T>===)",
"new": "parameter void io.smallrye.mutiny.helpers.spies.UniOnFailureSpy<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.helpers.spies.UniOnItemOrFailureSpy<T>::subscribing(===io.smallrye.mutiny.operators.UniSerializedSubscriber<? super T>===)",
"new": "parameter void io.smallrye.mutiny.helpers.spies.UniOnItemOrFailureSpy<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.helpers.spies.UniOnItemSpy<T>::subscribing(===io.smallrye.mutiny.operators.UniSerializedSubscriber<? super T>===)",
"new": "parameter void io.smallrye.mutiny.helpers.spies.UniOnItemSpy<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.helpers.spies.UniOnSubscribeSpy<T>::subscribing(===io.smallrye.mutiny.operators.UniSerializedSubscriber<? super T>===)",
"new": "parameter void io.smallrye.mutiny.helpers.spies.UniOnSubscribeSpy<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.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"
}
]
}
Expand Down

0 comments on commit 9985faf

Please sign in to comment.