Skip to content

Commit d110d2a

Browse files
Merge pull request #2370 from sagarkumar-webkul/update/changelog
Update/changelog
2 parents 6477285 + 7b27606 commit d110d2a

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## **v2.1.5 (19 of Sep 2025)** - *Release*
2+
3+
* #2355[fixed] db_prefix support — installation and dashboard now function as expected
4+
15
## **v2.1.4 (16 of Sep 2025)** - *Release*
26

37
* #2355[fixed] Improved database setup compatibility—now supports longer table prefixes during installation.

packages/Webkul/Admin/src/Helpers/Reporting/Lead.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ public function getOverTimeStats($startDate, $endDate, $valueColumn, $dateColumn
360360
->select(
361361
DB::raw("$groupColumn AS date"),
362362
DB::raw('COUNT(DISTINCT id) AS count'),
363-
DB::raw("SUM(".\DB::getTablePrefix()."$valueColumn) AS total")
363+
DB::raw('SUM('.\DB::getTablePrefix()."$valueColumn) AS total")
364364
)
365365
->whereIn('lead_pipeline_stage_id', $this->stageIds)
366366
->whereBetween($dateColumn, [$startDate, $endDate])

packages/Webkul/Core/src/Core.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Core
1414
*
1515
* @var string
1616
*/
17-
const KRAYIN_VERSION = '2.1.4';
17+
const KRAYIN_VERSION = '2.1.5';
1818

1919
/**
2020
* Create a new instance.

0 commit comments

Comments
 (0)