Releases: fonimus/ssh-shell-spring-boot
Releases · fonimus/ssh-shell-spring-boot
Release 1.6.0
🚀 Features
- #152 - Added the command tasks-single to launch a single execution of a scheduled task
⬆️ Dependencies
Release 1.5.7
- Bump to spring boot 2.4.5
- Remove warn log at spring context stop
Release 1.5.6
- Add
Next execution
column intask-list
table
Release 1.5.5
- Fix potential circular dependency for
Windows
users - Fix classpath resource inside jar for authorized public keys file by using temporary file (ssh external library only accept files)
Release 1.5.4
authorizedPublicKeysFile
becomesauthorizedPublicKeys
and is now a spring resource ; you can now use :ssh.shell.authorized-public-keys=<spring-resource-path>
(file:<path>
,classpath:<path>
, etc)ssh.shell.authorized-public-keys-file=<file-path>
Release 1.5.3
- Rewrite script command to be usable in background with result file (options added to default command)
- Add
StoppableInteractiveInput
to be able to stop the interactive mode with specific condition
Release 1.5.2
- Add option to create group commands
ssh.shell.commands.<command>.create
, which is true by default.
Setting a group command create property to false :- won't create the associated commands in spring context
- won't display the associated commands in help
- the associated commands won't be accessible in shell
Release 1.5.1
- Add option for path (groups, components, etc) in health endpoint
Release 1.5.0
- Add tasks commands :
tasks-list
tasks-stop
tasks-restart
- Rename commands :
system-env
instead of jvm-envsystem-properties
instead of jvm-propertiessystem-threads
instead of threads
Release 1.4.2
- Rework commands properties to add the following :
includes
: to only include list of sub commands inside group (example:datasource-update
in group
datasource)excludes
: to excludes some sub commands inside group (example:datasource-update
in group datasource)