Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/RESPite/PublicAPI/PublicAPI.Shipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -219,3 +219,19 @@ RESPite.Messages.RespReader.TryParseScalar<T>(RESPite.Messages.RespReader.Scalar
[SER004]RESPite.Buffers.CycleBufferPool<T>
[SER004]RESPite.Buffers.CycleBufferPool<T>.CycleBufferPool() -> void
[SER004]static RESPite.Buffers.CycleBuffer.Create(System.Buffers.MemoryPool<byte>? pool = null, RESPite.Buffers.ICycleBufferCallback? callback = null) -> RESPite.Buffers.CycleBuffer
[SER009]RESPite.Transports.DuplexTransport
[SER009]RESPite.Transports.DuplexTransport.DuplexTransport() -> void
[SER009]abstract RESPite.Transports.DuplexTransport.Advance(int count) -> void
[SER009]abstract RESPite.Transports.DuplexTransport.DisposeAsync() -> System.Threading.Tasks.ValueTask
[SER009]abstract RESPite.Transports.DuplexTransport.Flush() -> bool
[SER009]abstract RESPite.Transports.DuplexTransport.GetMemory(int sizeHint = 0) -> System.Memory<byte>
[SER009]virtual RESPite.Transports.DuplexTransport.GetSpan(int sizeHint = 0) -> System.Span<byte>
[SER009]abstract RESPite.Transports.DuplexTransport.Start(RESPite.Transports.TransportReceiver! receiver) -> void
[SER009]virtual RESPite.Transports.DuplexTransport.IsEncrypted.get -> bool
[SER009]RESPite.Transports.TransportReceiver
[SER009]RESPite.Transports.TransportReceiver.TransportReceiver() -> void
[SER009]abstract RESPite.Transports.TransportReceiver.OnReceived(System.ReadOnlySpan<byte> payload) -> bool
[SER009]virtual RESPite.Transports.TransportReceiver.OnBatchEnd() -> void
[SER009]virtual RESPite.Transports.TransportReceiver.OnClosed(System.Exception? fault) -> void
RESPite.Messages.RespReader.TryGetRawSpan(out System.ReadOnlySpan<byte> value) -> bool
RESPite.Messages.RespReader.CopyRawTo(scoped System.Span<byte> target) -> int
16 changes: 0 additions & 16 deletions src/RESPite/PublicAPI/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1 @@
#nullable enable
[SER009]RESPite.Transports.DuplexTransport
[SER009]RESPite.Transports.DuplexTransport.DuplexTransport() -> void
[SER009]abstract RESPite.Transports.DuplexTransport.Advance(int count) -> void
[SER009]abstract RESPite.Transports.DuplexTransport.DisposeAsync() -> System.Threading.Tasks.ValueTask
[SER009]abstract RESPite.Transports.DuplexTransport.Flush() -> bool
[SER009]abstract RESPite.Transports.DuplexTransport.GetMemory(int sizeHint = 0) -> System.Memory<byte>
[SER009]virtual RESPite.Transports.DuplexTransport.GetSpan(int sizeHint = 0) -> System.Span<byte>
[SER009]abstract RESPite.Transports.DuplexTransport.Start(RESPite.Transports.TransportReceiver! receiver) -> void
[SER009]virtual RESPite.Transports.DuplexTransport.IsEncrypted.get -> bool
[SER009]RESPite.Transports.TransportReceiver
[SER009]RESPite.Transports.TransportReceiver.TransportReceiver() -> void
[SER009]abstract RESPite.Transports.TransportReceiver.OnReceived(System.ReadOnlySpan<byte> payload) -> bool
[SER009]virtual RESPite.Transports.TransportReceiver.OnBatchEnd() -> void
[SER009]virtual RESPite.Transports.TransportReceiver.OnClosed(System.Exception? fault) -> void
RESPite.Messages.RespReader.TryGetRawSpan(out System.ReadOnlySpan<byte> value) -> bool
RESPite.Messages.RespReader.CopyRawTo(scoped System.Span<byte> target) -> int
154 changes: 154 additions & 0 deletions src/StackExchange.Redis/PublicAPI/PublicAPI.Shipped.txt

Large diffs are not rendered by default.

154 changes: 0 additions & 154 deletions src/StackExchange.Redis/PublicAPI/PublicAPI.Unshipped.txt

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ override StackExchange.Redis.Configuration.LoggingTunnel.LoggingDuplexStream.Rea
override StackExchange.Redis.Configuration.LoggingTunnel.LoggingDuplexStream.ReadAsync(System.Memory<byte> buffer, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask<int>
override StackExchange.Redis.Configuration.LoggingTunnel.LoggingDuplexStream.Write(System.ReadOnlySpan<byte> buffer) -> void
override StackExchange.Redis.Configuration.LoggingTunnel.LoggingDuplexStream.WriteAsync(System.ReadOnlyMemory<byte> buffer, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask
[SER009]StackExchange.Redis.Configuration.TlsOptions.GetSslClientAuthenticationOptions(string! host) -> System.Net.Security.SslClientAuthenticationOptions?
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
#nullable enable
[SER009]StackExchange.Redis.Configuration.TlsOptions.GetSslClientAuthenticationOptions(string! host) -> System.Net.Security.SslClientAuthenticationOptions?
2 changes: 2 additions & 0 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"version": "3.2",
"versionHeightOffset": -2,
"versionHeightOffsetAppliesTo": "3.2",
"assemblyVersion": "3.0",
"publicReleaseRefSpec": [
"^refs/heads/main$",
Expand Down
Loading