Skip to content

Commit

Permalink
Prepare release 1.11.1 (#1488)
Browse files Browse the repository at this point in the history
This commit prepares for 1.11.1 version release.
  • Loading branch information
russcam authored Sep 13, 2021
1 parent 2cf23b2 commit ca11381
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 12 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,26 @@ endif::[]
=== .NET Agent version 1.x
[[release-notes-1.11.1]]
==== 1.11.1
[float]
===== Features
- {pull}1354[#1354] Serialize to writer directly
- {pull}1356[#1356] Better logging in PayloadSenderV2 on task cancellation
- {pull}1358[#1358] Propagate Trace context in exit spans (issues: {issue}1350[#1350], {issue}1344[#1344])
- {pull}1374[#1374] Get Command and Key for StackExchange.Redis spans (issue: {issue}1364[#1364])
- {pull}1474[#1474] Add CosmosDB integration to NetCoreAll
- {pull}1368[#1368] Use 10K limit for CaptureBody similar to the Java agent (issue: {issue}1359[#1359])
[float]
===== Bug fixes
- {pull}1362[#1362] Unset parentId if TraceContextIgnoreSampledFalse is active
- {pull}1367[#1367] Make sure BreakdownMetricsProvider prints 1K warning only once per collection (issue: {issue}1361[#1361])
- {pull}1471[#1471] Sanitize Central config request URI and headers in logs (issue: {issue}1376[#1376])
- {pull}1472[#1472] Honor Transaction.Outcome set by public API in auto instrumentation (issue: {issue}1349[#1349])
- {pull}1481[#1481] Use Kubernetes pod id determined from cgroup file
[[release-notes-1.11.0]]
==== 1.11.0
Expand Down
18 changes: 10 additions & 8 deletions build/scripts/ReleaseNotes.fs
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,16 @@ module ReleaseNotes =

let private filterByPullRequests (issueNumberRegex: Regex) (issues:IReadOnlyList<Issue>): List<GitHubItem> =
let extractRelatedIssues(issue: Issue) =
let matches = issueNumberRegex.Matches(issue.Body)
if matches.Count = 0 then list.Empty
else
matches
|> Seq.cast<Match>
|> Seq.filter(fun m -> m.Success)
|> Seq.map(fun m -> m.Groups.["num"].Value |> int)
|> Seq.toList
if String.isNullOrEmpty issue.Body then list.Empty
else
let matches = issueNumberRegex.Matches(issue.Body)
if matches.Count = 0 then list.Empty
else
matches
|> Seq.cast<Match>
|> Seq.filter(fun m -> m.Success)
|> Seq.map(fun m -> m.Groups.["num"].Value |> int)
|> Seq.toList

let collectedIssues = List<GitHubItem>()
let items = List<GitHubItem>()
Expand Down
8 changes: 4 additions & 4 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<!-- Src Directory Build Properties -->
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
<PropertyGroup>
<AssemblyVersion>1.11.0</AssemblyVersion>
<InformationalVersion>1.11.0</InformationalVersion>
<FileVersion>1.11.0</FileVersion>
<VersionPrefix>1.11.0</VersionPrefix>
<AssemblyVersion>1.11.1</AssemblyVersion>
<InformationalVersion>1.11.1</InformationalVersion>
<FileVersion>1.11.1</FileVersion>
<VersionPrefix>1.11.1</VersionPrefix>
<Authors>Elastic and contributors</Authors>
<Copyright>2021 Elasticsearch BV</Copyright>
<PackageProjectUrl>https://github.com/elastic/apm-agent-dotnet</PackageProjectUrl>
Expand Down

0 comments on commit ca11381

Please sign in to comment.