Skip to content

chore(deps): update dependency posthog-node to v5.38.0#246

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/posthog-node-5.x
Open

chore(deps): update dependency posthog-node to v5.38.0#246
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/posthog-node-5.x

Conversation

@renovate

@renovate renovate Bot commented Sep 10, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
posthog-node (source) 5.29.25.38.0 age confidence

Release Notes

PostHog/posthog-js (posthog-node)

v5.38.0

Compare Source

Minor Changes
  • #​3845 a0553b3 Thanks @​marandaneto! - Add setPersonProperties() and unsetPersonProperties() helpers to manage person properties from the Node.js SDK.
    (2026-06-16)
Patch Changes

v5.37.1

Compare Source

Patch Changes

v5.37.0

Compare Source

Minor Changes
  • #​3705 d6fc0a5 Thanks @​gustavohstrassburger! - feat(feature-flags): support the early_exit condition option in local evaluation. When a flag enables early exit, evaluation now stops and returns false as soon as a condition group's property filters match but the rollout percentage excludes the user, instead of falling through to later groups — matching the server-side evaluation behavior.
    (2026-06-12)

v5.36.17

Compare Source

Patch Changes

v5.36.16

Compare Source

Patch Changes

v5.36.15

Compare Source

Patch Changes

v5.36.14

Compare Source

Patch Changes

v5.36.13

Compare Source

Patch Changes

v5.36.12

Compare Source

Patch Changes

v5.36.11

Compare Source

Patch Changes

v5.36.10

Compare Source

Patch Changes

v5.36.9

Compare Source

Patch Changes

v5.36.8

Compare Source

Patch Changes

v5.36.7

Compare Source

Patch Changes

v5.36.6

Compare Source

Patch Changes

v5.36.5

Compare Source

Patch Changes

v5.36.4

Compare Source

Patch Changes

v5.36.3

Compare Source

Patch Changes

v5.36.2

Compare Source

Patch Changes

v5.36.1

Compare Source

Patch Changes

v5.36.0

Compare Source

Minor Changes
  • #​3728 9287c87 Thanks @​turnipdabeets! - Add a configurable $is_server event property (default true) so PostHog can identify server-side events. Set isServer: false when using the SDK as a client/CLI so the device OS is attributed normally.
    (2026-06-04)

v5.35.15

Compare Source

Patch Changes

v5.35.14

Compare Source

Patch Changes

v5.35.13

Compare Source

Patch Changes

v5.35.12

Compare Source

Patch Changes

v5.35.11

Compare Source

Patch Changes

v5.35.10

Compare Source

Patch Changes

v5.35.9

Compare Source

Patch Changes

v5.35.8

Compare Source

Patch Changes

v5.35.7

Compare Source

Patch Changes

v5.35.6

Compare Source

Patch Changes

v5.35.5

Compare Source

Patch Changes

v5.35.4

Compare Source

Patch Changes

v5.35.3

Compare Source

Patch Changes

v5.35.2

Compare Source

Patch Changes
  • #​3658 5d7a2d3 Thanks @​gustavohstrassburger! - Include group context in the $feature_flag_called deduplication key in _captureFlagCalledEventIfNeeded, so events fire independently per group combination.
    (2026-05-25)

v5.35.1

Compare Source

Patch Changes

v5.35.0

Compare Source

Minor Changes
  • #​3642 18ea8b5 Thanks @​dustinbyrne! - Promote feature flag definition cache provider types to the main posthog-node export and deprecate posthog-node/experimental imports.
    (2026-05-21)
Patch Changes

v5.34.10

Compare Source

Patch Changes
  • #​3643 f42f371 Thanks @​dmarticus! - Reject semver values with leading zeros in local flag evaluation. Per semver 2.0.0 §2, numeric identifiers must not include leading zeros — values like 1.07.3 are not valid semver and should not match targeting conditions. Both override values and flag values are now validated; invalid inputs surface as InconclusiveMatchError so the condition does not match.
    (2026-05-21)

v5.34.9

Compare Source

Patch Changes

v5.34.8

Compare Source

Patch Changes
  • #​3640 12ef3f6 Thanks @​hpouillot! - Fix identifyImmediate to await the underlying network request. Previously the returned promise resolved before the $identify event was sent, causing events to be dropped when called from short-lived runtimes (Vercel/Cloudflare Workers, Convex actions) that exit immediately after await.
    (2026-05-21)

v5.34.7

Compare Source

Patch Changes

v5.34.6

Compare Source

