Skip to content

Commit

Permalink
Prepare release 1.14 (#1623)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregkalapos authored Feb 9, 2022
1 parent e4df6c9 commit a04553c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,24 @@ endif::[]
[[release-notes-1.x]]
=== .NET Agent version 1.x
[[release-notes-1.14.0]]
==== 1.14.0
[float]
===== Features
- {pull}1620[#1620] Span compression and dropping fast exit spans. New settings: `ExitSpanMinDuration`, `SpanCompressionEnabled`, `SpanCompressionExactMatchMaxDuration`, `SpanCompressionSameKindMaxDuration` (issues: {issue}1329[#1329] and {issue}1475[#1475])
- {pull}1611[#1611] NpgSql 6.x support (issue: {issue}1602[#1602])
- {pull}1589[#1589] Capture transaction name on errors (issue: {issue}1574[#1574])
[float]
===== Bug fixes
- {pull}1603[#1603] .NET 6 support with startup hook (issue: {issue}1590[#1590])
[float]
===== Breaking changes
- {pull}1586[#1586] Change unknown service.name to align with other agents. In the very rare cases when the agent is not able to autoamtically detect the name of a service, or it's not manually set, it'll use the default service name `unknown-dotnet-service`. In prior versions this was just `unknown`. (issue: {issue}1585[#1585])
[[release-notes-1.13.0]]
==== 1.13.0
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.13.0</AssemblyVersion>
<InformationalVersion>1.13.0</InformationalVersion>
<FileVersion>1.13.0</FileVersion>
<VersionPrefix>1.13.0</VersionPrefix>
<AssemblyVersion>1.14.0</AssemblyVersion>
<InformationalVersion>1.14.0</InformationalVersion>
<FileVersion>1.14.0</FileVersion>
<VersionPrefix>1.14.0</VersionPrefix>
<Authors>Elastic and contributors</Authors>
<Copyright>2022 Elasticsearch BV</Copyright>
<PackageProjectUrl>https://github.com/elastic/apm-agent-dotnet</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/elastic_apm_profiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elastic_apm_profiler"
version = "1.13.0-beta.1"
version = "1.14.0-beta.1"
edition = "2018"
authors = ["Elastic and Contributors"]
description = "Elastic APM .NET agent CLR profiler"
Expand Down

0 comments on commit a04553c

Please sign in to comment.