Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
bridge | f0802f3 | Commit Preview URL Branch Preview URL |
Mar 06 2026, 02:35 PM |
6323a2a to
03c5430
Compare
03c5430 to
f0802f3
Compare
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 main, this PR will be updated.
Releases
@stackables/bridge-compiler@2.4.0
Minor Changes
#104
b213e9fThanks @copilot-swe-agent! - Multi-Level Control Flow (break N, continue N)When working with deeply nested arrays (e.g., mapping categories that contain lists of products), you may want an error deep inside the inner array to skip the outer array element.
You can append a number to break or continue to specify how many loop levels the signal should pierce.
#102
2243c7eThanks @copilot-swe-agent! - Sync tool optimisation — honour thesyncflag in ToolMetadataWhen a tool declares
{ sync: true }in its.bridgemetadata the enginenow enforces and optimises it:
runtime and compiled engines throw immediately.
callTool()skips timeout racing, the OTel spanwrapper, and all promise handling for sync tools.
__callSync()helper at every call-site, avoiding
awaitoverhead entirely.sync, the compiled engine generates a dual-path: a synchronous
.map()branch (no microtask ticks) with a runtime fallback to
for…of + awaitfor async tools.
Benchmarks show up to ~50 % latency reduction for compiled array maps
with sync tools (100 elements).
Patch Changes
#103
fc6c619Thanks @aarne! - Fix AOT compiler to throwBridgeTimeoutErroron tool timeoutAOT-compiled bridges now throw
BridgeTimeoutError(with the same name andmessage format as the runtime) when a tool exceeds
toolTimeoutMs. Previouslythe generated code constructed a generic
Error, causing a class mismatch whencallers caught and inspected the error type.
#103
fc6c619Thanks @aarne! - Fix AOT/runtime parity for null element traversal, catch-null recovery, and non-array source handlingUpdated dependencies [
b213e9f,fc6c619,fc6c619,2243c7e,8e5b2e2]:@stackables/bridge-core@1.5.0
Minor Changes
#104
b213e9fThanks @copilot-swe-agent! - Multi-Level Control Flow (break N, continue N)When working with deeply nested arrays (e.g., mapping categories that contain lists of products), you may want an error deep inside the inner array to skip the outer array element.
You can append a number to break or continue to specify how many loop levels the signal should pierce.
#102
2243c7eThanks @copilot-swe-agent! - Sync tool optimisation — honour thesyncflag in ToolMetadataWhen a tool declares
{ sync: true }in its.bridgemetadata the enginenow enforces and optimises it:
runtime and compiled engines throw immediately.
callTool()skips timeout racing, the OTel spanwrapper, and all promise handling for sync tools.
__callSync()helper at every call-site, avoiding
awaitoverhead entirely.sync, the compiled engine generates a dual-path: a synchronous
.map()branch (no microtask ticks) with a runtime fallback to
for…of + awaitfor async tools.
Benchmarks show up to ~50 % latency reduction for compiled array maps
with sync tools (100 elements).
#100
8e5b2e2Thanks @aarne! - AddToolMetadata— per-tool observability controlsTools can now attach a
.bridgeproperty to declare how the engine shouldinstrument them, imported as
ToolMetadatafrom@stackables/bridge.Patch Changes
#103
fc6c619Thanks @aarne! - Fix AOT/runtime parity for null element traversal, catch-null recovery, and non-array source handlingUpdated dependencies [
fc6c619,8e5b2e2]:@stackables/bridge-graphql@1.2.0
Minor Changes
b213e9fThanks @copilot-swe-agent! - Support optional lookahead resolver with compilerPatch Changes
b213e9f,fc6c619,fc6c619,2243c7e,8e5b2e2]:@stackables/bridge-parser@1.4.0
Minor Changes
#104
b213e9fThanks @copilot-swe-agent! - Multi-Level Control Flow (break N, continue N)When working with deeply nested arrays (e.g., mapping categories that contain lists of products), you may want an error deep inside the inner array to skip the outer array element.
You can append a number to break or continue to specify how many loop levels the signal should pierce.
Patch Changes
b213e9f,fc6c619,fc6c619,2243c7e,8e5b2e2]:@stackables/bridge-types@1.1.0
Minor Changes
#100
8e5b2e2Thanks @aarne! - AddToolMetadata— per-tool observability controlsTools can now attach a
.bridgeproperty to declare how the engine shouldinstrument them, imported as
ToolMetadatafrom@stackables/bridge.@stackables/bridge@2.2.1
Patch Changes
b213e9f,b213e9f,fc6c619,fc6c619,2243c7e,8e5b2e2]:@stackables/bridge-stdlib@1.5.2
Patch Changes
#103
fc6c619Thanks @aarne! - Fixfilter,find,toLowerCase,toUpperCase,trim, andlengthcrashing on unexpected input types#100
8e5b2e2Thanks @aarne! - AddToolMetadata— per-tool observability controlsTools can now attach a
.bridgeproperty to declare how the engine shouldinstrument them, imported as
ToolMetadatafrom@stackables/bridge.Updated dependencies [
8e5b2e2]: