Skip to content

Releases: tyssejc/junction

@junctionjs/next@2.0.0

24 Mar 19:45

Choose a tag to compare

Patch Changes

  • Updated dependencies [cc7d872]:
    • @junctionjs/core@0.3.0
    • @junctionjs/client@0.1.3
    • @junctionjs/debug@2.0.0

@junctionjs/next@1.0.1

24 Mar 11:54

Choose a tag to compare

Patch Changes

  • #9 79fc81d Thanks @tyssejc! - fix(core): flush event buffer on consent change so queued events dispatch immediately

    fix(next): derive single URL dep in PageTracker to prevent double pageview on navigation

  • Updated dependencies [79fc81d, deb159c]:

    • @junctionjs/core@0.2.1

@junctionjs/gateway@0.1.3

24 Mar 19:45

Choose a tag to compare

Patch Changes

  • Updated dependencies [cc7d872]:
    • @junctionjs/core@0.3.0

@junctionjs/destination-plausible@2.0.0

24 Mar 19:45

Choose a tag to compare

Patch Changes

  • Updated dependencies [cc7d872]:
    • @junctionjs/core@0.3.0

@junctionjs/destination-meta@2.0.0

24 Mar 19:45

Choose a tag to compare

Patch Changes

  • Updated dependencies [cc7d872]:
    • @junctionjs/core@0.3.0

@junctionjs/destination-http@2.0.0

24 Mar 19:45

Choose a tag to compare

Patch Changes

  • Updated dependencies [cc7d872]:
    • @junctionjs/core@0.3.0

@junctionjs/destination-ga4@2.0.0

24 Mar 19:45

Choose a tag to compare

Patch Changes

  • #11 7c8cb06 Thanks @tyssejc! - Fix gtag.js integration: use Arguments object instead of Array for dataLayer

    The gtag stub function was using an arrow function with rest parameters, which
    pushed plain Arrays to the dataLayer. gtag.js silently ignores array entries —
    it expects the Arguments object. Switched to a named function declaration using
    arguments to match Google's official snippet.

    Also added gtag("consent", "default", {...}) call before gtag("config", ...)
    when consent mode is enabled. Without this, gtag.js doesn't know consent mode
    is active and consent state is never communicated to Google.

  • Updated dependencies [cc7d872]:

    • @junctionjs/core@0.3.0

@junctionjs/destination-amplitude@2.0.0

24 Mar 19:45

Choose a tag to compare

Patch Changes

  • Updated dependencies [cc7d872]:
    • @junctionjs/core@0.3.0

@junctionjs/debug@2.0.0

24 Mar 19:44

Choose a tag to compare

Patch Changes

  • Updated dependencies [cc7d872]:
    • @junctionjs/core@0.3.0

@junctionjs/core@0.3.0

24 Mar 19:45

Choose a tag to compare

Minor Changes

  • #12 cc7d872 Thanks @tyssejc! - feat(core): add consent queue guardrails — maxQueueSize, queue:drop telemetry, flush() drains queue

    • Add maxQueueSize option to ConsentConfig — drops oldest events when exceeded
    • Emit queue:drop events with { count, reason } when events are lost to timeout or overflow
    • flush() now drains the consent queue for permitted events, critical for page unload