Releases: PostHog/posthog-flutter
Releases · PostHog/posthog-flutter
4.9.0
- feat: add getter for current session identifier (#134)
4.8.0
- chore: change screenshots debouncing approach to throttling (#131)
- Added
throttleDelay
config and deprecated debouncerDelay
config.
4.7.1
- chore: do not send repeated snapshots (#126)
4.7.0
- chore: flutter session replay (Android and iOS) (#123)
4.6.0
- chore: change host to new address (#106)
- chore: allow manual initialization of the SDK (#117)
4.5.0
- add PrivacyInfo for macOS (#105)
4.4.1
- fix: const
defaultHost
was renamed to DEFAULT_HOST
and broke the Android build (#98)
4.4.0
- chore: Allow overriding the route filtering using a ctor param
routeFilter
(#95)
bool myRouteFilter(Route<dynamic>? route) =>
route is PageRoute || route is OverlayRoute;
final observer = PosthogObserver(routeFilter: myRouteFilter);