diff --git a/CHANGELOG.md b/CHANGELOG.md index 6611064eecda7bd82a09e63691dcdf5acbb07d08..e31ed88b2400ec7386d4cd3070a0009b168275ea 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 a32983e27dab38a414af19b8be3ac7fb71b47641..506e9d0aaa1e78359b09af18e86ebfda5082f1e2 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." ''