Patch Changes
  • #​3623 e119eec Thanks @​richardsolomou! - Fix six edge cases in local feature flag evaluation. gt/gte/lt/lte now compare numerically when both sides parse as finite numbers — previously a string override like "10" against numeric value 9 slipped into lexicographic comparison and returned false, and parseFloat's NaN return value leaked through the old != null guard. is_not_set now resolves locally — true when the property key is absent, false when present — instead of always throwing InconclusiveMatchError and forcing the flag to return undefined. Flag-level condition properties with negation: true are now correctly inverted, matching the existing cohort-path behavior in matchPropertyGroup. An inactive flag (active: false) now short-circuits to false even when ensure_experience_continuity: true — previously it threw InconclusiveMatchError and resolved to undefined. is_set now returns true for properties whose value is null or undefined as long as the key is present — is_set is about key presence, not value. Cohort property groups containing a flag-type property no longer silently skip the dependency; the cohort eval is now marked inconclusive so the flag returns undefined instead of a wrong definitive answer.
    (2026-05-19)

v5.34.5

Compare Source

Patch Changes

v5.34.4

Compare Source

Patch Changes

v5.34.3

Compare Source

Patch Changes

v5.34.2

Compare Source

Patch Changes

v5.34.1

Compare Source

Patch Changes

v5.34.0

Compare Source

Minor Changes
  • #​3599 ad60818 Thanks @​turnipdabeets! - Expose UUID and cookie helpers from @posthog/core and posthog-node for users managing distinct_id outside the browser SDK (e.g. Lambda functions handing out cross-domain redirects). The helpers were already implemented in @posthog/next — this change lifts them to core so all SDKs can re-use them. @posthog/next now re-exports the same surface from @posthog/core to keep existing consumers working without churn. Closes #​2143.
    (2026-05-12)
Patch Changes

v5.33.7

Compare Source

Patch Changes

v5.33.6

Compare Source

Patch Changes

v5.33.5

Compare Source

Patch Changes

v5.33.4

Compare Source

Patch Changes

v5.33.3

Compare Source

Patch Changes

v5.33.2

Compare Source

Patch Changes

v5.33.1

Compare Source

Patch Changes

v5.33.0

Compare Source

Minor Changes
  • #​3476 f8bc02f Thanks @​dmarticus! - Add evaluateFlags() and a new flags option on capture() so a single /flags request powers both flag branching and event enrichment per incoming request:

    const flags = await posthog.evaluateFlags(distinctId, { personProperties: { plan: 'enterprise' } })
    if (flags.isEnabled('new-dashboard')) {
      renderNewDashboard()
    }
    posthog.capture({ distinctId, event: 'page_viewed', flags })

    The returned FeatureFlagEvaluations snapshot exposes isEnabled(), getFlag(), getFlagPayload() for branching, plus onlyAccessed() and only([keys]) for filtering which flags get attached to a captured event. Pass flagKeys: [...] to evaluateFlags() to scope the underlying /flags request itself. captureException() / captureExceptionImmediate() accept a flags argument so $exception events carry the same flag context as the rest of your request's events.

    Deprecates isFeatureEnabled(), getFeatureFlag(), getFeatureFlagPayload(), and capture({ sendFeatureFlags }). They continue to work but now log a deduped [PostHog] ... is deprecated warning the first time they're used. Removal is planned for the next major version. (2026-05-02)

v5.32.1

Compare Source

Patch Changes

v5.32.0

Compare Source

Minor Changes

v5.31.0

Compare Source

Minor Changes

v5.30.8

Compare Source

Patch Changes

v5.30.7

Compare Source

Patch Changes

v5.30.6

Compare Source

Patch Changes

v5.30.5

Compare Source

Patch Changes

v5.30.4

Compare Source

Patch Changes

v5.30.3

Compare Source

Patch Changes

v5.30.2

Compare Source

Patch Changes

v5.30.1

Compare Source

Patch Changes

v5.30.0

Compare Source

Minor Changes

v5.29.7

Compare Source

Patch Changes

v5.29.6

Compare Source

Patch Changes

v5.29.5

Compare Source

Patch Changes

v5.29.4

Compare Source

Patch Changes

v5.29.3

Compare Source

