Skip to content

Commit ae79f70

Browse files
chore: release main
1 parent 0c53ec2 commit ae79f70

File tree

5 files changed

+95
-74
lines changed

5 files changed

+95
-74
lines changed

.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk/@launchdarkly/observability-python": "0.1.0",
33
"go": "0.2.1",
4-
"sdk/@launchdarkly/observability-android": "0.4.0",
5-
"sdk/@launchdarkly/observability-dotnet": "0.0.0"
4+
"sdk/@launchdarkly/observability-android": "0.5.0",
5+
"sdk/@launchdarkly/observability-dotnet": "0.1.0"
66
}

sdk/@launchdarkly/observability-android/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.5.0](https://github.com/launchdarkly/observability-sdk/compare/launchdarkly-observability-android-0.4.0...launchdarkly-observability-android-0.5.0) (2025-08-26)
4+
5+
6+
### Features
7+
8+
* adds otel-android HTTP instrumentation ([#195](https://github.com/launchdarkly/observability-sdk/issues/195)) ([e0baf35](https://github.com/launchdarkly/observability-sdk/commit/e0baf35b9e83e4539060520d5355d524de136944))
9+
310
## [0.4.0](https://github.com/launchdarkly/observability-sdk/compare/launchdarkly-observability-android-0.3.0...launchdarkly-observability-android-0.4.0) (2025-08-15)
411

512

sdk/@launchdarkly/observability-android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
android.useAndroidX=true
55

66
#x-release-please-start-version
7-
version=0.4.0
7+
version=0.5.0
88
#x-release-please-end
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-08-26)
4+
5+
6+
### Features
7+
8+
* Add basic config for dotnet plugin. ([#167](https://github.com/launchdarkly/observability-sdk/issues/167)) ([3203e82](https://github.com/launchdarkly/observability-sdk/commit/3203e825c78d4e85131933a0af13d377de542545))
9+
* Add custom sampler for dotnet. ([#175](https://github.com/launchdarkly/observability-sdk/issues/175)) ([de74b20](https://github.com/launchdarkly/observability-sdk/commit/de74b20373a7995cd2b2542222dc2bdd1dbd7e40))
10+
* Add export/processor samplers. ([#178](https://github.com/launchdarkly/observability-sdk/issues/178)) ([2431886](https://github.com/launchdarkly/observability-sdk/commit/2431886bb7d0d02fa51ceefeccfaa3f761db2bea))
11+
* Add graphql query to get sampling config. ([#181](https://github.com/launchdarkly/observability-sdk/issues/181)) ([ee51f80](https://github.com/launchdarkly/observability-sdk/commit/ee51f808c2782d5187f7960b61a1a667cafda968))
12+
* Add initial plugin for dotnet. ([#173](https://github.com/launchdarkly/observability-sdk/issues/173)) ([564536d](https://github.com/launchdarkly/observability-sdk/commit/564536d52a6f6a6fc74afc36675531913241d0fd))
13+
* Add singleton for dotnet. ([#185](https://github.com/launchdarkly/observability-sdk/issues/185)) ([c32cf1c](https://github.com/launchdarkly/observability-sdk/commit/c32cf1c0b6f61f13e47571f0243fed8151c10d76))
14+
* Allow custom configuration of otel. ([#187](https://github.com/launchdarkly/observability-sdk/issues/187)) ([54e7214](https://github.com/launchdarkly/observability-sdk/commit/54e7214781a5277562f12dcbd671947cb66212a9))
Lines changed: 71 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,71 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<!--x-release-please-start-version-->
4-
<Version>0.0.0</Version>
5-
<!--x-release-please-end-->
6-
<Nullable>disable</Nullable>
7-
<!-- The BUILDFRAMEWORKS variable allows us to override the target frameworks with a
8-
single framework that we are testing; this allows us to test with older SDK
9-
versions that would error out if they saw any newer target frameworks listed
10-
here, even if we weren't running those. -->
11-
<BuildFrameworks Condition="'$(BUILDFRAMEWORKS)' == ''">netstandard2.0;net471;net8.0</BuildFrameworks>
12-
<TargetFrameworks>$(BUILDFRAMEWORKS)</TargetFrameworks>
13-
<LangVersion>7.3</LangVersion>
14-
15-
<Description>LaunchDarkly Observability for Server-Side .NET SDK</Description>
16-
<Authors>LaunchDarkly</Authors>
17-
<Owners>LaunchDarkly</Owners>
18-
<Company>LaunchDarkly</Company>
19-
<Copyright>Copyright 2025 Catamorphic, Co</Copyright>
20-
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
21-
<PackageProjectUrl>https://github.com/launchdarkly/observability-sdk</PackageProjectUrl>
22-
<RepositoryUrl>https://github.com/launchdarkly/observability-sdk</RepositoryUrl>
23-
24-
<!-- fail if XML comments are missing or invalid -->
25-
<WarningsAsErrors>1570,1571,1572,1573,1574,1580,1581,1584,1591,1710,1711,1712</WarningsAsErrors>
26-
</PropertyGroup>
27-
28-
<!-- Allow the testing project to access internals. -->
29-
<ItemGroup Condition="'$(Configuration)'!='Release'">
30-
<InternalsVisibleTo Include="LaunchDarkly.Observability.Tests" />
31-
<!-- Dynamically generated assembly used by Moq. Required for mocking in unit tests. -->
32-
<InternalsVisibleTo Include="DynamicProxyGenAssembly2"/>
33-
</ItemGroup>
34-
35-
<PropertyGroup Condition="'$(Configuration)'=='Release' And '$(SKIP_SIGNING)'!='true'">
36-
<AssemblyOriginatorKeyFile>../../../../../LaunchDarkly.snk</AssemblyOriginatorKeyFile>
37-
<SignAssembly>true</SignAssembly>
38-
</PropertyGroup>
39-
40-
<PropertyGroup>
41-
<IncludeSymbols>true</IncludeSymbols>
42-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
43-
</PropertyGroup>
44-
45-
<ItemGroup>
46-
<!-- Open Telemetry Dependencies -->
47-
<PackageReference Include="OpenTelemetry" Version="1.12.0" />
48-
<PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.12.0" />
49-
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.12.0" />
50-
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.12.0" />
51-
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.12.0" />
52-
<PackageReference Include="OpenTelemetry.Instrumentation.GrpcNetClient" Version="1.12.0-beta.1" />
53-
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.12.0" />
54-
<PackageReference Include="OpenTelemetry.Instrumentation.Process" Version="1.12.0-beta.1" />
55-
<PackageReference Include="OpenTelemetry.Instrumentation.Quartz" Version="1.12.0-beta.1" />
56-
<PackageReference Include="OpenTelemetry.Instrumentation.Runtime" Version="1.12.0" />
57-
<PackageReference Include="OpenTelemetry.Instrumentation.SqlClient" Version="1.12.0-beta.2" />
58-
<PackageReference Include="OpenTelemetry.Instrumentation.Wcf" Version="1.12.0-beta.1" />
59-
</ItemGroup>
60-
61-
<ItemGroup>
62-
<!-- LaunchDarkly Dependencies -->
63-
<PackageReference Include="LaunchDarkly.ServerSdk" Version="[8.10.0,9.0.0)" />
64-
<PackageReference Include="LaunchDarkly.ServerSdk.Telemetry" Version="[1.3.0,2.0.0)" />
65-
</ItemGroup>
66-
67-
<ItemGroup>
68-
<!-- Temporary dependency until: https://github.com/open-telemetry/opentelemetry-dotnet/issues/5973 is resolved. -->
69-
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.0" />
70-
</ItemGroup>
71-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<!--x-release-please-start-version-->
4+
<Version>0.1.0</Version>
5+
<!--x-release-please-end-->
6+
<Nullable>disable</Nullable>
7+
<!-- The BUILDFRAMEWORKS variable allows us to override the target frameworks with a
8+
single framework that we are testing; this allows us to test with older SDK
9+
versions that would error out if they saw any newer target frameworks listed
10+
here, even if we weren't running those. -->
11+
<BuildFrameworks Condition="'$(BUILDFRAMEWORKS)' == ''">netstandard2.0;net471;net8.0</BuildFrameworks>
12+
<TargetFrameworks>$(BUILDFRAMEWORKS)</TargetFrameworks>
13+
<LangVersion>7.3</LangVersion>
14+
15+
<Description>LaunchDarkly Observability for Server-Side .NET SDK</Description>
16+
<Authors>LaunchDarkly</Authors>
17+
<Owners>LaunchDarkly</Owners>
18+
<Company>LaunchDarkly</Company>
19+
<Copyright>Copyright 2025 Catamorphic, Co</Copyright>
20+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
21+
<PackageProjectUrl>https://github.com/launchdarkly/observability-sdk</PackageProjectUrl>
22+
<RepositoryUrl>https://github.com/launchdarkly/observability-sdk</RepositoryUrl>
23+
24+
<!-- fail if XML comments are missing or invalid -->
25+
<WarningsAsErrors>1570,1571,1572,1573,1574,1580,1581,1584,1591,1710,1711,1712</WarningsAsErrors>
26+
</PropertyGroup>
27+
28+
<!-- Allow the testing project to access internals. -->
29+
<ItemGroup Condition="'$(Configuration)'!='Release'">
30+
<InternalsVisibleTo Include="LaunchDarkly.Observability.Tests" />
31+
<!-- Dynamically generated assembly used by Moq. Required for mocking in unit tests. -->
32+
<InternalsVisibleTo Include="DynamicProxyGenAssembly2"/>
33+
</ItemGroup>
34+
35+
<PropertyGroup Condition="'$(Configuration)'=='Release' And '$(SKIP_SIGNING)'!='true'">
36+
<AssemblyOriginatorKeyFile>../../../../../LaunchDarkly.snk</AssemblyOriginatorKeyFile>
37+
<SignAssembly>true</SignAssembly>
38+
</PropertyGroup>
39+
40+
<PropertyGroup>
41+
<IncludeSymbols>true</IncludeSymbols>
42+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
43+
</PropertyGroup>
44+
45+
<ItemGroup>
46+
<!-- Open Telemetry Dependencies -->
47+
<PackageReference Include="OpenTelemetry" Version="1.12.0" />
48+
<PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.12.0" />
49+
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.12.0" />
50+
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.12.0" />
51+
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.12.0" />
52+
<PackageReference Include="OpenTelemetry.Instrumentation.GrpcNetClient" Version="1.12.0-beta.1" />
53+
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.12.0" />
54+
<PackageReference Include="OpenTelemetry.Instrumentation.Process" Version="1.12.0-beta.1" />
55+
<PackageReference Include="OpenTelemetry.Instrumentation.Quartz" Version="1.12.0-beta.1" />
56+
<PackageReference Include="OpenTelemetry.Instrumentation.Runtime" Version="1.12.0" />
57+
<PackageReference Include="OpenTelemetry.Instrumentation.SqlClient" Version="1.12.0-beta.2" />
58+
<PackageReference Include="OpenTelemetry.Instrumentation.Wcf" Version="1.12.0-beta.1" />
59+
</ItemGroup>
60+
61+
<ItemGroup>
62+
<!-- LaunchDarkly Dependencies -->
63+
<PackageReference Include="LaunchDarkly.ServerSdk" Version="[8.10.0,9.0.0)" />
64+
<PackageReference Include="LaunchDarkly.ServerSdk.Telemetry" Version="[1.3.0,2.0.0)" />
65+
</ItemGroup>
66+
67+
<ItemGroup>
68+
<!-- Temporary dependency until: https://github.com/open-telemetry/opentelemetry-dotnet/issues/5973 is resolved. -->
69+
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.0" />
70+
</ItemGroup>
71+
</Project>

0 commit comments

Comments
 (0)