Merge pull request #3479 from prometheus/cut-0.26-main

Cut 0.26 main
This commit is contained in:
Simon Pasquier 2023-08-24 09:32:03 +02:00 committed by GitHub
commit d7b4f0c732
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 9 deletions

View File

@ -1,4 +1,4 @@
## 0.26.0-rc.0 / 2023-08-17
## 0.26.0 / 2023-08-23
* [CHANGE] Telegram Integration: `api_url` is now optional. #2981
* [CHANGE] Telegram Integration: `ParseMode` default is now `HTML` instead of `MarkdownV2`. #2981
@ -25,6 +25,7 @@
* [BUGFIX] API: Fixed duplicate receiver names in the `api/v2/receivers` API endpoint. #3338
* [BUGFIX] API: Attempting to delete a silence now returns the correct status code, `404` instead of `500`. #3352
* [BUGFIX] Clustering: Fixes a panic when `tls_client_config` is empty. #3443
* [BUGFIX] Fix stored XSS via the /api/v1/alerts endpoint in the Alertmanager UI.
## 0.25.0 / 2022-12-22

View File

@ -1 +1 @@
0.26.0-rc.0
0.26.0

File diff suppressed because one or more lines are too long

View File

@ -45,8 +45,12 @@ titleView alert =
generatorUrlButton : String -> Html msg
generatorUrlButton url =
a
[ class "btn btn-outline-info border-0", href url ]
[ i [ class "fa fa-line-chart mr-2" ] []
, text "Source"
]
if String.startsWith "http://" url || String.startsWith "https://" url then
a
[ class "btn btn-outline-info border-0", href url ]
[ i [ class "fa fa-line-chart mr-2" ] []
, text "Source"
]
else
text ""