Skip to content

chore: publish new package versions#4591

Merged
KyleAMathews merged 1 commit into
mainfrom
changeset-release/main
Jun 16, 2026
Merged

chore: publish new package versions#4591
KyleAMathews merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actions github-actions Bot commented Jun 16, 2026

Copy link
Copy Markdown
Contributor

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

@electric-ax/agents@0.6.0

Minor Changes

  • 15beffa: Release all Electric Agents packages as 0.6.

Patch Changes

  • Updated dependencies [15beffa]
    • @electric-ax/agents-runtime@0.6.0
    • @electric-ax/agents-mcp@0.6.0

@electric-ax/agents-mcp@0.6.0

Minor Changes

  • 15beffa: Release all Electric Agents packages as 0.6.

@electric-ax/agents-runtime@0.6.0

Minor Changes

  • 15beffa: Release all Electric Agents packages as 0.6.

Patch Changes

  • Updated dependencies [15beffa]
    • @electric-ax/agents-mcp@0.6.0

@electric-ax/agents-server@0.6.0

Minor Changes

  • 15beffa: Release all Electric Agents packages as 0.6.

Patch Changes

  • Updated dependencies [15beffa]
    • @electric-ax/agents-runtime@0.6.0

@electric-ax/agents-server-conformance-tests@0.6.0

Minor Changes

  • 15beffa: Release all Electric Agents packages as 0.6.

electric-ax@0.2.20

Patch Changes

  • Updated dependencies [15beffa]
    • @electric-ax/agents@0.6.0
    • @electric-ax/agents-runtime@0.6.0

@electric-ax/agents-desktop@0.6.0

Minor Changes

  • 15beffa: Release all Electric Agents packages as 0.6.

Patch Changes

  • 12a6ee0: Give the desktop pull-wake runner a distinguishable label instead of the
    hardcoded Electric Agents Desktop, so multiple runners are easy to tell
    apart in the mobile/desktop runner picker. The label now defaults to
    <identity> · <hostname>, where identity is the signed-in Cloud name
    (falling back to email, then Electric Desktop). It can be overridden via
    the pullWakeRunnerLabel setting in settings.json or the
    ELECTRIC_DESKTOP_PULL_WAKE_RUNNER_LABEL env var. Existing runners pick up
    the new label automatically on next launch (registration upserts on the
    stable runner id).

@electric-ax/agents-mobile@0.6.0

Minor Changes

  • 15beffa: Release all Electric Agents packages as 0.6.

