Skip to content

Commit c9b8b3e

Browse files
committed
v1.0.0-RC5 (2025-03-10) draft
1 parent d67fc4a commit c9b8b3e

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

CHANGELOG.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,20 @@ This project uses [**Break Versioning**](https://www.taoensso.com/break-versioni
22

33
---
44

5-
# `v1.0.0-RC4` (2025-03-03)
5+
# `v1.0.0-RC5` (2025-03-10)
66

77
## 📦 Dependencies
88

99
Available on Clojars:
1010

11-
1. [Telemere](https://clojars.org/com.taoensso/telemere/versions/1.0.0-RC4) - main dependency.
12-
2. [SLF4J provider](https://clojars.org/com.taoensso/telemere-slf4j/versions/1.0.0-RC4) - additional dependency for users that want their Java logging [to go to](https://github.com/taoensso/telemere/wiki/3-Config#java-logging) Telemere.
11+
1. [Telemere](https://clojars.org/com.taoensso/telemere/versions/1.0.0-RC5) - main dependency.
12+
2. [SLF4J provider](https://clojars.org/com.taoensso/telemere-slf4j/versions/1.0.0-RC5) - additional dependency for users that want their Java logging [to go to](https://github.com/taoensso/telemere/wiki/3-Config#java-logging) Telemere.
1313

1414
This project uses [Break Versioning](https://www.taoensso.com/break-versioning).
1515

1616
## Release notes
1717

18-
RC4 includes some minor fixes, minor usability improvements, and a few **breaking changes** (indicated by ➤) that should not affect most users.
19-
20-
If no unexpected issues come up, RC4 will become **v1 stable** in March 2025.
18+
RC5 includes **breaking changes** (indicated by ➤), apologies!
2119

2220
Big thanks to everyone that's been helping test and give feedback. And as always, please **report any unexpected problems** on [GitHub](https://github.com/taoensso/telemere/issues) or the [Slack channel](https://www.taoensso.com/telemere/slack) 🙏
2321

@@ -31,8 +29,11 @@ Thanks for the patience awaiting v1 final! I hope and believe that it'll have be
3129

3230
#### ➤ Changes to API since `v1.0.0-RC1`
3331

34-
Please read these carefully in case you might be affected:
32+
Please read carefully in case you may be affected:
3533

34+
***\[mod]** Rename `:rate-limit` -> `:limit` \[f37f54e] (**RC5**)
35+
***\[mod]** Rename `:sample-rate` -> `:sample` \[1f4b49a] (**RC5**)
36+
***\[mod]** Rename `:middleware` -> `:xfn` \[7cccf67] (**RC5**)
3637
***\[mod]** `log!`, `event!` now always return nil \[ac5feb4] (**RC4**)
3738
***\[mod]** Signal content: drop `:location`, add `:coords` \[fda22ce] (**RC3**)
3839
***\[mod]** Signal options: drop `:location`, add `:coords` \[1f99f71] (**RC3**)
@@ -43,6 +44,7 @@ Please read these carefully in case you might be affected:
4344

4445
#### Changes to default output since `v1.0.0-RC1`
4546

47+
***\[mod]** [#56] `utils/clean-signal-fn` exclude `:schema` by default \[c78eb07] (**RC5**)
4648
***\[mod]** [#52] `signal-preamble-fn` now ignores nil `:kind` (@marksto) \[634cc53] (**RC4**)
4749
* \[mod] Remove "- " msg separator from default [preamble](https://cljdoc.org/d/com.taoensso/telemere/CURRENT/api/taoensso.telemere.utils#signal-preamble-fn) output \[d61f6c2] (RC2)
4850
* \[mod] [Postal handler](https://cljdoc.org/d/com.taoensso/telemere/CURRENT/api/taoensso.telemere.postal#handler:postal) now uses default preamble fn for email subject \[706a8b6] (RC2)
@@ -82,6 +84,7 @@ Please read these carefully in case you might be affected:
8284

8385
#### Misc improvements
8486

87+
* **\[new]** [#57] File handling: make file stream more robust \[82f4c31] (**RC5**)
8588
* **\[new]** Add `log!?`, `event!?` \[ac5feb4] (**RC4**)
8689
* **\[new]** Alias `keep-callsite`, mention in `signal!` docs \[bfea515] (**RC4**)
8790
* **\[new]** Use [Truss](https://www.taoensso.com/truss) v2 and [contextual exceptions](https://cljdoc.org/d/com.taoensso/truss/CURRENT/api/taoensso.truss#ex-info) when relevant (**RC3**)
@@ -154,6 +157,9 @@ Please read these carefully in case you might be affected:
154157

155158
### Since `v1.0.0-RC1` (2024-10-29)
156159

160+
* **\[fix]** [#57] File handling: use nio API to create missing parent dirs \[af45ffc] (**RC5**)
161+
* **\[fix]** [#55] SLF4J signals should include `*ctx*` \[79173a6] (**RC5**)
162+
* **\[fix]** [#32] Fix clj-kondo warnings \[c60f33e] (**RC5**)
157163
* **\[fix]** [#52] `signal-preamble-fn` should use host info in signal (@marksto) \[410ed89] (**RC4**)
158164
* **\[fix]** Timbre shim: rename `spy!` -> `spy` (@lvh) \[3a9ffc6] (**RC3**)
159165
* **\[fix]** Timbre shim: don't attach empty `:vargs` data \[0e642ba] (**RC3**)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ See [here](../../wiki/1-Getting-started) for **full introduction** (concepts, te
2222

2323
## Latest release/s
2424

25-
- `2025-03-03` `v1.0.0-RC4`: [release info](../../releases/tag/v1.0.0-RC4)
25+
- `2025-03-10` `v1.0.0-RC5`: [release info](../../releases/tag/v1.0.0-RC5)
2626

2727
[![Main tests][Main tests SVG]][Main tests URL]
2828
[![Graal tests][Graal tests SVG]][Graal tests URL]

0 commit comments

Comments
 (0)