diff --git a/ChangeLog.md b/ChangeLog.md index 3928b6e0..7d6c201d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,4 +1,7 @@ # Change Log +## 0.3.1-pre-release-0.1 [20210511] +### Changed +- `config.json.sample`: `allowreauth` now defaults to `false` fixes #238 ## 0.3.1-pre-release-0.0 [20200319] ### Added - Safe Shutdown Feature - thanks to @edgarogh diff --git a/app/config.json.sample b/app/config.json.sample index 17c456e8..72b85c6e 100644 --- a/app/config.json.sample +++ b/app/config.json.sample @@ -35,7 +35,7 @@ }, "options": { "challengeButton": true, - "allowreauth": true + "allowreauth": false }, "algorithms": { "kex": [ diff --git a/app/package.json b/app/package.json index 15945ffa..46ccb35a 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "webssh2", - "version": "0.3.1-pre-release-0.0", + "version": "0.3.1-pre-release-0.1", "ignore": [ ".gitignore" ],