pms-application-service 0.1.0.0 → 0.1.1.0
raw patch · 4 files changed
+8/−1 lines, 4 files
Files
- CHANGELOG.md +4/−0
- pms-application-service.cabal +1/−1
- src/PMS/Application/Service/App/Control.hs +1/−0
- src/PMS/Application/Service/DM/Type.hs +2/−0
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for pms-application-service +## 0.1.1.0 -- 2026-05-02++* Add agentAllowedCmds config to restrict agent-proc-run commands.+ ## 0.1.0.0 -- 2026-04-30 * Support timeout configuration.
pms-application-service.cabal view
@@ -20,7 +20,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.1.0.0+version: 0.1.1.0 -- A short (one-line) description of the package. synopsis: pms-application-service
src/PMS/Application/Service/App/Control.hs view
@@ -65,6 +65,7 @@ , DM._promptsDomainData = conf^.promptsConfigData , DM._invalidCharsDomainData = conf^.invalidCharsConfigData , DM._invalidCmdsDomainData = conf^.invalidCmdsConfigData+ , DM._allowedAgentCmdsDomainData = conf^.agentAllowedCmdsConfigData , DM._timeoutMicrosecDomainData = conf^.timeoutMicrosecConfigData }
src/PMS/Application/Service/DM/Type.hs view
@@ -49,6 +49,7 @@ , _promptsConfigData :: [String] , _invalidCharsConfigData :: [String] , _invalidCmdsConfigData :: [String]+ , _agentAllowedCmdsConfigData :: [String] , _timeoutMicrosecConfigData :: Int } deriving (Show, Read, Eq) @@ -93,6 +94,7 @@ , "rm", "mv", "dd", "chmod", "chown" , "reboot", "kill", "nc", "sudo", "su" ]+ , _agentAllowedCmdsConfigData = def -- deny all by default , _timeoutMicrosecConfigData = 30 * 1000 * 1000 }