Foblex Flow
Articles
Overview
Releases
v18.3.0
v18.2.0
v18.1.0
v18.0.0
v17.8.5
v17.8.0
v17.7.0
Inside Foblex Flow
Part 1: Library Architecture and Design Principles
Part 2: Drag-and-Drop Architecture in Angular Without CDK
Building AI Low-Code Platform
Part 1: Introduction to Foblex Flow
Part 2: Creating Your First Flow
Part 3: Creating Custom Nodes and a Node Palette
Part 4: Styling and Handling Connections
Call Flow Editor
Angular 20 Update
Initial Tutorial
Foblex Flow

Foblex Flow v18.3.0: Projected Connection Gradients, Smarter Redraws, and Production Worker Hardening

Foblex Flow v18.3.0 finishes the connection-model work that started around projected rendering and large-scene performance.

Today Iโ€™m shipping v18.3.0. This release makes connection gradients explicitly projected, removes more redundant redraw work for unchanged connections, fixes connection worker startup in production builds, and refreshes the roadmap and docs around the new model.

Highlights

  • ๐ŸŽจ Projected f-connection-gradient is now the supported way to configure connection gradients.
  • โšก Smarter redraw caching skips repeated marker regeneration and repeated line initialization for unchanged routes.
  • ๐Ÿงต Production worker hardening starts the connection worker from a blob URL instead of requesting a .ts worker file.
  • ๐Ÿ“š Docs and roadmap refresh now explain the new connection model more clearly.

Projected Connection Gradients Are Now the Model

Before this release, gradient colors could live directly on the connection components.

In v18.3.0, gradient configuration is now projected through f-connection-gradient, which makes the connection template more explicit and keeps visual configuration alongside other projected connection content.

Old shape:

New shape:

This is the main migration point in the release.

Smarter Redraws for Unchanged Connections

This release also trims more internal redraw work when the effective connection output did not actually change.

That includes:

  • skipping marker regeneration when the marker signature is unchanged
  • skipping repeated setLine() and initialize() work when the route signature is unchanged
  • keeping gradient DOM ids stable per connection instance
  • reducing extra DOM writes when gradient coordinates and colors did not change

This is not a new API headline like fCache, but it matters in editors that already redraw many connections during drag, resize, reassignment, or viewport movement.

Production Worker Hardening

v18.2 introduced the connection worker for heavier redraw scenarios.

In real production deployments, that exposed a packaging problem: some builds could end up requesting worker/f-connection.worker.ts directly, which then failed with a MIME-type error after deployment.

In v18.3.0, the worker runtime is started from a self-contained blob URL instead. That removes the external .ts worker request and makes the production startup path much safer.

This release also keeps the worker opt-in behavior intact. The change is about how the runtime is loaded, not about forcing the worker on by default.

Docs and Roadmap Refresh

I also used this release to tighten the surrounding docs:

  • updated f-connection, f-connection-for-create, and f-snap-connection guides
  • refreshed the connection gradients example page
  • rebuilt the roadmap docs around release history instead of a vague future-only list
  • added a dedicated release article for this version

That should make it easier to answer two common questions:

  • what changed in the connection model?
  • which releases introduced which major capabilities?

Migration Note

If you use connection gradients today, the main migration is straightforward:

  1. Remove gradient color inputs from the connection component.
  2. Add a projected f-connection-gradient child.
  3. Keep the rest of the connection structure unchanged.

Release Links

Closing

v18.3.0 is a smaller release than v18.2.0, but it is an important one.

It locks in the projected gradient model, removes more unnecessary connection work, and makes the production worker path safe enough for real deployments.

If you are already on the v18 line, this is the release that makes the newer connection architecture feel more complete.

In this article