Skip to content

fix(deps): update dependency posthog-js to v1.363.4#198

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/posthog-js-1.x
Open

fix(deps): update dependency posthog-js to v1.363.4#198
renovate[bot] wants to merge 1 commit intomainfrom
renovate/posthog-js-1.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 26, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
posthog-js (source) 1.335.21.363.4 age confidence

Release Notes

PostHog/posthog-js (posthog-js)

v1.363.4

Compare Source

1.363.4

Patch Changes

v1.363.3

Compare Source

1.363.3

Patch Changes
  • #​3253 42fbd41 Thanks @​marandaneto! - Reduce browser SDK bundle size by ~6.6 KB (-3.7%) through code modernization, build config tuning, string deduplication, enum-to-const conversions, and property access shorthand getters.
    (2026-03-23)
  • Updated dependencies []:

v1.363.2

Compare Source

v1.363.1

Compare Source

1.363.1

Patch Changes

v1.363.0

Compare Source

1.363.0

Minor Changes
Patch Changes

v1.362.0

Compare Source

1.362.0

Minor Changes
  • #​3244 ff8a93e Thanks @​sampennington! - Fixed $set_once initial person properties (e.g. $initial_current_url) not being included with $identify calls when they had already been sent with a prior event. This ensures initial properties are reliably set when identifying users across subdomains, even if an anonymous event was captured first.
    (2026-03-18)
Patch Changes

v1.361.1

Compare Source

1.361.1

Patch Changes

v1.361.0

Compare Source

1.361.0

Minor Changes
  • #​3201 552c018 Thanks @​frankh! - Add a serviceName config option to logs config
    (2026-03-18)

  • #​3240 e4a58d0 Thanks @​marandaneto! - Add internal _overrideSDKInfo method to allow wrapper SDKs to override $lib and $lib_version event properties
    (2026-03-18)

  • #​3241 fe1fd7b Thanks @​dustinbyrne! - feat: add advanced_feature_flags_dedup_per_session config option to scope $feature_flag_called deduplication to the current session
    (2026-03-18)

Patch Changes

v1.360.2

Compare Source

1.360.2

Patch Changes

v1.360.1

Compare Source

1.360.1

Patch Changes

v1.360.0

Compare Source

1.360.0

Patch Changes
  • #​3213 db089fd Thanks @​TueHaulund! - fix(replay): treat legacy configs without cache_timestamp as fresh

    Configs persisted by older SDK versions never include a cache_timestamp.
    Defaulting to 0 treats them as always stale, causing the persisted config
    to be cleared before start() runs — so recording never starts for
    customers on older core SDK versions paired with the latest CDN recorder. (2026-03-09)

  • #​3207 c5a37cb Thanks @​dustinbyrne! - fix: PostHogFeatureFlags uses a TreeShakeable type
    (2026-03-09)

  • Updated dependencies [c5a37cb]:

v1.359.1

Compare Source

1.359.1
Patch Changes

v1.359.0

Compare Source

1.359.0

Minor Changes
Patch Changes

v1.358.1

Compare Source

1.358.1

