mirror of
https://github.com/taoensso/telemere.git
synced 2026-01-23 14:59:01 +00:00
v1.0.0-beta5 (2024-04-29)
This commit is contained in:
parent
12f4b35d71
commit
a47d2db99e
4 changed files with 36 additions and 6 deletions
30
CHANGELOG.md
30
CHANGELOG.md
|
|
@ -2,6 +2,36 @@ This project uses [**Break Versioning**](https://www.taoensso.com/break-versioni
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
# `v1.0.0-beta5` (2024-04-29)
|
||||||
|
|
||||||
|
> **Dep/s**: [Telemere](https://clojars.org/com.taoensso/telemere/versions/1.0.0-beta5) and [Telemere SLF4J provider](https://clojars.org/com.taoensso/slf4j-telemere/versions/1.0.0-beta5) are on Clojars.
|
||||||
|
> **Versioning**: Telemere uses [Break Versioning](https://www.taoensso.com/break-versioning).
|
||||||
|
|
||||||
|
This is a **maintenance pre-release** intended to fix issues that have come up during the beta. See below for details, and please **report any unexpected problems** on [GitHub](https://github.com/taoensso/telemere/issues) or the [Slack channel](https://www.taoensso.com/telemere/slack), thank you! 🙏
|
||||||
|
|
||||||
|
\- Peter Taoussanis
|
||||||
|
|
||||||
|
## Changes since `v1.0.0-beta1`
|
||||||
|
|
||||||
|
* d0a15bac [mod] Don't auto add OpenTelemetry handler
|
||||||
|
* 6d545dfc [mod] Move (simplify) OpenTelemetry ns
|
||||||
|
* c4d9dd09 [mod] Don't include user-level kvs in default signal content handler
|
||||||
|
* d3c63e17 [mod] Rename `clojure.tools.logging` sys val
|
||||||
|
|
||||||
|
## Fixes since `v1.0.0-beta1`
|
||||||
|
|
||||||
|
* ffea1a30 [fix] Fix broken AOT support, add AOT tests
|
||||||
|
* e222297a [fix] SLF4J broken timestamps, add tests
|
||||||
|
|
||||||
|
## New since `v1.0.0-beta1`
|
||||||
|
|
||||||
|
* 2ba23ee7 [new] Add postal (email) handler
|
||||||
|
* Handlers will now drain their signal queues on shutdown (configurable)
|
||||||
|
* Rate limiter performance improvements (via Encore)
|
||||||
|
* Doc improvements based on questions that've come up on Slack, etc.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
# `v1.0.0-beta3` (2024-04-23)
|
# `v1.0.0-beta3` (2024-04-23)
|
||||||
|
|
||||||
> **Dep/s**: [Telemere](https://clojars.org/com.taoensso/telemere/versions/1.0.0-beta3) and [Telemere SLF4J provider](https://clojars.org/com.taoensso/slf4j-telemere/versions/1.0.0-beta3) are on Clojars.
|
> **Dep/s**: [Telemere](https://clojars.org/com.taoensso/telemere/versions/1.0.0-beta3) and [Telemere SLF4J provider](https://clojars.org/com.taoensso/slf4j-telemere/versions/1.0.0-beta3) are on Clojars.
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ It helps enable Clojure/Script systems that are **observable**, **robust**, and
|
||||||
|
|
||||||
## Latest release/s
|
## Latest release/s
|
||||||
|
|
||||||
- `v1.0.0-beta3`: [release info](../../releases/tag/v1.0.0-beta3)
|
- `v1.0.0-beta5`: [release info](../../releases/tag/v1.0.0-beta5)
|
||||||
|
|
||||||
[![Main tests][Main tests SVG]][Main tests URL]
|
[![Main tests][Main tests SVG]][Main tests URL]
|
||||||
[![Graal tests][Graal tests SVG]][Graal tests URL]
|
[![Graal tests][Graal tests SVG]][Graal tests URL]
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/telemere "1.0.0-beta3"
|
(defproject com.taoensso/telemere "1.0.0-beta5"
|
||||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||||
:description "Structured telemetry library for Clojure/Script"
|
:description "Structured telemetry library for Clojure/Script"
|
||||||
:url "https://www.taoensso.com/telemere"
|
:url "https://www.taoensso.com/telemere"
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
[[org.clojure/test.check "1.1.1"]
|
[[org.clojure/test.check "1.1.1"]
|
||||||
[org.clojure/tools.logging "1.3.0"]
|
[org.clojure/tools.logging "1.3.0"]
|
||||||
[org.slf4j/slf4j-api "2.0.13"]
|
[org.slf4j/slf4j-api "2.0.13"]
|
||||||
[com.taoensso/slf4j-telemere "1.0.0-beta3"]
|
[com.taoensso/slf4j-telemere "1.0.0-beta5"]
|
||||||
#_[org.slf4j/slf4j-simple "2.0.13"]
|
#_[org.slf4j/slf4j-simple "2.0.13"]
|
||||||
#_[org.slf4j/slf4j-nop "2.0.13"]
|
#_[org.slf4j/slf4j-nop "2.0.13"]
|
||||||
[com.draines/postal "2.0.5"]
|
[com.draines/postal "2.0.5"]
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/slf4j-telemere "1.0.0-beta3"
|
(defproject com.taoensso/slf4j-telemere "1.0.0-beta5"
|
||||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||||
:description "Telemere backend/provider for SLF4J API v2"
|
:description "Telemere backend/provider for SLF4J API v2"
|
||||||
:url "https://www.taoensso.com/telemere"
|
:url "https://www.taoensso.com/telemere"
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
{:dependencies
|
{:dependencies
|
||||||
[[org.clojure/clojure "1.11.3"]
|
[[org.clojure/clojure "1.11.3"]
|
||||||
[org.slf4j/slf4j-api "2.0.13"]
|
[org.slf4j/slf4j-api "2.0.13"]
|
||||||
[com.taoensso/telemere "1.0.0-beta3"]]}
|
[com.taoensso/telemere "1.0.0-beta5"]]}
|
||||||
|
|
||||||
:dev
|
:dev
|
||||||
{:plugins
|
{:plugins
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue