Skip to content

Commit

Permalink
modified the added section of changelog.md
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Feser <[email protected]>
  • Loading branch information
joefeser committed Jul 30, 2024
1 parent bcbd1a2 commit 354cd61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Changed the namespace client properties on `IOpenSearchClient` to return corresponding interfaces to better enable mocking & unit testing ([#646](https://github.com/opensearch-project/opensearch-net/pull/646))

### Added
- Added support for `DateOnly` and `TimeOnly` APIs ([#734](https://github.com/opensearch-project/opensearch-net/pull/734))
- Added support for `MinScore` on `ScriptScoreQuery` ([#624](https://github.com/opensearch-project/opensearch-net/pull/624))
- Added support for the `Cat.PitSegments` and `Cat.SegmentReplication` APIs ([#527](https://github.com/opensearch-project/opensearch-net/pull/527))

Expand Down
4 changes: 2 additions & 2 deletions src/OpenSearch.Net/Transport/PostData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ protected void FinishStream(Stream writableStream, MemoryStream buffer, IConnect
}

protected async
#if NETSTANDARD2_1
#if NETSTANDARD2_1 || NET6_0_OR_GREATER
ValueTask
#else
#else
Task
#endif
FinishStreamAsync(Stream writableStream, MemoryStream buffer, IConnectionConfigurationValues settings, CancellationToken ctx)
Expand Down

0 comments on commit 354cd61

Please sign in to comment.