fix: fixes default for allowreauth (#239)

fixes #238
This commit is contained in:
Bill Church 2021-05-11 11:58:47 -04:00 committed by GitHub
parent 7b7e8e7533
commit dcfd81b454
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View file

@ -1,4 +1,7 @@
# Change Log # 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] ## 0.3.1-pre-release-0.0 [20200319]
### Added ### Added
- Safe Shutdown Feature - thanks to @edgarogh - Safe Shutdown Feature - thanks to @edgarogh

View file

@ -35,7 +35,7 @@
}, },
"options": { "options": {
"challengeButton": true, "challengeButton": true,
"allowreauth": true "allowreauth": false
}, },
"algorithms": { "algorithms": {
"kex": [ "kex": [

View file

@ -1,6 +1,6 @@
{ {
"name": "webssh2", "name": "webssh2",
"version": "0.3.1-pre-release-0.0", "version": "0.3.1-pre-release-0.1",
"ignore": [ "ignore": [
".gitignore" ".gitignore"
], ],