From 1d62c4ea10c0148963c6a0bff493781a6c11e62a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Apr 2026 10:12:55 +0000 Subject: [PATCH] chore: version packages --- .changeset/description-and-resolution.md | 10 ---------- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- 3 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 .changeset/description-and-resolution.md diff --git a/.changeset/description-and-resolution.md b/.changeset/description-and-resolution.md deleted file mode 100644 index 1643ba3..0000000 --- a/.changeset/description-and-resolution.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@iqai/alert-logger": minor ---- - -feat: add `description` option and fix resolution noise - -- Add `description` field to `AlertOptions` for separating short titles from detailed messages. When set, `description` is used as the embed body instead of the title. -- Allow `error()` and `critical()` to accept `(title, options)` without an intermediate `undefined` error param. -- Resolution notifications now only fire for sustained incidents (count > rampThreshold). One-off or sporadic alerts no longer produce "Resolved" messages. -- NestJS exception filter uses `{METHOD} {PATH}` as the alert title instead of the full error message. diff --git a/CHANGELOG.md b/CHANGELOG.md index e180bfa..616364b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.4.0 + +### Minor Changes + +- [#11](https://github.com/IQAIcom/alert-logger/pull/11) [`44f5ee8`](https://github.com/IQAIcom/alert-logger/commit/44f5ee8eec9cd2b622c857e4b438b8d407893d16) Thanks [@Royal-lobster](https://github.com/Royal-lobster)! - feat: add `description` option and fix resolution noise + + - Add `description` field to `AlertOptions` for separating short titles from detailed messages. When set, `description` is used as the embed body instead of the title. + - Allow `error()` and `critical()` to accept `(title, options)` without an intermediate `undefined` error param. + - Resolution notifications now only fire for sustained incidents (count > rampThreshold). One-off or sporadic alerts no longer produce "Resolved" messages. + - NestJS exception filter uses `{METHOD} {PATH}` as the alert title instead of the full error message. + ## 0.3.1 ### Patch Changes diff --git a/package.json b/package.json index da4fc99..7db437e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@iqai/alert-logger", - "version": "0.3.1", + "version": "0.4.0", "description": "Smart alert aggregation for any destination — Discord, Sentry, Slack, console, or your own adapter", "type": "module", "license": "MIT",