===== git log ====
commit 341c46c8a1ae030a81ea669721554760ba9efb3f
Author: Shwetha K Acharya <sacharya@redhat.com>
Date:   Tue Jan 11 17:51:15 2022 +0530

    Add GlusterFS 9.5 release notes
    
    Updates: #3098
    Signed-off-by: Shwetha K Acharya <sacharya@redhat.com>

commit 15ea3758adf8f20b43103cbbc943de560d591854
Author: Shwetha Acharya <sacharya@redhat.com>
Date:   Mon Jan 10 14:56:56 2022 +0530

    geo-rep: AttributeError: 'list' object has no attribute 'join' (#3101)
    
    Probelm:  prelude.join(' ') operation is performed to
              convert prelude(which of list data type) into a string.
    
              This is erraneous as we cannot perform join on a list:
    
              Traceback (most recent call last):
              File "/usr/libexec/glusterfs/python/syncdaemon/gsyncd.py", line 332, in main
              func(args)
              File "/usr/libexec/glusterfs/python/syncdaemon/subcmds.py", line 60, in subcmd_monitor
              return monitor.monitor(local, remote)
              File "/usr/libexec/glusterfs/python/syncdaemon/monitor.py", line 431, in monitor
              return Monitor().multiplex(*distribute(local, remote))
              File "/usr/libexec/glusterfs/python/syncdaemon/monitor.py", line 390, in distribute
              svol = Volinfo(slave.volume, "localhost", prelude, master=False)
              File "/usr/libexec/glusterfs/python/syncdaemon/syncdutils.py", line 921, in init
              via = '(via %s) ' % prelude.join(' ')
              AttributeError: 'list' object has no attribute 'join'
    
    Solution: we should perform ' '.join(prelude).
              This will serve the purpose of converting prelude
              into a string, and continue to support the
              existing logic.
    
              Added code change to support the same.
    
    Fixes: #2903
    Change-Id: I29c8523ad78a31e68ef473df7c579950664c5184
    Signed-off-by: Shwetha K Acharya <sacharya@redhat.com>

commit 424d4bd7afe1704c469e79b4572e929541349fca
Author: Xavi Hernandez <xhernandez@redhat.com>
Date:   Fri Jan 7 15:16:17 2022 +0100

    dht: fix rebalance of sparse files (#2324)

More commit messages for this ChangeLog can be found at
https://forge.gluster.org/glusterfs-core/glusterfs/commits/v9.5
