Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/components/upgrade-instructions/TrendzUpgradeSteps.astro
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ const java17Link =
)}

{versions.map((v) => {
const heading = v.patch
? `Upgrading Trendz Analytics to latest ${v.baseVersion} (${v.displayVersion})`
: `Upgrading Trendz Analytics to ${v.displayVersion}`;
const heading = `Upgrading Trendz Analytics to ${v.displayVersion}`;
const debPkg = `trendz-${v.version}.${pkgExt}`;
const dlUrl = `https://dist.thingsboard.io/${debPkg}`;
const wgetCmd = `wget ${dlUrl}`;
Expand Down
19 changes: 19 additions & 0 deletions src/content/_includes/docs/trendz/releases/v1-15-x.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## v1.15.2.1 (Jun 24, 2026)

**Improvements:**

- Added severity-based sorting for anomaly alarms.
- Added export functionality for anomaly view.
- Added sorting and improved pagination for the task executions list.

**Bug fixes:**

- Fixed two-factor authentication.
- Fixed "business entity not found" error for customers viewing tenant-built views.
- Fixed prediction model fit error.
- Fixed line chart tooltip rendering.
- Fixed group by amount for local dates.
- Fixed anomaly score sending for edge cases.

---

## v1.15.2 (May 15, 2026)

**New features:**
Expand Down
2 changes: 1 addition & 1 deletion src/data/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const PE_FULL_VER = '4.3.1.3PE';
export const PE_PKG_VER = PE_FULL_VER.toLowerCase();

/** Trendz Analytics */
export const TRENDZ_VER = '1.15.2';
export const TRENDZ_VER = '1.15.2.1';

/** Edge */
export const EDGE_VER = '4.3.1.1';
Expand Down
5 changes: 3 additions & 2 deletions src/models/trendz-releases-table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,12 @@ export const TRENDZ_RELEASE_FAMILIES: TrendzReleaseFamily[] = [
family: '1.15',
lts: true,
releaseDate: 'Jan 20 2026',
latestPatch: 'v1.15.2',
latestPatchDate: 'May 15 2026',
latestPatch: 'v1.15.2.1',
latestPatchDate: 'Jun 24 2026',
highlights: 'Bidirectional TB Sync, Anomaly Wizard',
tbVersion: '4.3',
patches: [
{ version: 'v1.15.2.1', date: 'Jun 24, 2026' },
{ version: 'v1.15.2', date: 'May 15, 2026' },
{ version: 'v1.15.1', date: 'Apr 15, 2026' },
{ version: 'v1.15.0.5', date: 'Feb 26, 2026' },
Expand Down
12 changes: 12 additions & 0 deletions src/models/trendz-upgrade-instructions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,18 @@ export function getTrendzFamilySlug(family: string): string {

/** All Trendz versions available for upgrade (newest first, non-vulnerable) */
export const TRENDZ_UPGRADE_VERSIONS: TrendzUpgradeVersion[] = [
{
version: '1.15.2.1',
displayVersion: '1.15.2.1',
family: '1.15',
baseVersion: '1.15.2',
releaseDate: 'Jun 24 2026',
lts: true,
patch: true,
anchor: 'v1-15-2-1',
// 1.15.x uses the new upgrade mechanism — no --fromVersion flag needed
haproxyNote: false,
},
{
version: '1.15.2',
displayVersion: '1.15.2',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ for (const v of familyVersions) {
headings.push({
depth: 2,
slug: v.anchor,
text: v.patch
? `Upgrading Trendz Analytics to latest ${v.baseVersion} (${v.displayVersion})`
: `Upgrading Trendz Analytics to ${v.displayVersion}`,
text: `Upgrading Trendz Analytics to ${v.displayVersion}`,
});
}

Expand Down