diff options
-rw-r--r-- | ChangeLog.md | 9 | ||||
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | mywatch.cabal | 2 |
3 files changed, 13 insertions, 3 deletions
diff --git a/ChangeLog.md b/ChangeLog.md index 175f475..89c9a70 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,12 @@ +0.3.0 +===== + + * Support Sproxy's end-point `/.sproxy/access` to find servers, available + to the current user, in one single HTTP request. This requires + Sproxy2 >= 1.95.0. Fallback to old multiple-request way if that + end-point returns error. + + 0.2.1 ===== @@ -69,8 +69,9 @@ Sproxy Configuration ==================== * To access the service allow `GET` for `/`, `/static/%` and `/serverlist.json`. -* To see processes on a particular MySQL server allow `GET` and `HEAD` for - `/server/:server/processlist.json`. +* To see processes on a particular MySQL server allow `GET` and (optional) + `HEAD` for `/server/:server/processlist.json`. The latter is only required with + Sproxy2 before version 1.95.0 * To kill processes allow `DELETE` for `/server/:server/process/%` diff --git a/mywatch.cabal b/mywatch.cabal index 3c4118e..8b1cc5f 100644 --- a/mywatch.cabal +++ b/mywatch.cabal @@ -1,5 +1,5 @@ name: mywatch -version: 0.2.1 +version: 0.3.0 synopsis: Web application to view and kill MySQL queries description: View and kill queries on multiple MySQL servers. |