Releases: JuliaParallel/SlurmClusterManager.jl
Releases · JuliaParallel/SlurmClusterManager.jl
v1.0.0
SlurmClusterManager v1.0.0
Breaking changes
verbose
field removed fromSlurmManager
. The messages that were previously generated under this option are now logged using@debug
.
Merged pull requests:
- [BREAKING] Remove the
verbose
field, and use the Julia logging system instead (#23) (@DilumAluthge) - Test suite: Increase the timeout to 10 minutes; also, allow customizing the timeout with
JULIA_SLURMCLUSTERMANAGER_TEST_TIMEOUT_SECONDS
(#39) (@DilumAluthge)
v0.1.5
SlurmClusterManager v0.1.5
Merged pull requests:
- Test suite: Only run the
c1,c2
hostname test in CI (#29) (@DilumAluthge) - Print a
@warn
message if the user provides an unsupported kwarg (#40) (@DilumAluthge)
v0.1.4
SlurmClusterManager v0.1.4
Merged pull requests:
- By default, propagate
Base.active_project()
,Base.LOAD_PATH
, andBase.DEPOT_PATH
to the workers (but allow the user to override that behavior by specifyingJULIA_{PROJECT,LOAD_PATH,DEPOT_PATH}
inparams[:env]
) (#30) (@DilumAluthge) - Don't use bare
using Foo
(#36) (@DilumAluthge) - Test suite: Change some
println()
statements to@info
statements (#38) (@DilumAluthge)
Closed issues:
- addprocs does not activate workers in current project (#16)
v0.1.3
SlurmClusterManager v0.1.3
Merged pull requests:
- Add support for
params[:env]
(that is, theenv
kwarg to theaddprocs()
function) (#20) (@DilumAluthge) - CI: Update the Julia versions that are used in CI (#21) (@DilumAluthge)
- If an error is encountered, print the log message with
@error
(instead ofprintln
) (#24) (@DilumAluthge) - CI: Change
docker-compose
todocker compose
(#25) (@DilumAluthge) - CI: Multiple tweaks to the CI workflow file (#26) (@DilumAluthge)
- Add some more logging (#27) (@DilumAluthge)
- Test suite: Change
@assert
s to errors, and change bareusing Foo
tousing Foo: name, anothername, ...
(#28) (@DilumAluthge) - CI: In the Dockerfile, pin the full
sha256
digest in theFROM
line (#32) (@DilumAluthge) - switch to updated ghcr image (#33) (@kleinhenz)
- Put the entire test suite inside a top-level
@testset
(#34) (@DilumAluthge) - More test suite tweaks (#35) (@DilumAluthge)
Closed issues:
v0.1.2
SlurmClusterManager v0.1.2
Closed issues:
Merged pull requests:
- Pass cluster cookie to workers as std input rather than on command line (#8) (@mattwigway)