Patch Changes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 added the bump label Sep 10, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 994ee7e to bdaf96d Compare September 12, 2025 03:56
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.8.3 chore(deps): update dependency posthog-node to v5.8.4 Sep 12, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from bdaf96d to 2ba2e03 Compare September 19, 2025 12:42
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.8.4 chore(deps): update dependency posthog-node to v5.8.5 Sep 19, 2025
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.8.5 chore(deps): update dependency posthog-node to v5.8.6 Sep 20, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 2ba2e03 to b079699 Compare September 20, 2025 12:22
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.8.6 chore(deps): update dependency posthog-node to v5.8.8 Sep 23, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch 2 times, most recently from cffa922 to a9221e7 Compare September 24, 2025 09:34
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.8.8 chore(deps): update dependency posthog-node to v5.9.0 Sep 24, 2025
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.9.0 chore(deps): update dependency posthog-node to v5.9.1 Sep 24, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch 2 times, most recently from eb94eb7 to 633a67a Compare September 29, 2025 10:12
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.9.1 chore(deps): update dependency posthog-node to v5.9.2 Sep 29, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 633a67a to 11e3185 Compare October 7, 2025 00:38
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.9.2 chore(deps): update dependency posthog-node to v5.9.3 Oct 7, 2025
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.9.3 chore(deps): update dependency posthog-node to v5.9.4 Oct 9, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 11e3185 to ac71544 Compare October 9, 2025 10:00
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.9.4 chore(deps): update dependency posthog-node to v5.9.5 Oct 9, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from ac71544 to 0209997 Compare October 9, 2025 15:22
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.9.5 chore(deps): update dependency posthog-node to v5.10.0 Oct 14, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 0209997 to a2d024b Compare October 14, 2025 13:33
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.10.0 chore(deps): update dependency posthog-node to v5.10.1 Oct 20, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch 2 times, most recently from 0fa12e8 to 5e2f0fa Compare October 21, 2025 23:13
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.10.1 chore(deps): update dependency posthog-node to v5.10.2 Oct 21, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 5e2f0fa to 5191aee Compare October 22, 2025 10:07
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.10.2 chore(deps): update dependency posthog-node to v5.10.3 Oct 22, 2025
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.10.3 chore(deps): update dependency posthog-node to v5.10.4 Oct 27, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from e25470a to edaad1a Compare November 20, 2025 14:11
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.13.0 chore(deps): update dependency posthog-node to v5.13.2 Nov 20, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from edaad1a to b7a5456 Compare November 24, 2025 05:04
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.13.2 chore(deps): update dependency posthog-node to v5.13.3 Nov 24, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from b7a5456 to 848affd Compare November 24, 2025 10:12
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.13.3 chore(deps): update dependency posthog-node to v5.13.2 Nov 24, 2025
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.13.2 chore(deps): update dependency posthog-node to v5.14.0 Nov 24, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch 2 times, most recently from 036fcdc to 75c7b83 Compare November 28, 2025 15:06
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.14.0 chore(deps): update dependency posthog-node to v5.14.1 Nov 28, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 75c7b83 to 129f5c9 Compare December 2, 2025 02:49
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.14.1 chore(deps): update dependency posthog-node to v5.15.0 Dec 2, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 129f5c9 to 4b9064c Compare December 3, 2025 12:59
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.15.0 chore(deps): update dependency posthog-node to v5.17.0 Dec 3, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 4b9064c to f9d17dd Compare December 4, 2025 18:33
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.17.0 chore(deps): update dependency posthog-node to v5.17.1 Dec 4, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from f9d17dd to 041534a Compare December 4, 2025 21:13
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.17.1 chore(deps): update dependency posthog-node to v5.17.2 Dec 4, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 041534a to de2958b Compare December 17, 2025 02:07
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.17.2 chore(deps): update dependency posthog-node to v5.17.3 Dec 17, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from de2958b to 18cc58e Compare December 17, 2025 17:54
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.17.3 chore(deps): update dependency posthog-node to v5.17.4 Dec 17, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 18cc58e to 3c00473 Compare December 22, 2025 18:28
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.17.4 chore(deps): update dependency posthog-node to v5.18.0 Dec 22, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 3c00473 to 721e553 Compare December 30, 2025 22:35
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.18.0 chore(deps): update dependency posthog-node to v5.18.1 Dec 30, 2025
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from 721e553 to a549316 Compare January 6, 2026 04:43
@renovate renovate Bot changed the title chore(deps): update dependency posthog-node to v5.18.1 chore(deps): update dependency posthog-node to v5.19.0 Jan 6, 2026
@renovate renovate Bot force-pushed the renovate/posthog-node-5.x branch from a549316 to a64d5ec Compare January 8, 2026 19:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants