Releases: PostHog/posthog-elixir
Releases · PostHog/posthog-elixir
Release list
2.15.0
Immutable
release. Only release title and notes can be modified.
Minor changes
- c7c03fd Add local feature flag definition polling and evaluation with safe remote fallback. — Thanks @marandaneto!
2.14.2
Immutable
release. Only release title and notes can be modified.
Patch changes
- 7e14b2a Return an empty feature flag snapshot without evaluation when feature flag keys are explicitly empty. — Thanks @marandaneto!
2.14.1
Immutable
release. Only release title and notes can be modified.
Patch changes
- 35087c1 Keep gzip-compressed request bodies valid across retries — Thanks @marandaneto!
2.14.0
Immutable
release. Only release title and notes can be modified.
Minor changes
- 4fed56b Send minimal
$feature_flag_calledevents when the/flagsresponse carries the server-controlledminimalFlagCalledEventsgate and the evaluated flag reportshas_experiment: false. Minimal events keep only an allowlisted set of properties (flag identity, evaluation metadata,$groups,$process_person_profile,$session_id,$lib,$lib_version,$is_server); everything else, including context and global properties, is stripped. Experiment-linked flags and responses without the gate keep the full event shape. — Thanks @haacked!
2.13.0
Immutable
release. Only release title and notes can be modified.
2.12.1
Immutable
release. Only release title and notes can be modified.
Patch changes
- dbe91ba Group captured log messages by logging call site instead of message content. Plain log messages often interpolate dynamic values (ids, URLs, inspected terms), and using the message as the exception type created a separate error tracking issue for every distinct message. The exception type is now
Logger <level> (<Module.function/arity>)when call-site metadata is available; the full message remains in the exception value. — Thanks @cat-ph!
2.12.0
Immutable
release. Only release title and notes can be modified.
Minor changes
- 673ec2c Add a
$feature_flag_has_experimentboolean property to$feature_flag_calledevents, sourced from thehas_experimentfield in the/flagsresponse metadata. The property is only sent when the server explicitly reports the field; it is omitted when unknown (older deployments). — Thanks @haacked!
2.11.1
Immutable
release. Only release title and notes can be modified.
Patch changes
- d1b8ed9 Require Req 0.6.1 or newer to avoid vulnerable 0.5.x and 0.6.0 releases. — Thanks @dustinbyrne!
2.11.0
Immutable
release. Only release title and notes can be modified.
Minor changes
- a014220 Add before_send callback support for filtering captured events — Thanks @marandaneto!
2.10.3
Immutable
release. Only release title and notes can be modified.
Patch changes
- 742e3d8 Add source location stacktrace frames for plain Logger messages. — Thanks @hpouillot!