Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/v10-deployment-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: V10 - Build & Deploy Pipeline
on:
push:
branches: [ 'v10', 'release/v10**' ]
tags: [ 'v10.*' ]
tags: [ 'v10**' ]
pull_request:
branches: [ 'v10' ]

Expand Down
8 changes: 3 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# UTMStack 10.9.2 Release Notes
# UTMStack 10.9.3 Release Notes

- Added new Pacific time zones (New Zealand and Fiji) to the Date Settings section.
- Added TLS connection options and setup steps for secure Syslog integration
- Improved sorting of asset sources in tables, ensuring consistent and predictable order for names, IPs, and combined entries.
– Improved correlation rule handling for pfSense and SonicWall data sources to enhance detection accuracy and event normalization.
- Enriched the TIMEZONES constant to include additional IANA zones for broader coverage.
- Support for additional syslog framing methods (RFC 5424 octet counting).
18 changes: 16 additions & 2 deletions frontend/src/app/shared/constants/date-timezone-date.const.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import moment from 'moment-timezone';

export const DATE_SECTION_ID = 5;

export const DEFAULT_DATE_SETTING_TIMEZONE = 'UTC';
Expand All @@ -6,7 +8,19 @@ export const DEFAULT_DATE_SETTING_DATE = 'medium';
export const DATE_SETTING_TIMEZONE_SHORT = 'utmstack.time.zone';
export const DATE_SETTING_FORMAT_SHORT = 'utmstack.time.dateformat';

export const TIMEZONES: Array<{ label: string; timezone: string, zone: string }> = [
export const TIMEZONES: Array<{ label: string; timezone: string; zone: string }> =
moment.tz.names().map((tz) => {
const parts = tz.split('/');
const zone = parts[0] || 'Other';
const label = tz.replace(/_/g, ' ');
return {
label,
timezone: tz,
zone
};
});

/*export const TIMEZONES: Array<{ label: string; timezone: string, zone: string }> = [
{label: 'UTC', timezone: 'UTC', zone: 'UTC'},
{label: 'Eastern Standard Time (New York)', timezone: 'America/New_York', zone: 'America'},
{label: 'Pacific Standard Time (Los Angeles)', timezone: 'America/Los_Angeles', zone: 'America'},
Expand Down Expand Up @@ -38,7 +52,7 @@ export const TIMEZONES: Array<{ label: string; timezone: string, zone: string }>
{label: 'Jerusalem (IST)', timezone: 'Asia/Jerusalem', zone: 'Asia'},
{label: 'Buenos Aires (ART)', timezone: 'America/Argentina/Buenos_Aires', zone: 'America'},
{label: 'São Paulo (BRT)', timezone: 'America/Sao_Paulo', zone: 'America'},
];
];*/

export const DATE_FORMATS: Array<{ label: string; format: string; equivalentTo: string }> = [
{label: 'Short', format: 'short', equivalentTo: 'M/d/yy, h:mm a'},
Expand Down
2 changes: 1 addition & 1 deletion version.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 10.9.2
version: 10.9.3