diff --git a/.github/workflows/send-mail.yml b/.github/workflows/send-mail.yml index fea328c3..6a9f2917 100644 --- a/.github/workflows/send-mail.yml +++ b/.github/workflows/send-mail.yml @@ -14,8 +14,9 @@ jobs: uses: actions/checkout@v3 - name: "Patch release date" run: | - grep '_Release Date: Month Day, Year_' CHANGELOG/${{inputs.VERSION}}.md - if [ $? -eq 0 ] + RET=0 + grep '_Release Date: Month Day, Year_' CHANGELOG/${{inputs.VERSION}}.md || RET=1 + if [ $RET -eq 0 ] then NDATE=$(date "+%B %d, %Y") sed -i.bak "s/_Release Date: Month Day, Year_/_${NDATE}_/g" CHANGELOG/${{inputs.VERSION}}.md diff --git a/CHANGELOG/7.6.0.md b/CHANGELOG/7.6.0.md index ed8c7663..66d01606 100644 --- a/CHANGELOG/7.6.0.md +++ b/CHANGELOG/7.6.0.md @@ -1,13 +1,13 @@ # [v7.6.0](https://github.com/aerospike/aerolab/releases/tag/7.6.0) -_Release Date: Month Day, Year_ +_Release Date: September 16th, 2024_ **Release Notes:** * FIX: The commands `cluster list -i` and `client list -i` would sometimes print nodes in duplicates; this fixes the duplicate issue. * FIX: Patch `systemd-resolved` by default to use `1.1.1.1` and `8.8.8.8` DNS servers in cloud backends. * FIX: AMS client creation - reset terminal settings on successful completion prior to printing `done` messages. * FIX: AGI auto-inactivity-shutdown procedure on `amd64` instances. -* FIX: AGI when using `NoConfigOverride` with volumes, ensure the `ingest.yaml` also doesn't get overwritten. +* FIX: AGI when using `NoConfigOverride` with volumes, ensure the `ingest.yaml` also does not get overwritten. * FIX: Ubuntu in AWS/GCP: Disable unattended upgrades as they interfere with all automated processes. * FIX: Multiple small WebUI fixes. * FIX: AGI: handle files smaller than 4KiB. @@ -18,7 +18,7 @@ _Release Date: Month Day, Year_ * Add support for ubuntu 24.04 (default with aerospike 7.2). * Allow up to 24 char-long cluster and client names, from previous limit of 20, to support shortuuid. * AGI: Add new graphs and metrics. -* AGI: Add experimental feature `SingularSeriesExtend` in grafana plugin - if a series has only 1 datapoint, add predefined points one second before and after to force grafana to draw a line - so it's always visible at large zoom-out level. +* AGI: Add experimental feature `SingularSeriesExtend` in grafana plugin - if a series has only 1 datapoint, add predefined points one second before and after to force grafana to draw a line - so it is always visible at large zoom-out level. * This feature is enabled by default; it can be disabled by selecting "DISABLE" in the drop-down filters on the dashboards. * AGI: If timestamp is missing year, assume current year. * AGI: AWS: Create: Add option for creating AWS `route53` sub-domain entries automatically for each instance. @@ -46,7 +46,7 @@ _Release Date: Month Day, Year_ * AWS: Expiry System: cleanup unused SSH keys. * AWS: `template vacuum` also vacuum template temporary SSH keys. * CI: Update all dependencies: brew install actions, rpm package, golang version and Packages. -* CLI: Add theme support for all inventory listings with `--theme=box|frame|nocolor` 3 options; allow `--no-notes` to disable extra notes +* CLI: Add theme support for all inventory listings with `--theme=box|frame|nocolor` 3 options; allow `--no-notes` to disable extra notes. * Client: Add eks client - eksctl bootstrap system. * Client: Open ports 8998 and 8182 for Vector and Graph clients. * Client: Vector: add support for centos-stream-9 base. @@ -89,4 +89,4 @@ _Release Date: Month Day, Year_ * WebUI: Graceful exit: when SIGTERM or SIGINT is received by the main loop, it will send a SIGINT to the webserver subprocess. This will in turn wait for all queued jobs to finish before exiting. * If immediate exit is required, send SIGTERM to the child process (the one running with `--real` parameter), or cancel all queued and running jobs from the web interface. * WebUI: Add option to change page titles. -* WebUI: Add support for date-time-mask. \ No newline at end of file +* WebUI: Add support for date-time-mask.