Paul,
I'm working on getting that into the next release v2.6.4, which should
be available within days. To wait for all job array elements to
complete, you would just specify the primary job id. You can also
specify individual array elements. For example:
# wait for specific elements of job array
sbatch --depend=123_4 ...
sbatch --depend=after:123_4:123_5 ...
# wait all elements of job array
sbatch --depend=after:123 ...