Skip to content

Releases: bluetianx/BirdMessenger

fix(HEAD request): throw exception if response is not 200 and not 204

28 Oct 15:36
Compare
Choose a tag to compare

Fix

  • No found header exception when send a head request #58

Thanks feelinLit

Support zero length uploads

21 May 16:47
Compare
Choose a tag to compare

Fix

  • Support zero length uploads Issue

Improve

  • Reduced memory allocations while checking if a custom header is not reserved PR

support TusException

07 Oct 15:21
Compare
Choose a tag to compare

Throw TusException contained OriginHttpRequest and OriginHttpResponse when statuscode of response is incorrect

fix: HttpHeaders not passed to all requests

14 Aug 15:10
Compare
Choose a tag to compare

Fix: HttpHeaders not passed to all requests, Issue

Support upload file with chunk again

27 Nov 08:28
Compare
Choose a tag to compare
  1. Support upload file with chunk again,you can check this Issue,demo code as follow
TusPatchRequestOption tusPatchRequestOption = new TusPatchRequestOption
            {
                FileLocation = resp.FileLocation,
                Stream = fileStream,
                UploadBufferSize = 2*1024*1024, // upload size ,default value is 1MB
                UploadType = UploadType.Chunk,  // setting upload file with Stream or chunk ,default value is Stream 
            };

            var tusPatchResp = await tusClient.TusPatchAsync(tusPatchRequestOption, CancellationToken.None);

fix: package v3.0.0bata1 v3.0.0 and v3.0.1 do not contain latest code

08 Nov 16:29
Compare
Choose a tag to compare

fix: package v3.0.0bata1 v3.0.0 and v3.0.1 do not contain latest code

you can know the bug from the issue

Simple and fast

17 Oct 14:40
Compare
Choose a tag to compare
  • Fewer external dependencies
  • upload file with Httpclient directly

Simple and fast

14 Aug 12:44
Compare
Choose a tag to compare
Simple and fast Pre-release
Pre-release
  • Fewer external dependencies
  • upload file with Httpclient directly

Fix: miss invoke upload finish event method when the file finishes uploading by streaming

11 Jun 15:48
Compare
Choose a tag to compare

Fix: miss invoke upload finish event method when the file finishes uploading by streaming

Performance Improvement

06 Mar 15:52
Compare
Choose a tag to compare

Enhance

Feature

  • Send Http request with custom Http header