Skip to content

Commit

Permalink
Merge pull request #412 from aerospike/v7.6.0
Browse files Browse the repository at this point in the history
V7.6.0
  • Loading branch information
robertglonek authored Sep 18, 2024
2 parents 01318f5 + d53f1e3 commit f9e7cf8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/send-mail.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions CHANGELOG/7.6.0.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
* WebUI: Add support for date-time-mask.

0 comments on commit f9e7cf8

Please sign in to comment.