Skip to content

Releases: PostHog/posthog-ruby

posthog-ruby-v3.19.0

Choose a tag to compare

@github-actions github-actions released this 15 Jul 23:42
Immutable release. Only release title and notes can be modified.
02f7ce0

Minor Changes

  • 15fa092: feat: add a $feature_flag_has_experiment boolean property to $feature_flag_called events when the server explicitly reports the has_experiment field; the property is omitted when the server does not report it (older deployments)

posthog-rails-v3.17.1

Choose a tag to compare

@github-actions github-actions released this 14 Jul 22:02
Immutable release. Only release title and notes can be modified.
104aef3

Patch Changes

  • 5bdf777: fix: also send the request user agent as $raw_user_agent, the standardized property PostHog's server-side classification reads

posthog-ruby-v3.18.0

Choose a tag to compare

@github-actions github-actions released this 07 Jul 14:38
Immutable release. Only release title and notes can be modified.
e3a604b

Minor Changes

  • 5c21f66: Add secret_key config option and deprecate personal_api_key.

    secret_key is the new canonical credential for local feature flag evaluation and remote config. It accepts either a Personal API Key (phx_...) or a Project Secret API Key (phs_...). personal_api_key still works as a deprecated alias; when both are supplied, secret_key wins.

posthog-rails-v3.17.0

Choose a tag to compare

@github-actions github-actions released this 07 Jul 14:39
Immutable release. Only release title and notes can be modified.
e3a604b

Minor Changes

  • 5c21f66: Add secret_key config option and deprecate personal_api_key.

    secret_key is the new canonical credential for local feature flag evaluation and remote config. It accepts either a Personal API Key (phx_...) or a Project Secret API Key (phs_...). personal_api_key still works as a deprecated alias; when both are supplied, secret_key wins.

posthog-rails-v3.16.1

Choose a tag to compare

@github-actions github-actions released this 06 Jul 07:20
Immutable release. Only release title and notes can be modified.
f0e231c

Patch Changes

  • 737acbc: Avoid double-capturing ActiveJob exceptions through the Rails error subscriber.

posthog-ruby-v3.17.0

Choose a tag to compare

@github-actions github-actions released this 03 Jul 12:12
Immutable release. Only release title and notes can be modified.
3a090d7

Minor Changes

  • 14d85f7: Use stable project-relative stack frame filename values (relative to Rails.root or Dir.pwd, falling back to the basename outside the project) while preserving the raw path in abs_path; dependency and stdlib frames are detected from RubyGems/stdlib install roots, computed once per stacktrace, so in_app no longer depends on deploy-path substrings.

posthog-ruby-v3.16.0

Choose a tag to compare

@github-actions github-actions released this 03 Jul 12:09
Immutable release. Only release title and notes can be modified.
8f2611e

Minor Changes

  • 814c495: Improve error tracking capture signals:

    • capture_exception now walks the full exception.cause chain (outermost-first, cycle-safe, capped at 50) instead of reporting only the outermost exception; chained causes are tagged with a chained mechanism and parent linkage.
    • Exception mechanisms now reflect the capture source: manual captures stay generic/handled: true, while the Rails middleware, Rails.error subscriber, and ActiveJob integrations tag captures as rails/rails_error_reporter/active_job with the correct handled flag. capture_exception accepts a mechanism: keyword.

posthog-rails-v3.16.0

Choose a tag to compare

@github-actions github-actions released this 03 Jul 12:10
Immutable release. Only release title and notes can be modified.
8f2611e

Minor Changes

  • 814c495: Improve error tracking capture signals:

    • capture_exception now walks the full exception.cause chain (outermost-first, cycle-safe, capped at 50) instead of reporting only the outermost exception; chained causes are tagged with a chained mechanism and parent linkage.
    • Exception mechanisms now reflect the capture source: manual captures stay generic/handled: true, while the Rails middleware, Rails.error subscriber, and ActiveJob integrations tag captures as rails/rails_error_reporter/active_job with the correct handled flag. capture_exception accepts a mechanism: keyword.

posthog-ruby-v3.15.3

Choose a tag to compare

@github-actions github-actions released this 02 Jul 14:42
Immutable release. Only release title and notes can be modified.
f761962

Patch Changes

  • fcc6205: Stop duplicating distinct_id inside /flags person properties.

posthog-ruby-v3.15.2

Choose a tag to compare

@github-actions github-actions released this 02 Jul 13:31
Immutable release. Only release title and notes can be modified.
3407070

Patch Changes

  • 1376f19: Retry remote feature flag requests after transient 502 and 504 responses.