Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"go": "1.0.0",
"sdk/@launchdarkly/observability": "1.0.0",
"sdk/@launchdarkly/observability-android": "0.24.0",
"sdk/@launchdarkly/observability-android": "0.25.0",
"sdk/@launchdarkly/observability-dotnet": "1.0.0",
"sdk/@launchdarkly/observability-node": "1.0.0",
"sdk/@launchdarkly/observability-python": "1.0.0",
Expand Down
9 changes: 9 additions & 0 deletions go/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [1.0.0](https://github.com/launchdarkly/observability-sdk/compare/go/v0.4.0...go/v1.0.0) (2026-01-28)

This release marks the 1.0.0 stable version of the LaunchDarkly Observability Go SDK.


### Bug Fixes

* **go:** configure default logger provider ([#192](https://github.com/launchdarkly/observability-sdk/issues/192)) ([b97854d](https://github.com/launchdarkly/observability-sdk/commit/b97854d19305e00e5a2a35d5068b03305d7a8b62))

## [0.4.0](https://github.com/launchdarkly/observability-sdk/compare/go/v0.3.1...go/v0.4.0) (2025-10-07)


Expand Down
2 changes: 1 addition & 1 deletion go/internal/metadata/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ const (

// InstrumentationVersion is the version of the instrumentation.
// This is automatically updated by the release process.
InstrumentationVersion = "0.4.0" // {{ x-release-please-version }}
InstrumentationVersion = "1.0.0" // {{ x-release-please-version }}
)
5 changes: 3 additions & 2 deletions go/singleton.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,12 @@ func recordSpanError(span trace.Span, err error, tags ...attribute.KeyValue) {

if stackErr, ok := err.(withStackTrace); ok {
stackTrace := fmt.Sprintf("%+v", stackErr.StackTrace())
attributes := []attribute.KeyValue{
attributes := make([]attribute.KeyValue, 0, 3+len(tags))
attributes = append(attributes,
semconv.ExceptionTypeKey.String(reflect.TypeOf(err).String()),
semconv.ExceptionMessageKey.String(err.Error()),
semconv.ExceptionStacktraceKey.String(stackTrace),
}
)
attributes = append(attributes, tags...)
span.AddEvent(semconv.ExceptionEventName, trace.WithAttributes(attributes...))
} else {
Expand Down
7 changes: 7 additions & 0 deletions sdk/@launchdarkly/observability-android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.25.0](https://github.com/launchdarkly/observability-sdk/compare/launchdarkly-observability-android-0.24.0...launchdarkly-observability-android-0.25.0) (2026-01-28)


### Features

* O11Y-969 - Add runtime control for Session Replay capture ([#355](https://github.com/launchdarkly/observability-sdk/issues/355)) ([1d4398e](https://github.com/launchdarkly/observability-sdk/commit/1d4398edbf9016cecd910da144da383b83e53197))

## [0.24.0](https://github.com/launchdarkly/observability-sdk/compare/launchdarkly-observability-android-0.23.1...launchdarkly-observability-android-0.24.0) (2026-01-23)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
android.useAndroidX=true

#x-release-please-start-version
version=0.24.0
version=0.25.0
#x-release-please-end
4 changes: 4 additions & 0 deletions sdk/@launchdarkly/observability-dotnet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.0.0](https://github.com/launchdarkly/observability-sdk/compare/launchdarkly-observability-dotnet-0.3.0...launchdarkly-observability-dotnet-1.0.0) (2026-01-28)

This release marks the 1.0.0 stable version of the LaunchDarkly Observability .NET SDK.

## [0.3.0](https://github.com/launchdarkly/observability-sdk/compare/launchdarkly-observability-dotnet-0.2.0...launchdarkly-observability-dotnet-0.3.0) (2025-09-26)


Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!--x-release-please-start-version-->
<Version>0.3.0</Version>
<Version>1.0.0</Version>
<!--x-release-please-end-->
<Nullable>disable</Nullable>
<!-- The BUILDFRAMEWORKS variable allows us to override the target frameworks with a
Expand Down
4 changes: 4 additions & 0 deletions sdk/@launchdarkly/observability-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# @launchdarkly/observability-node

## [1.0.0](https://github.com/launchdarkly/observability-sdk/compare/observability-node-0.3.1...observability-node-1.0.0) (2026-01-28)

This release marks the 1.0.0 stable version of the LaunchDarkly Observability Node SDK.

## [0.3.1](https://github.com/launchdarkly/observability-sdk/compare/observability-node-0.3.0...observability-node-0.3.1) (2025-10-06)


Expand Down
2 changes: 1 addition & 1 deletion sdk/@launchdarkly/observability-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@launchdarkly/observability-node",
"version": "0.3.1",
"version": "1.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
4 changes: 4 additions & 0 deletions sdk/@launchdarkly/observability-python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the LaunchDarkly Python Observability will be documented in this file. This project adheres to Semantic Versioning.

## [1.0.0](https://github.com/launchdarkly/observability-sdk/compare/launchdarkly-observability-python-0.1.1...launchdarkly-observability-python-1.0.0) (2026-01-28)

This release marks the 1.0.0 stable version of the LaunchDarkly Observability Python SDK.

## [0.1.1](https://github.com/launchdarkly/observability-sdk/compare/launchdarkly-observability-python-0.1.0...launchdarkly-observability-python-0.1.1) (2025-08-28)


Expand Down
2 changes: 1 addition & 1 deletion sdk/@launchdarkly/observability-python/PROVENANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ To verify SLSA provenance attestations, we recommend using [slsa-verifier](https
<!-- x-release-please-start-version -->
```
# Set the version of the SDK to verify
PLUGIN_VERSION=0.1.1
PLUGIN_VERSION=1.0.0
```
<!-- x-release-please-end -->

Expand Down
2 changes: 1 addition & 1 deletion sdk/@launchdarkly/observability-python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "launchdarkly-observability"
version = "0.1.1"
version = "1.0.0"
description = "LaunchDarkly Observability for Python"
license = "Apache-2.0"
authors = [
Expand Down
4 changes: 4 additions & 0 deletions sdk/@launchdarkly/observability/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# @launchdarkly/observability

## [1.0.0](https://github.com/launchdarkly/observability-sdk/compare/observability-0.5.2...observability-1.0.0) (2026-01-28)

This release marks the 1.0.0 stable version of the LaunchDarkly Observability Browser SDK.

## [0.5.2](https://github.com/launchdarkly/observability-sdk/compare/observability-0.5.1...observability-0.5.2) (2026-01-23)


Expand Down
2 changes: 1 addition & 1 deletion sdk/@launchdarkly/observability/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@launchdarkly/observability",
"version": "0.5.2",
"version": "1.0.0",
"description": "Browser observability for your web app. Capture frontend metrics, errors, logs and traces.",
"keywords": [
"launchdarkly",
Expand Down
4 changes: 4 additions & 0 deletions sdk/@launchdarkly/session-replay/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# @launchdarkly/session-replay

## [1.0.0](https://github.com/launchdarkly/observability-sdk/compare/session-replay-0.5.2...session-replay-1.0.0) (2026-01-28)

This release marks the 1.0.0 stable version of the LaunchDarkly Session Replay SDK.

## [0.5.2](https://github.com/launchdarkly/observability-sdk/compare/session-replay-0.5.1...session-replay-0.5.2) (2026-01-23)


Expand Down
2 changes: 1 addition & 1 deletion sdk/@launchdarkly/session-replay/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@launchdarkly/session-replay",
"version": "0.5.2",
"version": "1.0.0",
"description": "Browser observability for your web app. Record session replays to visualize usage patterns.",
"keywords": [
"launchdarkly",
Expand Down
Loading