Version Packages - #378
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
September 7, 2026 17:54
84d9936 to
a36c9db
Compare
commit: |
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
@kingstinct/react-native-healthkit@15.0.0
Major Changes
d279bc7: Fix unbounded memory growth when querying large numbers of samples or statistics (There seems to be a memory leak in this package #274), and improve memory management for workout proxies (getWorkoutRoutes() leaks memory across repeated calls, eventually hitting iOS's per-process memory limit #370).
Breaking changes
sourcevalues embedded in returned data are now plain{ name, bundleIdentifier }objects instead ofSourceProxyHybridObjects:sample.sourceRevision.sourceon every sample type (quantity, category, workout, correlation, ECG, heartbeat series, medication, state of mind)QueryStatisticsResponse.sourcesandQueryStatisticsResponseFromSingleSource.sourceReading
.nameand.bundleIdentifierworks as before. What no longer works on these values:toJSON()(they already are plain JSON),equals(),dispose(), and passing them intofilter.sources. To filter by a sample's source, look the source up throughquerySources()bybundleIdentifier:querySources(),currentAppSource()andfilter.sourceskeep usingSourceProxy.Memory improvements
WorkoutProxyandSourceProxynow report an estimated native memory size to the JS engine, so the garbage collector accounts for theHKWorkout/HKSourcegraphs they keep alive and collects stale proxies sooner.try!.dispose().Patch Changes
isProtectedDataAvailableon the main actor inisProtectedDataAvailableAsync(UIApplicationis@MainActor-isolated), and retry a statistics query once when HealthKit refuses witherrorDatabaseInaccessiblewhile protected data is available — the store re-opens a moment after the device unlocks, and a query issued in that window was surfacing as an opaqueCode=6string.