Skip to content
This repository has been archived by the owner on Apr 27, 2019. It is now read-only.

Releases: PlayFab/consuldotnet

0.6.4.4

25 May 03:32
Compare
Choose a tag to compare
  • Added missing CancellationToken overrides to allow long polling for
    Catalog.Node() and Catalog.Service().

0.6.4.3

17 May 02:15
Compare
Choose a tag to compare
  • Fixed configuration reuse between multiple clients so multiple
    ConsulClients that exist one after the other that both reference the same
    configuration do not spuriously dispose of part of the
    ConsulClientConfiguration.

0.6.4.2

30 Apr 06:18
Compare
Choose a tag to compare
  • ILMerge Json.NET into Consul

0.6.4.1

06 Apr 16:49
Compare
Choose a tag to compare
  • Fix a bug where setting ConsulClientConfiguration.WaitTime would cause 400
    Bad Request responses. Also converted QueryOptions.WaitTime to a nullable
    timespan to match the ConsulClientConfiguration property of the same
    name/purpose.

0.6.4.0

06 Apr 16:52
Compare
Choose a tag to compare
  • Port in Consul 0.6.4 API since Consul 0.6.4 is now released, which was an
    update to UpdateTTL and a change of the term "fail" to "critical"
  • Fix a bug where the StatusCode was not being set correctly on some result
    types.
  • Moved all the helper objects (TTLStatus, CheckStatus.Passing, etc.) to
    reference static readonly instances to cut down on allocation and ease
    comparison.
  • Marked AbortableLock obselete since Thread.Abort doesn't exist in DNXCore
    and it's contrary to the Task philosophy to abort threads.

0.6.3.6

15 Mar 17:47
Compare
Choose a tag to compare
  • Add missing IDisposable to IConsulClient.
  • Made the setters for CreateIndex and ModifyIndex on ACLEntry, KVPair
    and SessionEntry public to allow for easier unit testing.
  • Ported the EnableTagOverride feature from
    hashicorp/consul@afdeb2f

0.6.3.4

15 Mar 17:47
Compare
Choose a tag to compare
  • Added a ConsulClient(ConsulClientConfiguration, HttpClient) constructor
    that allows a user to pass in a custom HttpClient to set a custom proxy
    setting/timeout.

0.6.3.3

05 Mar 03:25
Compare
Choose a tag to compare
  • Remove UpdateTTL double-encoding of the note parameter.

0.6.3.2

25 Feb 01:14
Compare
Choose a tag to compare
  • Remove use of PushStreamContent

0.6.1.4

09 Feb 22:52
Compare
Choose a tag to compare
  • Implemented the IDisposable Pattern for the ConsulClient class.
  • Removed extra awaits in the PreparedQuery endpoint.
  • Fixed a timing bug in one of the Execute methods internal to the client.