Patch Changes
  • #​3191 9f41d26 Thanks @​TueHaulund! - fix(replay): fall back to persisted config when remote config fetch fails

    When the remote config fetch failed (network error, ad blocker, CDN outage), the SDK received an empty {} response with no sessionRecording key. The onRemoteConfig handler returned early without ever setting _receivedFlags = true, leaving the recording permanently stuck in pending_config status for the entire page session.

    This removes the _receivedFlags gate entirely. The 1-hour TTL on persisted config (added in #​3051, increased from 5 minutes) and the stale-config retry in _onScriptLoaded (added in #​3093) already prevent recording from starting with outdated config. The additional gate was redundant and created a deadlock when the config fetch failed.

    Now when the config fetch fails, startIfEnabledOrStop() is called and falls back to persisted config from a previous page load. If no persisted config exists (first-ever visit), recording is correctly disabled rather than silently stuck. (2026-03-04)

  • #​3198 9d0df0e Thanks @​TueHaulund! - Reduce session replay memory pressure by tracking per-event sizes in SnapshotBuffer, eliminating redundant JSON.stringify calls during buffer operations. Also bumps @​posthog/rrweb to 0.0.46 which uses FNV-1a hash-based canvas frame deduplication instead of storing full base64 strings.
    (2026-03-04)

  • Updated dependencies []:

v1.358.0

Compare Source

1.358.0

Minor Changes
Patch Changes

v1.357.2

Compare Source

1.357.2

Patch Changes

v1.357.1

Compare Source

1.357.1

Patch Changes

v1.357.0

Compare Source

1.357.0

Minor Changes
Patch Changes
  • #​3179 0dce119 Thanks @​TueHaulund! - Bump @​posthog/rrweb-* to 0.0.45 — reuses a single OffscreenCanvas in the canvas recording worker instead of allocating a new one per frame, fixing a memory leak in Safari where GPU-backed canvas resources were not being garbage collected promptly
    (2026-03-02)
  • Updated dependencies [4f885c0]:

v1.356.2

Compare Source

1.356.2

Patch Changes
  • #​3174 e9127d8 Thanks @​TueHaulund! - Detect and report when rrweb fails to initialize. rrweb's record() silently swallows startup errors and returns undefined, which previously left the SDK reporting an active recording status while capturing zero data. The SDK now checks the return value and reports a new rrweb_error status, making the failure visible in debug properties.
    (2026-03-02)

  • #​3175 6ee5f12 Thanks @​TueHaulund! - Fix memory leak in canvas recording on Safari < 16.4 where ImageBitmaps were never closed when OffscreenCanvas was unavailable in the web worker.
    (2026-03-02)

  • #​3178 186871a Thanks @​TueHaulund! - Skip canvas FPS recording entirely on browsers without OffscreenCanvas support (Safari < 16.4) instead of running a wasteful requestAnimationFrame loop that can never produce data. Also includes displayWidth/displayHeight in canvas mutation data for correct replay sizing.
    (2026-03-02)

  • #​3176 87bae20 Thanks @​dustinbyrne! - fix: Drop explicit exports
    (2026-03-02)

  • #​3172 2e46959 Thanks @​dustinbyrne! - fix: Compressed requests use ArrayBuffer
    (2026-03-02)

  • Updated dependencies []:

v1.356.1

Compare Source

1.356.1

Patch Changes
  • #​3128 a500d14 Thanks @​ksvat! - wait for fresh config before recording start decision, add new recorder status, output recording started event
    (2026-02-27)
  • Updated dependencies []:

v1.356.0

Compare Source

1.356.0

Minor Changes
Patch Changes
  • #​3154 a47179c Thanks @​slshults! - fix: Improve tablet device type detection when Chrome sends desktop-like UA strings

    Chrome on Android tablets defaults to "request desktop site" mode, sending a UA string
    indistinguishable from desktop Linux. This uses the Client Hints API (navigator.userAgentData.platform)
    and touch capability (navigator.maxTouchPoints) to correctly classify these devices as Tablet or Mobile
    when UA-based detection falls through to the Desktop default. (2026-02-26)

  • #​3145 d741668 Thanks @​dmarticus! - Adds a remote_config_refresh_interval_ms config option to control how often feature flags are automatically refreshed in long-running sessions.
    (2026-02-26)

  • Updated dependencies [ec54fd8, d741668]:

v1.355.0

Compare Source

1.355.0

Minor Changes
Patch Changes

v1.354.4

Compare Source

1.354.4

Patch Changes

v1.354.3

Compare Source

1.354.3

Patch Changes

v1.354.2

Compare Source

1.354.2

Patch Changes

v1.354.1

Compare Source

1.354.1

Patch Changes

v1.354.0

Compare Source

1.354.0

Minor Changes
Patch Changes

v1.353.1

Compare Source

1.353.1

Patch Changes

v1.353.0

Compare Source

1.353.0

Minor Changes
Patch Changes

v1.352.1

Compare Source

1.352.1

Patch Changes

v1.352.0

Compare Source

1.352.0

Minor Changes
Patch Changes

v1.351.4

Compare Source

1.351.4
Patch Changes
  • #​3119 2649a9a Thanks @​dmarticus! - Adds a fresh option to getFeatureFlag(), getFeatureFlagResult(), and isFeatureEnabled() that only returns values loaded from the server, not cached localStorage values.
    (2026-02-19)
  • Updated dependencies [2649a9a]:

v1.351.3

Compare Source

1.351.3
Patch Changes

v1.351.2

Compare Source

1.351.2
Patch Changes

v1.351.1

Compare Source

1.351.1
Patch Changes

v1.351.0

Compare Source

1.351.0
Minor Changes
Patch Changes

v1.350.0

Compare Source

1.350.0
Minor Changes
  • #​2895 1b47203 Thanks @​benjackwhite! - RemoteConfig (config.js) has been loaded for ages and is in use by us in production. This PR makes it the sole config loading mechanism for posthog-js, removing the legacy /flags/?v=2&config=true path and the __preview_remote_config gate.
    (2026-02-17)
Patch Changes

v1.349.0

Compare Source

1.349.0
Minor Changes
Patch Changes

v1.348.0

Compare Source

1.348.0
Minor Changes
Patch Changes

v1.347.2

Compare Source

1.347.2

Patch Changes

v1.347.1

Compare Source

1.347.1

Patch Changes

v1.347.0

Compare Source

1.347.0

Minor Changes
Patch Changes

v1.346.0

Compare Source

1.346.0

Minor Changes
Patch Changes

v1.345.5

Compare Source

1.345.5

Patch Changes
  • #​3060 7437982 Thanks @​pauldambra! - Add missing featureFlags property and OverrideFeatureFlagsOptions type to PostHog interface, restore set_config to the loaded callback type, and add featureFlagsReloading to on() event types
    (2026-02-11)
  • Updated dependencies [7437982]:

v1.345.4

Compare Source

1.345.4

Patch Changes

v1.345.3

Compare Source

1.345.3

Patch Changes

v1.345.2

Compare Source

1.345.2

Patch Changes

v1.345.1

Compare Source

1.345.1

Patch Changes

v1.345.0

Compare Source

1.345.0

Minor Changes
Patch Changes

v1.344.0

Compare Source

v1.343.2

Compare Source

1.343.2

Patch Changes

v1.343.1

Compare Source

1.343.1

Patch Changes

v1.343.0

Compare Source

1.343.0

Minor Changes
Patch Changes

v1.342.1

Compare Source

1.342.1

Patch Changes

v1.342.0

Compare Source

1.342.0

Minor Changes
Patch Changes

v1.341.2

Compare Source

1.341.2

Patch Changes

v1.341.1

Compare Source

1.341.1

Patch Changes

v1.341.0

Compare Source

1.341.0

Minor Changes
Patch Changes

v1.340.0

Compare Source

1.340.0

Minor Changes
Patch Changes

v1.339.1

Compare Source

1.339.1

Patch Changes
  • #​3007 af665cc Thanks @​adboio! - add element inference precision to tours; do not mark as shown until we know first step rendered successfully
    (2026-02-03)
  • Updated dependencies []:

v1.339.0

Compare Source

1.339.0

Minor Changes
Patch Changes

v1.338.1

Compare Source

1.338.1

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.335.3 fix(deps): update dependency posthog-js to v1.335.4 Jan 27, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 66e188c to 7943750 Compare January 27, 2026 19:07
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.335.4 fix(deps): update dependency posthog-js to v1.335.5 Jan 28, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 7943750 to 8927f5f Compare January 28, 2026 01:11
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.335.5 fix(deps): update dependency posthog-js to v1.336.0 Jan 28, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch 2 times, most recently from 66638e5 to 7cbea5b Compare January 28, 2026 21:49
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.336.0 fix(deps): update dependency posthog-js to v1.336.1 Jan 28, 2026
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.336.1 fix(deps): update dependency posthog-js to v1.336.2 Jan 29, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch 2 times, most recently from 6702c49 to d22d2ef Compare January 29, 2026 21:03
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.336.2 fix(deps): update dependency posthog-js to v1.336.4 Jan 29, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from d22d2ef to 45c1cbd Compare February 3, 2026 10:07
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.336.4 fix(deps): update dependency posthog-js to v1.337.0 Feb 3, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 45c1cbd to 9c37c1b Compare February 3, 2026 14:59
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.337.0 fix(deps): update dependency posthog-js to v1.337.1 Feb 3, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 9c37c1b to 48717ac Compare February 3, 2026 21:30
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.337.1 fix(deps): update dependency posthog-js to v1.338.0 Feb 3, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 48717ac to e4f9efa Compare February 4, 2026 00:53
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.338.0 fix(deps): update dependency posthog-js to v1.339.1 Feb 4, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from e4f9efa to 51ea4b5 Compare February 4, 2026 17:37
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.339.1 fix(deps): update dependency posthog-js to v1.341.0 Feb 4, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 51ea4b5 to 47739f6 Compare February 5, 2026 19:06
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.341.0 fix(deps): update dependency posthog-js to v1.341.1 Feb 5, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 47739f6 to 05c626b Compare February 5, 2026 22:50
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.341.1 fix(deps): update dependency posthog-js to v1.342.0 Feb 5, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 05c626b to 381e80e Compare February 6, 2026 13:15
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.342.0 fix(deps): update dependency posthog-js to v1.342.1 Feb 6, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 381e80e to 37e5265 Compare February 9, 2026 10:54
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.342.1 fix(deps): update dependency posthog-js to v1.343.1 Feb 9, 2026
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.345.3 fix(deps): update dependency posthog-js to v1.345.4 Feb 11, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 7a7a1a7 to aa91d58 Compare February 11, 2026 16:35
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.345.4 fix(deps): update dependency posthog-js to v1.345.5 Feb 11, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from aa91d58 to f6dcb98 Compare February 12, 2026 19:12
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.345.5 fix(deps): update dependency posthog-js to v1.347.0 Feb 12, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from f6dcb98 to 98417c5 Compare February 13, 2026 05:35
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.347.0 fix(deps): update dependency posthog-js to v1.347.1 Feb 13, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 98417c5 to f7a7da3 Compare February 13, 2026 16:41
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.347.1 fix(deps): update dependency posthog-js to v1.347.2 Feb 13, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from f7a7da3 to 20f62e2 Compare February 17, 2026 20:50
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.347.2 fix(deps): update dependency posthog-js to v1.350.0 Feb 17, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 20f62e2 to fac24a9 Compare February 18, 2026 17:40
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.350.0 fix(deps): update dependency posthog-js to v1.351.1 Feb 18, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from fac24a9 to 5ef4f4a Compare February 19, 2026 06:01
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.351.1 fix(deps): update dependency posthog-js to v1.351.3 Feb 19, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 5ef4f4a to 64b10cf Compare February 19, 2026 22:06
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.351.3 fix(deps): update dependency posthog-js to v1.351.4 Feb 19, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 64b10cf to 459290e Compare February 20, 2026 15:10
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.351.4 fix(deps): update dependency posthog-js to v1.352.0 Feb 20, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 459290e to 7949d0d Compare February 23, 2026 12:47
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.352.0 fix(deps): update dependency posthog-js to v1.352.1 Feb 23, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 7949d0d to 5c969a0 Compare February 23, 2026 22:58
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.352.1 fix(deps): update dependency posthog-js to v1.353.0 Feb 23, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 5c969a0 to 1836746 Compare February 24, 2026 22:08
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.353.0 fix(deps): update dependency posthog-js to v1.353.1 Feb 24, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 1836746 to 745c638 Compare February 25, 2026 16:57
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.353.1 fix(deps): update dependency posthog-js to v1.354.0 Feb 25, 2026
@renovate renovate bot force-pushed the renovate/posthog-js-1.x branch from 745c638 to 4669d98 Compare February 25, 2026 22:17
@renovate renovate bot changed the title fix(deps): update dependency posthog-js to v1.354.0 fix(deps): update dependency posthog-js to v1.354.3 Feb 25, 2026
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.

0 participants