@realitycollective/service-framework-react 1.0.1-preview.4 → 1.0.1-preview.5
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 +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -41,6 +41,7 @@ Packaging, tooling and documentation, plus additive runtime API: the engine-free
|
|
|
41
41
|
- CI and deployment merged into one workflow. They previously ran concurrently and repeated the same install, build, typecheck and test on every pull request. The deploy jobs now consume the artifacts the build job already produced.
|
|
42
42
|
- CI runs on every pull request regardless of target branch, and reports through merge queues.
|
|
43
43
|
- Published sourcemaps embed their sources (`inlineSources`), so stepping into the framework works for consumers. Declaration maps are no longer emitted, because they can only resolve against a `src` directory that is not shipped. Each package is roughly 12% smaller as a result.
|
|
44
|
+
- `ManualScheduler.emit`, and so `TimerScheduler`, no longer copies the channel's handler Set on every call. It keeps the array it last emitted with and drops it whenever a handler subscribes or unsubscribes, so a handler added during an emit still waits for the next one and a handler removed during an emit is still called in that one, exactly as before. One array allocation per emitted channel per frame goes away; nothing observable changes and no public API is touched.
|
|
44
45
|
|
|
45
46
|
### Fixed
|
|
46
47
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@realitycollective/service-framework-react",
|
|
3
|
-
"version": "1.0.1-preview.
|
|
3
|
+
"version": "1.0.1-preview.5",
|
|
4
4
|
"description": "React bindings for the Reality Collective TypeScript Service Framework.",
|
|
5
5
|
"author": "Reality Collective",
|
|
6
6
|
"license": "MIT",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"url": "https://github.com/realitycollective/com.realitycollective.service-framework.ts/issues"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@realitycollective/service-framework": "^1.0.1-preview.
|
|
37
|
+
"@realitycollective/service-framework": "^1.0.1-preview.5"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"react": "^19.2.0"
|