Skip to content

Commit

Permalink
Release 1.8.2 - Hotfix bug with status mapping config (#411)
Browse files Browse the repository at this point in the history
* Update config.py

* 1.8.2
  • Loading branch information
ImDevinC committed Jan 6, 2024
1 parent 34ed128 commit 512a44e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 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.8.1"
__version__ = "v1.8.2"

# .env parse
dotenv_path = os.path.join(os.path.dirname(__file__), ".env")
Expand Down Expand Up @@ -276,6 +276,11 @@ def validate(self):
"type": "string",
"empty": False,
},
"status_mapping": {
"required": False,
"type": "list",
"empty": False,
}
},
},
"opsgenie": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ bases:

images:
- name: eb129/incident-bot
newTag: v1.8.1
newTag: v1.8.2

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.8.1
newTag: v1.8.2

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

0 comments on commit 512a44e

Please sign in to comment.