Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 7.2.7 release #1098

Merged
merged 4 commits into from
Oct 1, 2024
Merged

Prepare for 7.2.7 release #1098

merged 4 commits into from
Oct 1, 2024

Commits on Sep 30, 2024

  1. Log the real reason for why posix_fadvise failed (valkey-io#430)

    `reclaimFilePageCache` did not set `errno` but `rdbSaveInternal` which
    is logging the error assumed it did. This makes sure `errno` is set.
    
    Signed-off-by: Ted Lyngmo <ted@lyncon.se>
    TedLyngmo authored and madolson committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    2be94e6 View commit details
    Browse the repository at this point in the history
  2. Fix missing replication link re-connection when primary's IP/port is …

    …updated in `clusterProcessGossipSection` (valkey-io#965)
    
    `clusterProcessGossipSection` currently doesn't trigger a check and call `replicationSetPrimary` when `myself`'s primary node’s IP/port is updated. This fix ensures that after every node address update, `replicationSetPrimary` is called if the updated node is `myself`'s primary. This prevents missed updates and ensures that replicas reconnect properly to maintain their replication link with the primary.
    
    Signed-off-by: Madelyn Olson <madelyneolson@gmail.com>
    enjoy-binbin authored and madolson committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    45ae39a View commit details
    Browse the repository at this point in the history
  3. Fix module RdbLoad wrongly disable the AOF (valkey-io#1001)

    In RdbLoad, we disable AOF before emptyData and rdbLoad to prevent copy-on-write issues. After rdbLoad completes, AOF should be re-enabled, but the code incorrectly checks server.aof_state, which has been reset to AOF_OFF in stopAppendOnly. This leads to AOF not being re-enabled after being disabled.
    ---------
    
    Signed-off-by: Binbin <binloveplay1314@qq.com>
    enjoy-binbin authored and madolson committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    6d03409 View commit details
    Browse the repository at this point in the history
  4. Prepare for 7.2.7 release without security fixes

    Signed-off-by: Madelyn Olson <madelyneolson@gmail.com>
    madolson committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    ef56d71 View commit details
    Browse the repository at this point in the history