Skip to content

Release v1.16.0

Compare
Choose a tag to compare
@Y-Sindo Y-Sindo released this 08 Mar 08:09
19b81ca

Features

  • Support the customization of endpoints for servers to connect to ASRS in code or config. #1564
    Users have two ways to set serverEndpoint or clientEndpoint.
    • Option 1: in connection string: serverEndpoint=...
    • Option 2: in the ctor of ServiceEndpoint:
      new ServiceEndpoint(new Uri(endpoint), new DefaultAzureCredential())
      {
          ClientEndpoint = clientEndpoint,
          ServerEndpoint = serverEndpoint
      }
  • Allow customization of endpoints for clients to connect to ASRS in code.#1564 See the code sample above.
  • Expose connection capacity in metrics of ServiceEndpoint #1567
  • Change the default endpoint router from random to weighted random #1568

Fixes

  • Fix the message order problem with multiple service connections. #1571