mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
Release v0.12.0
This commit is contained in:
parent
e365103fb5
commit
55503961cb
12
CHANGELOG.md
12
CHANGELOG.md
@ -4,8 +4,14 @@ All notable changes to Oragono will be documented in this file.
|
|||||||
This project adheres to [Semantic Versioning](http://semver.org/). For the purposes of versioning, we consider the "public API" to refer to the configuration files, CLI interface and database format.
|
This project adheres to [Semantic Versioning](http://semver.org/). For the purposes of versioning, we consider the "public API" to refer to the configuration files, CLI interface and database format.
|
||||||
|
|
||||||
|
|
||||||
## Unreleased
|
## [0.12.0] - 2018-10-15
|
||||||
New release of Oragono!
|
There's been a host of changes in the past six months, and this Halloween release has a number of very useful improvements.
|
||||||
|
|
||||||
|
For example, passwords are now hashed in a _much_ better way than we did it before (jlatt's original method back from [Ergonomadic](https://github.com/edmund-huber/ergonomadic) was the right way to do things), the database now auto-upgrades for you when it detects a new version, thanks to Slingamn we now have vhosts, and there's been a ton of rewrites under-the-hood to improve stability and performance.
|
||||||
|
|
||||||
|
If you have any trouble with this release, please let us know with an issue on our tracker, or by talking to us in `#oragono` on Freenode.
|
||||||
|
|
||||||
|
Thanks to [slingamn](https://github.com/slingamn) for a lot of heavy lifting this release and to [vilmibm](https://github.com/vilmibm) for contributing a documentation fix!
|
||||||
|
|
||||||
### Config Changes
|
### Config Changes
|
||||||
* `allow-multiple-per-connection` key removed from `accounts`.
|
* `allow-multiple-per-connection` key removed from `accounts`.
|
||||||
@ -17,6 +23,8 @@ New release of Oragono!
|
|||||||
* new oper capabilities `accreg`, `sajoin`, `vhosts` and `chanreg` added.
|
* new oper capabilities `accreg`, `sajoin`, `vhosts` and `chanreg` added.
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
* Password hashing has been improved (with current passwords being automatically upgraded to use the new method).
|
||||||
|
* Various crashes have been resolved.
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
* Added database auto-upgrades.
|
* Added database auto-upgrades.
|
||||||
|
@ -9,7 +9,7 @@ import "fmt"
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
// SemVer is the semantic version of Oragono.
|
// SemVer is the semantic version of Oragono.
|
||||||
SemVer = "0.12.0-unreleased"
|
SemVer = "0.12.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
Loading…
Reference in New Issue
Block a user