mirror of https://github.com/status-im/timbre.git
Add CHANGELOG.md
This commit is contained in:
parent
f3c3fec2cc
commit
a5deb8ac2f
|
@ -0,0 +1,24 @@
|
|||
## v2.0.0 → v2.1.2
|
||||
* Added appenders: socket, IRC, MongoDB (CongoMongo). See [README](https://github.com/ptaoussanis/timbre#built-in-appenders) for details.
|
||||
* Add `ex-data` output to `stacktrace` fn.
|
||||
* Fixed a number of small bugs (mostly regressions from 1.x).
|
||||
|
||||
|
||||
## v1.6.0 → v2.0.0
|
||||
* Refactor for integration with tools.logging.
|
||||
* **BREAKING**: Drop Clojure 1.3 support.
|
||||
* **DEPRECATED**: `:max-messages-per-msecs` appender arg -> `:limit-per-msecs`.
|
||||
|
||||
* **BREAKING**: `:more` appender arg has been dropped. `:message` arg is now a string of all arguments as joined by `logp`/`logf`. Appenders that need unjoined logging arguments (i.e. raw arguments as given to `logp`/`logf`) should use the new `:log-args` vector.
|
||||
|
||||
* **BREAKING**: Stacktraces are no longer automatically generated at the `log`-macro level. Stacktraces are now left as an appender implementation detail. A `:throwable` appender argument has been added along with a `stacktrace` fn.
|
||||
|
||||
|
||||
## For older versions please see the [commit history][]
|
||||
|
||||
[commit history]: https://github.com/ptaoussanis/timbre/commits/master
|
||||
[API docs]: http://ptaoussanis.github.io/timbre
|
||||
[Taoensso libs]: https://www.taoensso.com/clojure-libraries
|
||||
[Nippy GitHub]: https://github.com/ptaoussanis/nippy
|
||||
[Nippy CHANGELOG]: https://github.com/ptaoussanis/carmine/blob/master/CHANGELOG.md
|
||||
[Nippy API docs]: http://ptaoussanis.github.io/nippy
|
|
@ -1,4 +1,4 @@
|
|||
**[API docs](http://ptaoussanis.github.io/timbre/)** | [contact & contributing](#contact--contributing) | [other Clojure libs](https://www.taoensso.com/clojure-libraries) | [Twitter](https://twitter.com/#!/ptaoussanis) | current [semantic](http://semver.org/) version:
|
||||
**[API docs](http://ptaoussanis.github.io/timbre/)** | **[CHANGELOG](https://github.com/ptaoussanis/timbre/blob/master/CHANGELOG.md)** | [contact & contributing](#contact--contributing) | [other Clojure libs](https://www.taoensso.com/clojure-libraries) | [Twitter](https://twitter.com/#!/ptaoussanis) | current [semantic](http://semver.org/) version:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/timbre "2.1.2"] ; See commit history for breaking changes since 1.x
|
||||
|
|
Loading…
Reference in New Issue