Skip to content

Commit 2d85216

Browse files
committed
6.3.2
Signed-off-by: Rello <github@scherello.de>
1 parent 81f3a35 commit 2d85216

4 files changed

Lines changed: 9 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# Changelog
22

3-
## 6.3.2 - 2026-04-27
3+
## 6.3.2 - 2026-05-02
44
### Added
55
- UI for custom columns in the column picker.
66

77
### Fixed
8-
- Use the browser origin for the sidebar REST API link so data maintenance event setup does not abort on newer Nextcloud versions.
8+
- Seed new report cache versions to prevent stale browser cache hits.
9+
- Sidebar data load not responding.
910
- Render table values formatted as URLs or `Title (URL)` text as clickable links.
1011

1112
## 6.3.1 - 2026-04-10

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Connect data from different sources in one place and turn it into shareable insi
2626
- **AI Assistant**: Context Chat integration
2727
2828
]]></description>
29-
<version>6.3.1</version>
29+
<version>6.3.2</version>
3030
<licence>agpl</licence>
3131
<author>Marcel Scherello</author>
3232
<namespace>Analytics</namespace>

lib/Db/ReportMapper.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515

1616
class ReportMapper
1717
{
18+
private const INITIAL_VERSION_MIN = 10000;
19+
private const INITIAL_VERSION_MAX = 99999;
20+
1821
private $userId;
1922
private $l10n;
2023
private $db;
@@ -123,6 +126,7 @@ public function create($name, $subheader, $parent, $type, $dataset, $link, $visu
123126
'value' => $sql->createNamedParameter($value),
124127
'chart' => $sql->createNamedParameter($chart),
125128
'visualization' => $sql->createNamedParameter($visualization),
129+
'version' => $sql->createNamedParameter(random_int(self::INITIAL_VERSION_MIN, self::INITIAL_VERSION_MAX)),
126130
]);
127131
$sql->executeStatement();
128132
return (int)$sql->getLastInsertId();
@@ -473,4 +477,4 @@ private function truncate($string, $length, $dots = "...")
473477
{
474478
return (strlen($string) > $length) ? mb_strcut($string, 0, $length - strlen($dots)) . $dots : $string;
475479
}
476-
}
480+
}

phpunit.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)