Patch Changes

  • ea3bfdb: Set the Electric app icon (master + Android adaptive icon) so the installed launcher icon matches the Play Store listing instead of Expo's default placeholder.

  • 56fa8c3: Bring the fork capability to mobile at parity with desktop:

    • Whole-subtree fork. A gated Fork subtree item in the session kebab (SessionMenu) — root-only (!entity.parent), disabled when the session is stopped/killed or the caller lacks the fork permission, with a single-flight guard, a pending spinner, and an inline error; on success it navigates to the new root. Backed by a native forkEntity in agentsClient (POST …/fork, empty body = whole-subtree HEAD clone) built on the shared entityApiUrl helper and exposed through AgentsProvider. SESSION_PERMISSIONS gains fork, and a git-fork glyph is added to the native icon set.
    • Per-message "Fork from here". The pointer fork already rendered via the shared ChatLogView embed; its mutation now runs through native RN networking instead of the WebView's fetch. createForkEntity gains an optional transport and the embed injects a marshalled onRequestForkEntity, so the embed's only mutation uses the same native path every other mobile mutation already uses (mirroring desktop's Electron IPC routing), while keeping the shared failure-toast behaviour.
    • Embedded button hardening. Extracted a tested singleFlight primitive, added a spinner + disabled state to the embedded fork button, and mounted a ToastProvider inside the embed so fork failures surface in the WebView instead of vanishing into a listener-less bus.

    No server API changes.

  • Updated dependencies [15beffa]

  • Updated dependencies [56fa8c3]

    • @electric-ax/agents-runtime@0.6.0
    • @electric-ax/agents-server-ui@0.6.0

@electric-ax/agents-server-ui@0.6.0

Minor Changes

  • 15beffa: Release all Electric Agents packages as 0.6.

Patch Changes

  • 56fa8c3: Bring the fork capability to mobile at parity with desktop:

    • Whole-subtree fork. A gated Fork subtree item in the session kebab (SessionMenu) — root-only (!entity.parent), disabled when the session is stopped/killed or the caller lacks the fork permission, with a single-flight guard, a pending spinner, and an inline error; on success it navigates to the new root. Backed by a native forkEntity in agentsClient (POST …/fork, empty body = whole-subtree HEAD clone) built on the shared entityApiUrl helper and exposed through AgentsProvider. SESSION_PERMISSIONS gains fork, and a git-fork glyph is added to the native icon set.
    • Per-message "Fork from here". The pointer fork already rendered via the shared ChatLogView embed; its mutation now runs through native RN networking instead of the WebView's fetch. createForkEntity gains an optional transport and the embed injects a marshalled onRequestForkEntity, so the embed's only mutation uses the same native path every other mobile mutation already uses (mirroring desktop's Electron IPC routing), while keeping the shared failure-toast behaviour.
    • Embedded button hardening. Extracted a tested singleFlight primitive, added a spinner + disabled state to the embedded fork button, and mounted a ToastProvider inside the embed so fork failures surface in the WebView instead of vanishing into a listener-less bus.

    No server API changes.

  • Updated dependencies [15beffa]

    • @electric-ax/agents-runtime@0.6.0

@electric-ax/example-agents-chat-starter@0.1.11

Patch Changes

  • Updated dependencies [15beffa]
    • @electric-ax/agents-runtime@0.6.0

@electric-ax/example-agents-walkthrough@0.1.8

Patch Changes

  • Updated dependencies [15beffa]
    • @electric-ax/agents-runtime@0.6.0

@electric-ax/example-deep-survey@0.1.27

Patch Changes

  • Updated dependencies [15beffa]
    • @electric-ax/agents-runtime@0.6.0

@core/sync-service@1.7.1

Patch Changes

  • 7a8f8c8: Bound Shape.Consumer heap growth: make the consumer family's process spawn options (incl. fullsweep_after) configurable per process via ELECTRIC_PROCESS_SPAWN_OPTS, and add an opt-in adaptive GC that runs after a transaction fragment when the consumer's heap exceeds the runtime-tunable ELECTRIC_CONSUMER_GC_HEAP_THRESHOLD (off by default).
  • 48d3ba3: Fix subquery dependency deduplication for same-table subqueries that project different columns, preventing plain snapshots from silently dropping one arm of an OR filter.
  • 8750fa7: Avoid sending duplicate publication-configuration requests while one is already in progress. Under a burst of shape arrivals, the publication manager no longer issues a separate request for every shape added or removed, preventing the configurator's message queue from growing without bound (issue RelationTracker: cast-issuance dedup gate is too permissive; PublicationManager.Configurator mailbox grows unboundedly under shape-arrival bursts #4396).

@github-actions
github-actions Bot force-pushed the changeset-release/main branch 4 times, most recently from b377a24 to 1a6f608 Compare June 16, 2026 13:44
@balegas balegas removed the shepherd label Jun 16, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 1a6f608 to 0227321 Compare June 16, 2026 14:21
@netlify

netlify Bot commented Jun 16, 2026

Copy link
Copy Markdown

Deploy Preview for electric-next ready!

Name Link
🔨 Latest commit f316abe
🔍 Latest deploy log https://app.netlify.com/projects/electric-next/deploys/6a316d691b78390008b22776
😎 Deploy Preview https://deploy-preview-4591--electric-next.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 0227321 to f316abe Compare June 16, 2026 15:36
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from f316abe to cd76752 Compare June 16, 2026 15:39
@KyleAMathews
KyleAMathews merged commit fcc5864 into main Jun 16, 2026
5 checks passed
@KyleAMathews
KyleAMathews deleted the changeset-release/main branch June 16, 2026 15:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants