smbls 3.14.46 → 3.14.47
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 +17 -0
- package/dist/smbls.cjs +36 -36
- package/dist/smbls.esm.js +24 -24
- package/dist/smbls.iife-string.js +1 -1
- package/dist/smbls.iife.js +36 -36
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# smbls
|
|
2
2
|
|
|
3
|
+
## 3.14.47
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 83c7815: Republish smbls to include `app.navigate(path, opts)` in the shipped
|
|
8
|
+
dist. Source landed at smbls 6408710b2 but the previous publish
|
|
9
|
+
(3.14.46 at 2026-05-17T03:47:41Z) raced against that commit
|
|
10
|
+
(2026-05-17T03:48:18Z) — the npm publish happened 37 seconds before
|
|
11
|
+
the navigate source landed in the smbls working tree the CI was
|
|
12
|
+
building from, so the published dist files have zero occurrences of
|
|
13
|
+
`navigate` despite the release commit (543a282ae) listing it.
|
|
14
|
+
|
|
15
|
+
Consumer workspaces (workspace/packages/preview) call `app.navigate`
|
|
16
|
+
to drive iframe-embedded smbls apps from the parent realm — without
|
|
17
|
+
this republish they have to keep using the lower-level
|
|
18
|
+
`app.call('router', path, app, {}, opts)` primitive.
|
|
19
|
+
|
|
3
20
|
## 3.14.46
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|