@spatius/avatarkit 1.3.7 → 1.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/assets/{OpusDecoderWorker.worker-DbdfH4qX.js → OpusDecoderWorker.worker-DVOREuTG.js} +8551 -4624
- package/dist/assets/{OpusEncoderWorker.worker-DVnsr0L5.js → OpusEncoderWorker.worker-fkLsXEK1.js} +8550 -4623
- package/dist/core/AvatarController.d.ts +0 -4
- package/dist/core/AvatarView.d.ts +38 -0
- package/dist/index.js +114 -116
- package/dist/internal-telemetry.d.ts +17 -0
- package/dist/internal-telemetry.js +21 -2
- package/dist/{otel-trace-Y_BtH06z.js → otel-trace-CZJAGjGg.js} +8507 -4598
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.3.8] - 2026-08-31
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- The SDK now checks, one second after the first frame is reported as rendered, whether the canvas actually has anything on it, and reports a diagnostic when it is completely blank. Some devices pass the capability check and still render nothing; until now that failure was silent on our side and only surfaced as a user complaint. Costs a few milliseconds once per session and never blocks the render loop.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Internal telemetry only, no change to public API or runtime behaviour: diagnostics are now sent to a collection gateway instead of the storage backend directly, and the SDK no longer carries any credentials for that backend. Credentials shipped inside a redistributed SDK are readable by anyone who receives it.
|
|
15
|
+
- Internal telemetry only, no change to public API or runtime behaviour: collection of browser page-performance metrics is now switched off explicitly in code rather than being left to a server-side setting, so what the SDK collects is fixed by the version you install. This is unrelated to the SDK's own frame-rate monitoring.
|
|
16
|
+
- Internal telemetry only, no change to public API or runtime behaviour: diagnostic records now carry the session and device identifiers that the Android and iOS SDKs have always included, so a session can be followed across records. Records emitted by a companion SDK carry them too — those previously went out with no identity at all.
|
|
17
|
+
- Updated the bundled analytics dependency, which fixes log batches being retried indefinitely when an ad blocker drops them and batches being discarded outright on a 408. The published bundle is marginally smaller than before.
|
|
18
|
+
|
|
19
|
+
### Removed
|
|
20
|
+
- Internal telemetry only, no change to public API or runtime behaviour: removed a playback-stall detector that only ever emitted one diagnostic and drove no behaviour. What it looked for is already covered by the stall and dropped-frame figures reported for every round of playback.
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- Internal telemetry only, no change to public API or runtime behaviour: end-to-end latency is now reported when the host application supplies the motion data, not only when the SDK connects to the driving service itself. The measurements were being taken in both cases and discarded in one of them.
|
|
24
|
+
- Internal telemetry only, no change to public API or runtime behaviour: the reported frame time now includes the core compute stage, which was previously left out of the total.
|
|
25
|
+
|
|
8
26
|
## [1.3.7] - 2026-08-17
|
|
9
27
|
|
|
10
28
|
### Fixed
|