Skip to content

Releases: binarybuilds/laritor-client

v2.5.2

13 Jan 04:35
efb9557

Choose a tag to compare

What's Changed

Full Changelog: v2.5.1...v2.5.2

v2.5.1

11 Jan 06:45
3ea83d0

Choose a tag to compare

What's Changed

  • fixed bug with feature flags where certain flags are not being recorded by @srinathreddydudi in #56

Full Changelog: v2.5.0...v2.5.1

v2.5.0

11 Jan 05:30
7072727

Choose a tag to compare

What's Changed

Full Changelog: v2.4.0...v2.5.0

v2.4.0

07 Jan 04:21
01a902f

Choose a tag to compare

What's Changed

  • added artisan commands to publish custom data redactor and filter classes by @srinathreddydudi in #52
  • throwing error when running sync command if laritor env variables are not added by @srinathreddydudi in #53

Full Changelog: v2.3.11...v2.4.0

v2.3.11

06 Jan 00:22
e2c02b8

Choose a tag to compare

What's Changed

Full Changelog: v2.3.10...v2.3.11

v2.3.10

25 Oct 04:37
8417d2c

Choose a tag to compare

What's Changed

Full Changelog: v2.3.9...v2.3.10

Example Usage

$logs = [
    [
        'level' => 'INFO', // allowed values: DEBUG, NOTICE, INFO, WARNING, ERROR, ALERT, CRITICAL, EMERGENCY
        'message' => 'custom log 1',
        'type' => 'custom logs',
        'written_at' => \Carbon\Carbon::parse('2025-10-24 12:55:55'),
        'context' => [
            'user_id' => 1,
            'account_id' => 2
        ]
    ],
    [
        'level' => 'WARNING',
        'message' => 'custom log 2',
        'type' => 'custom logs',
        'written_at' => \Carbon\Carbon::parse('2025-10-24 12:55:55'),
        'context' => [
            'user_id' => 1,
            'account_id' => 2
        ]
    ]
];

$laritor = new \BinaryBuilds\LaritorClient\Laritor();

foreach ($logs as $log) {
    $laritor->addCustomLog(
        $log['type'],
        $log['level'],
        $log['message'],
        $log['context'],
        $log['written_at']
    );
}

$laritor->sendEvents();

v2.3.9

04 Oct 05:22
a870d95

Choose a tag to compare

What's Changed

Full Changelog: v2.3.8...v2.3.9

v2.3.8

04 Oct 04:44
152017a

Choose a tag to compare

What's Changed

Full Changelog: v2.3.7...v2.3.8

v2.3.7

04 Oct 03:48
c2f4da7

Choose a tag to compare

What's Changed

Full Changelog: v2.3.6...v2.3.7

v2.3.6

26 Sep 02:43
f94cfc9

Choose a tag to compare

What's Changed

Full Changelog: v2.3.5...v2.3.6