Releases: reactiveui/refit
Releases · reactiveui/refit
v4.6.107
Changes:
- 16d5a71 Merge pull request #646 from Styxxy/memleakxml [ #643 ]
- 564559d Merge pull request #648 from Styxxy/issue641-nullrefexception [ #641 ]
- ac4188e check for null values in handling (exception) content
- ccd5b6b add test to simulate issue
- 8fef9a0 add xmlserializer cache
- 82b093e Merge pull request #638 from fedemkr/patch-1 [ #425 ]
- 9d7bd9c Merge pull request #640 from yuri-voloshyn/master
- 3979ed9 docs: added sample application
- a4c84e4 Added inherited generic interfaces
- ad82d88 added sample application
v4.6.99
Changes:
- 4c8febe Merge pull request #634 from lhyqy5/issue-625-output-encoding-error [ #625 ]
- 33832ff Merge branch 'master' into issue-625-output-encoding-error
- a124fb5 Merge pull request #633 from Sergio0694/master
- 199dedf Tweaked README.md
- 0814d0d Added interface inheritance docs
- 814d700 Added header attributes inheritance
- 2c0acaa use MemoryStream replace StringWriter in XmlContentSerializer's SerializeAsync method
- ad3d42b add unit test for xml writer encoding setting
- ec3d6c3 Merge pull request #631 from Bartmax/patch-1
- b68a55d Fixed merge issues
See more
- 4f7e2b4 Merge branch 'master' into master
- d74278e Switched to explicit interface implementation
- 94a37fd Fixed formatting
- ea66fe1 Update README using async void to async Task.
- d56caf8 ensure build task files are signed
- f3cdd66 Merge branch 'master' into master
- 01dee39 Initial WhiteSource configuration file
- 728d4f0 Merge branch 'master' into master
- 6330b58 Add mock InheritedMethodTest
- 44d24d1 Adjust example inheritance interfaces for integrations tests
- ab8dca5 Change generic RequestBuilderImplementation to include inherited methods by it's interfaces
- fc801ed Fixing method AddInheritedMethods unnecessarily returning modified TemplateInformation object
- 3943d36 #176: Adding support for aggregated/interhited interfaces
This list of changes was auto generated.
v4.6.90
Changes:
- a879553 ensure tasks are loaded from the correct location for both transitive and build directories. [ #619 ]
- f7ab7ef Merge pull request #616 from tstivers1990/614-should-throw-argumentexception-if-hosturl-isnullorwhitespace
- c3d1907 Merge pull request #615 from tstivers1990/610-trim-trailing-forwardslash-from-hosturl
- 89d9db7 ArgumentException if hostUrl IsNullOrWhitespace
- 4c864fe Use null-conditional operator to prevent NRE
- 69bea73 Trim trailing
/
from hostUrl
This list of changes was auto generated.
v4.6.85
Changes:
- d835e88 Merge pull request #612 from reactiveui/update-core
- a5006e1 Update to latest mock and test libs
- 20f4cf1 Build with .NET Core SDK 3
- 00b9d81 Code style formatting
- c1d02f0 Fix template formatting
- 913d617 Point to the correct 461 dir
- be2c586 Use full namespace to void potential dup imports
- c45197b Code style
- 026fe00 Fix warnings
- 6fa96c6 Update test refs
See more
- 9e91a9c Add support for the new buildTransitive, so direct references aren't needed to run the targets [ #598 ]
- 0dab289 Update deps to use latest Roslyn.
- 5e1f273 Merge pull request #611 from reactiveui/build-updates
- c5555ce Merge pull request #608 from Styxxy/Styxxy-issue-605
- 5c33b7f Merge pull request #606 from felipebaltazar/options-attribute
- b86ddcb Update depenencies
- 6d9b316 Merge branch 'master' into Styxxy-issue-605
- 76448d8 remove Attribute from name
- c5efc77 exclude from Obfuscation
- b44e75a
OptionsWithBodyDetected
removed - 8db866b Options Attribute
- 846f5f8 Merge pull request #590 from stevewgh/custom-serializer-bug
- 4fe01b3 Fixed deadlock when serializing content + added test coverage.
- 3fce69b Merge pull request #584 from MariusVolkhart/mv/multiForm
- 0960ce0 Merge pull request #586 from MariusVolkhart/mv/improveErrorMessaging
- 48208e8 Merge pull request #571 from stevewgh/custom-serializers
- 3b678e4 Provide additional information during errors
- c63b62c !fixup 303a357
- 303a357 !fixup dfdad56
- 4efa19c Merge pull request #585 from MariusVolkhart/mv/docs
- cc05c3a Made IContentSerializer.SerializeAsync generic
- f4d83d8 Expand XMLDocs for QueryAttribute and CollectionFormat
- dfdad56 !fixup Add support for url form encoding collections
- 8a01a1a Add support for url form encoding collections
- babaed0 Added missing ConfigureAwait(false)
- 6d3a5f4 Added missing ConfigureAwait(false) & fixed deadlock on ValidationApiException.Content
- 7a387ed Changes made in response to PR feedback
- 89a2c34 Merge branch 'master' into custom-serializers
- 741b7b6 Isolated Content Serialization continued
- 27d6fb4 Isolated Content Serialization
This list of changes was auto generated.
v4.6.58
Merge pull request #581 from Styxxy/preserveattribute-namespace Conflicting PreserveAttribute when using InternalsVisibleTo
v4.6.48
What's Changed
- fix early response stream closing. (#538) @Veikedo
- Ensure Refit clients can be registered in the DI container for HttpClientFactory. (#561) @digitalfuller
v4.6.30
Merge pull request #536 from reactiveui/strong-name-build-task Add strong name to build tasks
v4.6.16
Cleanup and docs
v4.5.6
fix version
v4.4.17
Move PushStreamContent Namespace (#467) * Move PushStreamContent Namespace Previous behavior caused issues of mbiguous reference around PushStreamContent when both Refit and System.Net.Http.Formatting are included in a project. This is essentially a show stopper to upgrading to the latest Refit. The solution is to change the internal implementation of PushStreamContent namespace from System.Net.Http -> Refit.Net.Http and to update the usages internally. Note this may be a breaking change to those who have taken a dependency on PushStreamContent in their own projects from the Refit assemblies. * Make types internal