Skip to content

ci(deps): update module github.com/posthog/posthog-go to v1.17.5 - autoclosed - #1164

Closed
meza-deps[bot] wants to merge 1 commit into
gofrom
renovate/github.com-posthog-posthog-go-1.x
Closed

ci(deps): update module github.com/posthog/posthog-go to v1.17.5 - autoclosed#1164
meza-deps[bot] wants to merge 1 commit into
gofrom
renovate/github.com-posthog-posthog-go-1.x

Conversation

@meza-deps

@meza-deps meza-deps Bot commented Jul 11, 2026

Copy link
Copy Markdown

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/posthog/posthog-go v1.6.13v1.17.5 age adoption passing confidence

Release Notes

posthog/posthog-go (github.com/posthog/posthog-go)

v1.17.5: 1.17.5

Compare Source

Unreleased

v1.17.4: 1.17.4

Compare Source

Unreleased

v1.17.3: 1.17.3

Compare Source

Unreleased

v1.17.2: 1.17.2

Compare Source

Unreleased

v1.17.1: 1.17.1

Compare Source

Unreleased

v1.17.0: 1.17.0

Compare Source

Unreleased

v1.16.2: 1.16.2

Compare Source

Unreleased

v1.16.1: 1.16.1

Compare Source

Unreleased

v1.16.0: 1.16.0

Compare Source

Unreleased

v1.15.1: 1.15.1

Compare Source

Unreleased

v1.15.0: 1.15.0

Compare Source

Unreleased

v1.14.0: 1.14.0

Compare Source

Unreleased

v1.13.2: 1.13.2

Compare Source

Unreleased

v1.13.1: 1.13.1

Compare Source

Unreleased

v1.13.0: 1.13.0

Compare Source

Unreleased

v1.12.6: 1.12.6

Compare Source

Unreleased

v1.12.5: 1.12.5

Compare Source

Unreleased

v1.12.4: 1.12.4

Compare Source

1.12.4 - 2026-04-30

v1.12.3

Compare Source

v1.12.2

Compare Source

v1.12.1

Compare Source

1.12.1 - 2026-04-20

v1.12.0

Compare Source

1.12.0 - 2026-04-20

v1.11.3

Compare Source

1.11.3 - 2026-04-14

  • Full Changelog

  • Added locally_evaluated property to $feature_flag_called events, indicating whether the flag was evaluated locally or via the remote /flags endpoint.

v1.11.2

Compare Source

1.11.2 - 2026-03-26

v1.11.1

Compare Source

1.11.1 - 2026-03-11

v1.10.0

Compare Source

1.10.0 - 2026-02-04

New Features
  • GetFeatureFlagResult: New method that returns both the flag value and payload in a single call, while properly tracking feature flag usage via $feature_flag_called events.
Deprecations
  • GetFeatureFlagPayload: Deprecated in favor of GetFeatureFlagResult. The new method provides better tracking and a more convenient API.
Migration Guide
// Before (two calls, no event tracking for payload-only):
flag, _ := client.GetFeatureFlag(payload)
payloadStr, _ := client.GetFeatureFlagPayload(payload)

// After (single call, always tracks):
result, err := client.GetFeatureFlagResult(payload)
if err != nil { /* handle */ }
if result.Enabled {
    var config MyConfig
    result.GetPayloadAs(&config)
}

Note: GetFeatureFlagResult returns nil, error when a flag doesn't exist (rather than a result with Enabled: false). Check for errors to distinguish between a disabled flag and a missing flag:

result, err := client.GetFeatureFlagResult(payload)
if errors.Is(err, posthog.ErrFlagNotFound) {
    // Flag doesn't exist - use default behavior
}
if err != nil {
    // Other error (e.g., network issue)
}
if result.Enabled {
    // Flag exists and is enabled
} else {
    // Flag exists but is disabled
}

v1.9.1

Compare Source

1.9.1 - 2026-01-21

v1.9.0

Compare Source

1.9.0 - 2026-01-13

v1.8.2

Compare Source

1.8.2

v1.8.1

Compare Source

1.8.1

v1.8.0

Compare Source

1.8.0

1.7.0


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 has been generated by Mend Renovate.

@meza-deps
meza-deps Bot requested a review from meza as a code owner July 11, 2026 22:15
@meza-deps
meza-deps Bot enabled auto-merge (squash) July 11, 2026 22:15
@meza-deps
meza-deps Bot force-pushed the renovate/github.com-posthog-posthog-go-1.x branch from 1f828bc to e4f8d77 Compare July 12, 2026 08:13
@meza-deps meza-deps Bot changed the title ci(deps): update module github.com/posthog/posthog-go to v1.17.4 ci(deps): update module github.com/posthog/posthog-go to v1.17.5 Jul 12, 2026
@meza-deps meza-deps Bot changed the title ci(deps): update module github.com/posthog/posthog-go to v1.17.5 ci(deps): update module github.com/posthog/posthog-go to v1.17.5 - autoclosed Jul 12, 2026
@meza-deps meza-deps Bot closed this Jul 12, 2026
auto-merge was automatically disabled July 12, 2026 14:20

Pull request was closed

@meza-deps
meza-deps Bot deleted the renovate/github.com-posthog-posthog-go-1.x branch July 12, 2026 14:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants