Skip to content

Releases: appboypov/loglytics

v0.16.1

31 May 18:48

Choose a tag to compare

What's New

  • Added AnalyticsTypes.granted for notification permission granted events

This release adds support for tracking when users grant notification permissions, completing the set of notification-related analytics verbs.

View the full changelog for more details.

v0.16.0: New Analytics Verbs

29 May 22:47

Choose a tag to compare

✨ New Features

  • New Analytics Verbs: Added edited(), assigned(), and unassigned() methods to AnalyticsService
  • These new verbs enable better tracking for task management and assignment workflows

⚠️ Breaking Changes

  • Updated flutter_lints: Upgraded from 5.0.0 to 6.0.0 for improved code quality standards

🏗️ Package Improvements

  • Directory Structure: Renamed docs/ to doc/ following pub.dev conventions
  • Code Formatting: Applied dart format across all files
  • Dependencies: Updated to latest compatible versions

📦 Usage

The new analytics verbs can be used as follows:

// Track when a task is edited
analyticsService.edited(subject: 'cleaning_task', parameters: {'task_id': '123'});

// Track when a task is assigned to a user
analyticsService.assigned(subject: 'cleaning_task', parameters: {'assignee': 'user_id'});

// Track when a task assignment is removed
analyticsService.unassigned(subject: 'cleaning_task', parameters: {'task_id': '123'});

🔗 Links