Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Commit

Permalink
Releasing version 5.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LaunchDarklyCI committed Mar 25, 2021
1 parent 4cb9003 commit bc3839e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the LaunchDarkly .NET Server-Side SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).

## [5.14.2] - 2021-03-24
### Fixed:
- Setting a custom base URI to use instead of the regular LaunchDarkly service endpoints did not work correctly if the base URI included a path prefix, as it might if for instance you were using a reverse proxy that would forward requests from `http://my-proxy/launchdarkly-stream/some-endpoint-path` to `https://stream.launchdarkly.com/some-endpoint-path`. In this example, the `/launchdarkly-stream` part was being dropped from the request URL, preventing this type of proxy configuration from working. Now the base path will always be preserved.

## [5.14.1] - 2021-03-03
### Fixed:
- The long-running task that the SDK uses to process analytics events was being created in a way that could unnecessarily reduce availability of the managed thread pool, potentially causing unexpected delays in asynchronous task scheduling elsewhere in an application.
Expand Down
2 changes: 1 addition & 1 deletion src/LaunchDarkly.ServerSdk/LaunchDarkly.ServerSdk.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>5.14.1</Version>
<Version>5.14.2</Version>
<TargetFrameworks>netstandard1.4;netstandard1.6;netstandard2.0;net45;net471</TargetFrameworks>
<!-- Note: whenever we add or remove supported target frameworks, we must update ServerDiagnosticStore.GetDotNetTargetFramework() -->
<DebugType>portable</DebugType>
Expand Down

0 comments on commit bc3839e

Please sign in to comment.