-
Notifications
You must be signed in to change notification settings - Fork 591
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
Microsoft.CodeAnalysis.PublicApiAnalyzers
Reference: #1269 * Use the same API analysis tool that is used in the RabbitMQ.Stream.Client library. * Remove existing APIApproval tests. Replaced by PublicApiAnalyzers. * Add retries when connection can't be open due to a `SocketException`. * Change Windows GitHub actions runner to windows-2019. It should be faster and may not have that socket exception * Add connection retries for SocketException to SSL tests. Uncovered with windows 2019.
- Loading branch information
1 parent
3794b4c
commit 1fa2325
Showing
19 changed files
with
1,223 additions
and
1,399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"erlang": "26.1.2", | ||
"erlang": "26.2.1", | ||
"rabbitmq": "3.12.10" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
RabbitMQ.Client.OAuth2.IOAuth2Client | ||
RabbitMQ.Client.OAuth2.IOAuth2Client.RefreshToken(RabbitMQ.Client.OAuth2.IToken token) -> RabbitMQ.Client.OAuth2.IToken | ||
RabbitMQ.Client.OAuth2.IOAuth2Client.RequestToken() -> RabbitMQ.Client.OAuth2.IToken | ||
RabbitMQ.Client.OAuth2.IToken | ||
RabbitMQ.Client.OAuth2.IToken.AccessToken.get -> string | ||
RabbitMQ.Client.OAuth2.IToken.ExpiresIn.get -> System.TimeSpan | ||
RabbitMQ.Client.OAuth2.IToken.hasExpired.get -> bool | ||
RabbitMQ.Client.OAuth2.IToken.RefreshToken.get -> string | ||
RabbitMQ.Client.OAuth2.JsonToken | ||
RabbitMQ.Client.OAuth2.JsonToken.access_token.get -> string | ||
RabbitMQ.Client.OAuth2.JsonToken.access_token.set -> void | ||
RabbitMQ.Client.OAuth2.JsonToken.expires_in.get -> long | ||
RabbitMQ.Client.OAuth2.JsonToken.expires_in.set -> void | ||
RabbitMQ.Client.OAuth2.JsonToken.JsonToken() -> void | ||
RabbitMQ.Client.OAuth2.JsonToken.JsonToken(string access_token, string refresh_token, long expires_in) -> void | ||
RabbitMQ.Client.OAuth2.JsonToken.JsonToken(string access_token, string refresh_token, System.TimeSpan expires_in_span) -> void | ||
RabbitMQ.Client.OAuth2.JsonToken.refresh_token.get -> string | ||
RabbitMQ.Client.OAuth2.JsonToken.refresh_token.set -> void | ||
RabbitMQ.Client.OAuth2.OAuth2ClientBuilder | ||
RabbitMQ.Client.OAuth2.OAuth2ClientBuilder.AddRequestParameter(string param, string paramValue) -> RabbitMQ.Client.OAuth2.OAuth2ClientBuilder | ||
RabbitMQ.Client.OAuth2.OAuth2ClientBuilder.Build() -> RabbitMQ.Client.OAuth2.IOAuth2Client | ||
RabbitMQ.Client.OAuth2.OAuth2ClientBuilder.OAuth2ClientBuilder(string clientId, string clientSecret, System.Uri tokenEndpoint) -> void | ||
RabbitMQ.Client.OAuth2.OAuth2ClientBuilder.SetHttpClientHandler(System.Net.Http.HttpClientHandler handler) -> RabbitMQ.Client.OAuth2.OAuth2ClientBuilder | ||
RabbitMQ.Client.OAuth2.OAuth2ClientBuilder.SetScope(string scope) -> RabbitMQ.Client.OAuth2.OAuth2ClientBuilder | ||
RabbitMQ.Client.OAuth2.OAuth2ClientCredentialsProvider | ||
RabbitMQ.Client.OAuth2.OAuth2ClientCredentialsProvider.Name.get -> string | ||
RabbitMQ.Client.OAuth2.OAuth2ClientCredentialsProvider.OAuth2ClientCredentialsProvider(string name, RabbitMQ.Client.OAuth2.IOAuth2Client oAuth2Client) -> void | ||
RabbitMQ.Client.OAuth2.OAuth2ClientCredentialsProvider.Password.get -> string | ||
RabbitMQ.Client.OAuth2.OAuth2ClientCredentialsProvider.Refresh() -> void | ||
RabbitMQ.Client.OAuth2.OAuth2ClientCredentialsProvider.UserName.get -> string | ||
RabbitMQ.Client.OAuth2.OAuth2ClientCredentialsProvider.ValidUntil.get -> System.TimeSpan? | ||
RabbitMQ.Client.OAuth2.Token | ||
RabbitMQ.Client.OAuth2.Token.AccessToken.get -> string | ||
RabbitMQ.Client.OAuth2.Token.ExpiresIn.get -> System.TimeSpan | ||
RabbitMQ.Client.OAuth2.Token.RefreshToken.get -> string | ||
RabbitMQ.Client.OAuth2.Token.Token(RabbitMQ.Client.OAuth2.JsonToken json) -> void |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#nullable enable |
Oops, something went wrong.