From 65f415b84125de83723375e2026168fc01ee0f58 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Thu, 2 Nov 2023 10:22:12 +0000 Subject: [PATCH 1/2] Release oncall Helm chart 1.3.50 --- helm/oncall/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/oncall/Chart.yaml b/helm/oncall/Chart.yaml index 776cf928..ed4d6ec6 100644 --- a/helm/oncall/Chart.yaml +++ b/helm/oncall/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: oncall description: Developer-friendly incident response with brilliant Slack integration type: application -version: 1.3.49 -appVersion: v1.3.49 +version: 1.3.50 +appVersion: v1.3.50 dependencies: - name: cert-manager version: v1.8.0 From c3d11b847f5ae2da033e347801c00875823725d1 Mon Sep 17 00:00:00 2001 From: Joey Orlando Date: Thu, 2 Nov 2023 07:14:44 -0400 Subject: [PATCH 2/2] [hotfix] frontend TypeError (#3252) --- CHANGELOG.md | 8 ++++++++ grafana-plugin/src/pages/incident/Incident.tsx | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f28fda2..19aab466 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +## v1.3.51 (2023-11-02) + +### Fixed + +- Address `TypeError` that occurs under some scenarios on the Alert Group detail page ([3252](https://github.com/grafana/oncall/pull/3252)) + ## v1.3.50 (2023-11-02) ### Fixed diff --git a/grafana-plugin/src/pages/incident/Incident.tsx b/grafana-plugin/src/pages/incident/Incident.tsx index cf50e337..4fe3f230 100644 --- a/grafana-plugin/src/pages/incident/Incident.tsx +++ b/grafana-plugin/src/pages/incident/Incident.tsx @@ -177,7 +177,7 @@ class IncidentPage extends React.Component
- {(!incident.resolved || incident.paged_users.length > 0) && ( + {(!incident.resolved || incident?.paged_users.length > 0) && (