Skip to content

Commit

Permalink
v1.0.0-beta7 (2024-05-05)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed May 5, 2024
1 parent 21cb44e commit 19d447c
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 5 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,50 @@ This project uses [**Break Versioning**](https://www.taoensso.com/break-versioni

---

# `v1.0.0-beta7` (2024-05-05)

> **Dep/s**: [Telemere](https://clojars.org/com.taoensso/telemere/versions/1.0.0-beta7) and [Telemere SLF4J provider](https://clojars.org/com.taoensso/slf4j-telemere/versions/1.0.0-beta7) 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` (2024-04-19)

* 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
* 83914316 [mod] Simplify middleware - don't auto compose

## Fixes since `v1.0.0-beta1` (2024-04-19)

* ffea1a30 [fix] Fix broken AOT support, add AOT tests
* e222297a [fix] SLF4J broken timestamps, add tests

## New since `v1.0.0-beta1` (2024-04-19)

* 2ba23ee7 [new] Add postal (email) handler
* 49b6da2c [new] Add TCP, UDP socket handlers
* ebe8a957 [new] Add experimental `:thread` key to Clj signals
* 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.

## Everything since `v1.0.-beta5` (2024-04-29)

* 21cb44e7 [mod] Rename, refactor signal formatting utils
* 83914316 [mod] Simplify middleware - don't auto compose
* 8cc0a6db [fix] Broken postal handler subject
* 49b6da2c [new] Add TCP, UDP socket handlers
* ebe8a957 [new] Add experimental `:thread` key to Clj signals
* 1934ee76 [new] Add `:incl-kvs?` opt to edn and JSON formatters
* 9a514d1b [new] Add `:incl-thread?`, `:incl-kvs?` opts to `format-signal->str-fn`
* c5333faa [new] Add `:end-with-newline` opt to signal formatters

---

# `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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ It helps enable Clojure/Script systems that are **observable**, **robust**, and
## Latest release/s

- `v1.0.0-beta5`: [release info](../../releases/tag/v1.0.0-beta5)
- `v1.0.0-beta7`: [release info](../../releases/tag/v1.0.0-beta7)

[![Main tests][Main tests SVG]][Main tests URL]
[![Graal tests][Graal tests SVG]][Graal tests URL]
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso/telemere "1.0.0-beta5"
(defproject com.taoensso/telemere "1.0.0-beta7"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Structured telemetry library for Clojure/Script"
:url "https://www.taoensso.com/telemere"
Expand Down Expand Up @@ -45,7 +45,7 @@
[[org.clojure/test.check "1.1.1"]
[org.clojure/tools.logging "1.3.0"]
[org.slf4j/slf4j-api "2.0.13"]
[com.taoensso/slf4j-telemere "1.0.0-beta5"]
[com.taoensso/slf4j-telemere "1.0.0-beta7"]
#_[org.slf4j/slf4j-simple "2.0.13"]
#_[org.slf4j/slf4j-nop "2.0.13"]

Expand Down
4 changes: 2 additions & 2 deletions slf4j/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso/slf4j-telemere "1.0.0-beta5"
(defproject com.taoensso/slf4j-telemere "1.0.0-beta7"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Telemere backend/provider for SLF4J API v2"
:url "https://www.taoensso.com/telemere"
Expand All @@ -16,7 +16,7 @@
{:dependencies
[[org.clojure/clojure "1.11.3"]
[org.slf4j/slf4j-api "2.0.13"]
[com.taoensso/telemere "1.0.0-beta5"]]}
[com.taoensso/telemere "1.0.0-beta7"]]}

:dev
{:plugins
Expand Down

0 comments on commit 19d447c

Please sign in to comment.