Skip to content

Commit

Permalink
v6.0.0 2022-10-28
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Oct 28, 2022
1 parent 4b6e1c4 commit 2aa575d
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 5 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v6.0.0 / 2022 Oct 28

```clojure
[com.taoensso/timbre "6.0.0"]
```

> This is a **major feature release**. Changes may be BREAKING for some users, see relevant commits referenced below for details.
> Please test before use in production and report any problems, thanks!
> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for recommended steps when updating any Clojure/Script dependencies.
### Changes since `v5.2.1`

- 1c9fbb4f [mod] [BREAKING] [#322 #353] Reorganise community appenders
- 12457d9e [mod] [BREAKING] Default (nil) :min-level changed from `:report` -> `:trace`
- 65c3b473 [mod] [DEPRECATED] `:msg_` is now undocumented
- 98deeb73 [mod] [DEPRECATE] `set-level!` -> `set-min-level!`, `with-level` -> `with-min-level`
- 597c7a06 [mod] [#356] Call `pr-str` on non-string arguments
- 844943eb [mod] [#355 #339] Improve formatting of errors in Cljs (@aiba @DerGuteMoritz)
- 18bf001e [nop] Update core dependencies
- e5851f77 [nop] Update community dependencies
- [nop] Misc refactoring, incl. documentation improvements

### New since `v5.2.1`

- 2823c471 [new] [#332] Add ability to load initial Timbre config from edn system value or resource
- 9085a416 [new] [#328] Add new utils: `set-min-level!`, `set-ns-min-level!`, etc.
- 841a064a [new] [#356] Add `:msg-fn` option to `default-output-fn`
- 39a5e5a0 [new] [#317] Add `:output-error-fn` option to `default-output-fn`
- 6af3eda0 [new] [#217] Add alpha `shutdown-appenders!` util and hook
- 1024373b [new] [#354] Make `callsite-id` in `log!` macro deterministic for Clojure (@DerGuteMoritz)
- baaf1387 [new] Add `:output-opts` support to top-level and appender config
- 8d1b3a6e [new] Wrap output and msg fns for better error messages


## v5.2.1 / 2022 Mar 22

```clojure
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
**[CHANGELOG][]** | [API][] | current [Break Version][]:

```clojure
[com.taoensso/timbre "5.2.1"] ; See CHANGELOG for details
[com.taoensso/timbre "6.0.0"] ; May incl. breaking changes, see CHANGELOG for details
[com.taoensso/timbre "5.2.1"] ; Stable
```
> See [here][backers] if to help support my open-source work, thanks! - [Peter Taoussanis][Taoensso.com]
Expand Down Expand Up @@ -34,8 +35,8 @@ Happy hacking!
Add the necessary dependency to your project:

```clojure
Leiningen: [com.taoensso/timbre "5.2.1"] ; or
deps.edn: com.taoensso/timbre {:mvn/version "5.2.1"}
Leiningen: [com.taoensso/timbre "6.0.0"] ; or
deps.edn: com.taoensso/timbre {:mvn/version "6.0.0"}
```

And setup your namespace imports:
Expand Down Expand Up @@ -264,4 +265,4 @@ Copyright © 2015-2022 [Peter Taoussanis][Taoensso.com].
[ClojureWerkz-logo]: https://raw.github.com/clojurewerkz/clojurewerkz.org/master/assets/images/logos/clojurewerkz_long_h_50.png
[ClojureWerkz]: http://clojurewerkz.org/
[config API]: http://ptaoussanis.github.io/timbre/taoensso.timbre.html#var-*config*
[default config]: http://ptaoussanis.github.io/timbre/taoensso.timbre.html#var-default-config
[default config]: http://ptaoussanis.github.io/timbre/taoensso.timbre.html#var-default-config
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso/timbre "5.2.1"
(defproject com.taoensso/timbre "6.0.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Pure Clojure/Script logging library"
:url "https://github.com/ptaoussanis/timbre"
Expand Down

0 comments on commit 2aa575d

Please sign in to comment.