Skip to content

Commit cd00a11

Browse files
committed
v6.8.0 (2025-08-21)
1 parent e5b77bf commit cd00a11

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@ This project uses [**Break Versioning**](https://www.taoensso.com/break-versioni
22

33
---
44

5+
# `v6.8.0` (2025-08-21)
6+
7+
- **Main dependency**: [on Clojars](https://clojars.org/com.taoensso/timbre/versions/6.8.0)
8+
- **SLF4J provider**: [on Clojars](https://clojars.org/com.taoensso/timbre-slf4j/versions/6.8.0)
9+
- **Versioning**: [Break Versioning](https://www.taoensso.com/break-versioning)
10+
11+
This is a **feature release** that should be a non-breaking update.
12+
13+
## Since `v6.7.1` (2025-05-12)
14+
15+
- \[fix] `:trace` level JS console logging \[a193832d]
16+
- \[fix] [#398] Appenders should use post-middleware log level (@DerGuteMoritz) \[23f80297]
17+
- \[fix] [#396] Bring back accidentally removed sys out vars (@ferdinand-beyer) \[716b6042]
18+
- \[new] [#399] Add middleware to capture OpenTelemetry context (@devurandom) \[080acff2]
19+
20+
---
21+
522
# `v6.7.1` (2025-05-12)
623

724
This is a **hotfix release** for \[#396] `ClassCastException` when using a `println-appender` with `{:stream :std-out}`.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ There's **zero pressure** for existing users of Timbre to migrate, though there
2121

2222
## Latest release/s
2323

24-
- `2025-05-12` `v6.7.1`: [release info](../../releases/tag/v6.7.1)
24+
- `2025-08-21` `v6.8.0`: [release info](../../releases/tag/v6.8.0)
2525

2626
[![Clj tests][Clj tests SVG]][Clj tests URL]
2727
[![Cljs tests][Cljs tests SVG]][Cljs tests URL]
@@ -78,4 +78,4 @@ Licensed under [EPL 1.0](LICENSE.txt) (same as Clojure).
7878
[Cljs tests SVG]: https://github.com/taoensso/timbre/actions/workflows/cljs-tests.yml/badge.svg
7979
[Cljs tests URL]: https://github.com/taoensso/timbre/actions/workflows/cljs-tests.yml
8080
[Graal tests SVG]: https://github.com/taoensso/timbre/actions/workflows/graal-tests.yml/badge.svg
81-
[Graal tests URL]: https://github.com/taoensso/timbre/actions/workflows/graal-tests.yml
81+
[Graal tests URL]: https://github.com/taoensso/timbre/actions/workflows/graal-tests.yml

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/timbre "6.7.0"
1+
(defproject com.taoensso/timbre "6.8.0"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Pure Clojure/Script logging library"
44
:url "https://www.taoensso.com/timbre"

slf4j/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/timbre-slf4j "6.7.0"
1+
(defproject com.taoensso/timbre-slf4j "6.8.0"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Timbre backend/provider for SLF4J API v2"
44
:url "https://www.taoensso.com/timbre"
@@ -18,7 +18,7 @@
1818
{:dependencies
1919
[[org.clojure/clojure "1.12.1"]
2020
[org.slf4j/slf4j-api "2.0.17"]
21-
[com.taoensso/timbre "6.7.0"]]}
21+
[com.taoensso/timbre "6.8.0"]]}
2222

2323
:dev
2424
{:plugins

0 commit comments

Comments
 (0)