feat: Bridging hooks calls from MAUI#142
Merged
abelonogov-ld merged 3 commits intomainfrom Feb 27, 2026
Merged
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Sources/LaunchDarklyObservability/Plugin/ObservabilityHookExporter.swift
Outdated
Show resolved
Hide resolved
mario-launchdarkly
approved these changes
Feb 27, 2026
abelonogov-ld
pushed a commit
that referenced
this pull request
Feb 28, 2026
🤖 I have created a release *beep* *boop* --- ## [0.21.0](0.20.0...0.21.0) (2026-02-27) ### Features * Bridging hook calls from MAUI ([#142](#142)) ([915ef63](915ef63)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Low risk: this is a Release Please version bump and changelog update with no functional code changes beyond updating published version metadata. > > **Overview** > **Releases v0.21.0.** Updates Release Please manifest, both CocoaPods podspec versions, and `sdkVersion` to `0.21.0`. > > Adds a `0.21.0` section to `CHANGELOG.md` noting the MAUI hook-bridging feature included in the release. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit f37e817. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
abelonogov-ld
added a commit
that referenced
this pull request
Mar 5, 2026
* main: chore(main): release 0.22.0 (#145) feat: Moves compression before buffer (Optimization) (#144) chore(main): release 0.21.0 (#143) feat: Bridging hooks calls from MAUI (#142) # Conflicts: # Sources/LaunchDarklySessionReplay/BenchMark/BenchmarkExecutor.swift # Sources/LaunchDarklySessionReplay/ScreenCapture/TileSignatureManager.swift # TestApp/Sources/BenchmarkView.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note
Medium Risk
Changes hook/span lifecycle handling and tracing client plumbing, and introduces new thread-safe caching structures; mistakes could cause missing/duplicated spans or incorrect telemetry attributes.
Overview
Adds MAUI hook bridging by introducing
ObservabilityHookProxy(stored onLDObserve.shared) and a sharedObservabilityHookExporterused by both the native SwiftObservabilityHookand the MAUI bridge.Refactors evaluation tracing to track in-flight spans by
evaluationId(via new FIFO-evictingBoundedMap) and centralizes span start/end + attribute/event emission in the exporter;InternalObserve/ObservabilityServicenow exposetraceClientfor this path.Improves cross-boundary value passing with
LDValue↔Foundation (NSObject/NSDictionary/NSArray) conversion helpers, and extendsAtomicDictionarywith synchronous barriersetValue/removeValue; adds unit tests forBoundedMapandLDValueconversions.Written by Cursor Bugbot for commit 484f8bb. This will update automatically on new commits. Configure here.