@urun-sh/core 0.2.50 → 0.2.51
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 +11 -0
- package/dist/{chunk-BQIH7RYF.mjs → chunk-2MG7ASFV.mjs} +5 -5
- package/dist/{chunk-PQCL4SUQ.mjs → chunk-USB2YC4V.mjs} +2 -2
- package/dist/index.browser.d.mts +6 -2
- package/dist/index.browser.d.ts +6 -2
- package/dist/index.browser.js +2 -2
- package/dist/index.browser.mjs +1 -1
- package/dist/index.d.mts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +5 -5
- package/dist/index.mjs +1 -1
- package/dist/internal.browser.d.mts +4 -2
- package/dist/internal.browser.d.ts +4 -2
- package/dist/internal.browser.js +2 -2
- package/dist/internal.browser.mjs +1 -1
- package/dist/internal.d.mts +4 -2
- package/dist/internal.d.ts +4 -2
- package/dist/internal.js +5 -5
- package/dist/internal.mjs +1 -1
- package/dist/{stream-data-TWBl_kh7.d.mts → stream-data-DLrBWs2N.d.mts} +10 -1
- package/dist/{stream-data-TWBl_kh7.d.ts → stream-data-DLrBWs2N.d.ts} +10 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
- **`SessionDiagnostic.level` gains `'debug'`** (union widened: an exhaustive
|
|
6
|
+
`switch`/`Record` over the level needs a new arm). `debug` diagnostics mirror
|
|
7
|
+
to `console.debug` — hidden at the browser console's default verbosity —
|
|
8
|
+
instead of the default-on `console.warn`. First user: the
|
|
9
|
+
`ice-candidate-pair` line when the stats shape yields no resolvable route
|
|
10
|
+
(all fields `unknown`); a later leg whose stats DO resolve still emits the
|
|
11
|
+
default-visible `info` line. The extraction also learned werift's stats
|
|
12
|
+
shape (`nominated` pair; its `transport.selectedCandidatePairId` never
|
|
13
|
+
matches its pair ids), so Node-backend routes now resolve instead of
|
|
14
|
+
printing `unknown`.
|
|
15
|
+
|
|
5
16
|
- **Wall-clock media liveness is gone.** Streams are not guaranteed to be
|
|
6
17
|
continuous, so "seconds since the last inbound byte / decoded frame" was never
|
|
7
18
|
a valid death signal. Two rules keyed on it, and both are removed:
|