From c8cf9782e36d5e3461c36ca23e201e6dac9f757a Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Fri, 21 Jun 2024 17:26:55 +0200
Subject: [PATCH] chore: update changelog + mattermost info call

---
 CHANGELOG.md           | 18 +++++-------------
 nix/scripts/deploy.nix |  7 ++++++-
 2 files changed, 11 insertions(+), 14 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6611064ee..e31ed88b2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,35 +1,27 @@
 # Changelog
 
-
-
 ## [3.67.0] - 2024-06-22
 
 ### Add Features
 
-- new options to define the markers that are used for the label template. [#203](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/203) See merge request oss/libraries/javascript/monster[!53](https://gitlab.schukai.com/oss/libraries/javascript/monster/merge_requests/53)
 - new options to define the markers that are used for the label template [#203](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/203)
 
-## 2024-06-22
-- new options to define the markers that are used for the label template  [#203](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/203)
-
 ## [3.66.0] - 2024-06-21
 
 ### Add Features
 
 - new flag feature.useStrictValueComparison [#206](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/206)
 - new flag features.storeFetchedData and function Select::getLastFetchedData [#204](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/204)
+
 ### Bug Fixes
 
-- [#200](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/200)
-- [#200](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/200) changes
-- [#201](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/201)
-- slight color adjustments
+- Reloading options in a select does not work [#200](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/200)
+
 ### Changes
 
 - tidy project files
-- [#200](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/200) move to close
-- [#200](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/200) move to close
-
+- call Button use findElementWithSelectorUpwards [#201](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/201)
+- slight color adjustments
 
 
 ## [3.65.21] - 2024-06-20
diff --git a/nix/scripts/deploy.nix b/nix/scripts/deploy.nix
index a32983e27..506e9d0aa 100644
--- a/nix/scripts/deploy.nix
+++ b/nix/scripts/deploy.nix
@@ -21,6 +21,8 @@ in
     then
       if [ -f .npmrc ] ; then rm .npmrc ; fi
       echo_fail "Failed to publish the project."
+      ${pkgs'.curl}/bin/curl --header "Content-Type: application/json" --request POST \
+                --data '{"text":"Failed to publish: '$(echo $publishingResult | jq .name)' '$(echo $publishingResult | jq .version)'"}' $MATTERMOST_WEBHOOK
       exit 1
     fi
 
@@ -31,6 +33,9 @@ in
     echo_hint "Version $(echo $publishingResult | jq .version)"
     echo_hint "SHA Sum: $(echo $publishingResult | jq .shasum)"
     echo_hint "Files: $(echo $publishingResult | jq .entryCount)"
-
+    
+    ${pkgs'.curl}/bin/curl --header "Content-Type: application/json" --request POST \
+              --data '{"text":"Deployed: '$(echo $publishingResult | jq .name)' '$(echo $publishingResult | jq .version)'"}' $MATTERMOST_WEBHOOK
+    
     echo_ok "Build and publish successful."
   ''
-- 
GitLab