Skip to content

Commit

Permalink
Release v1.10.7 - Incident resolve bugfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
echoboomer committed May 16, 2024
1 parent 07b7cca commit cd4baef
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions backend/bot/incident/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,9 @@ async def set_status(

# Generate postmortem template and create postmortem if enabled
# Get normalized description as postmortem title
if "atlassian" in config.active.integrations:
if ("atlassian" in config.active.integrations) and (
"confluence" in config.active.integrations.get("atlassian")
):
if (
config.active.integrations.get("atlassian")
.get("confluence")
Expand All @@ -417,7 +419,6 @@ async def set_status(
from bot.confluence.postmortem import IncidentPostmortem

postmortem_title = f"{datetime.today().strftime('%Y-%m-%d')} - {incident_data.incident_id}"

postmortem = IncidentPostmortem(
incident_id=incident_data.incident_id,
postmortem_title=postmortem_title,
Expand Down
2 changes: 1 addition & 1 deletion backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from iblog import logger, log_level
from typing import Dict, List

__version__ = "v1.10.6"
__version__ = "v1.10.7"

# .env parse
dotenv_path = os.path.join(os.path.dirname(__file__), ".env")
Expand Down
4 changes: 2 additions & 2 deletions deploy/charts/incident-bot/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.10.6
version: 1.10.7

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: '1.10.6'
appVersion: '1.10.7'
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ bases:

images:
- name: eb129/incident-bot
newTag: v1.10.6
newTag: v1.10.7

configMapGenerator:
- name: incident-bot-config
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/overlays/production/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ bases:

images:
- name: eb129/incident-bot-docs
newTag: v1.10.6
newTag: v1.10.7

generatorOptions:
disableNameSuffixHash: true
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.10.6
v1.10.7

0 comments on commit cd4baef

Please sign in to comment.