Releases: binarybuilds/laritor-client
Releases · binarybuilds/laritor-client
v2.5.2
What's Changed
- add checked at timestamp to feature flags by @srinathreddydudi in #57
Full Changelog: v2.5.1...v2.5.2
v2.5.1
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
What's Changed
- test php8.5 support by @srinathreddydudi in #54
- added support for feature flags by @srinathreddydudi in #55
Full Changelog: v2.4.0...v2.5.0
v2.4.0
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
What's Changed
- capture additional user attributes by @srinathreddydudi in #51
Full Changelog: v2.3.10...v2.3.11
v2.3.10
What's Changed
- added support for pushing manual logs by @srinathreddydudi in #49
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
What's Changed
- fixed bug where certain jobs are recording unnecessary events by @srinathreddydudi in #48
Full Changelog: v2.3.8...v2.3.9
v2.3.8
What's Changed
- fixed bug with capturing postgres schema #45 by @srinathreddydudi in #47
Full Changelog: v2.3.7...v2.3.8
v2.3.7
What's Changed
- fixed minor bugs with ingestion by @srinathreddydudi in #46
Full Changelog: v2.3.6...v2.3.7
v2.3.6
What's Changed
- added whitelist for vendor packages to detect query path by @srinathreddydudi in #44
Full Changelog: v2.3.5...v2.3.6