From 45cb8ea553b22fcb83b40677c5af34eb49b76ccf Mon Sep 17 00:00:00 2001 From: Matti Schneider Date: Thu, 30 May 2024 13:52:22 +0200 Subject: [PATCH 1/2] Add missing negation in log --- src/reporter/github.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reporter/github.js b/src/reporter/github.js index 4537f97b7..449d5e472 100644 --- a/src/reporter/github.js +++ b/src/reporter/github.js @@ -49,7 +49,7 @@ export default class GitHub { return labels; } catch (error) { - logger.error(`🤖 Could get labels: ${error}`); + logger.error(`🤖 Could not get labels: ${error}`); } } From f694e7c2e5765b86c6576f37503d5781a7d43d06 Mon Sep 17 00:00:00 2001 From: Matti Schneider Date: Thu, 30 May 2024 13:52:27 +0200 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea5bd0b6b..cee85473d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All changes that impact users of this module are documented in this file, in the [Common Changelog](https://common-changelog.org) format with some additional specifications defined in the CONTRIBUTING file. This codebase adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased [patch] + +> Development of this release was supported by the [French Ministry for Foreign Affairs](https://www.diplomatie.gouv.fr/fr/politique-etrangere-de-la-france/diplomatie-numerique/) through its ministerial [State Startups incubator](https://beta.gouv.fr/startups/open-terms-archive.html) under the aegis of the Ambassador for Digital Affairs. + +### Changed + +- Corrected a missing negation in a Reporter error log + ## 2.0.0 - 2024-05-22 _Full changeset and discussions: [#1071](https://github.com/OpenTermsArchive/engine/pull/1071)._