From 5d1ecac569bb239ee616290a67473bed20ac4ca3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Poderoso?= <120394830+JesusPoderoso@users.noreply.github.com> Date: Tue, 14 May 2024 10:00:26 +0200 Subject: [PATCH] Consider library behavior changes as ABI breaks in the PR template checklist (#4775) Signed-off-by: JesusPoderoso --- .github/pull_request_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index f7e404e6d00..81ff1af1936 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -41,7 +41,7 @@ - [ ] Tests that thoroughly check the new feature have been added/Regression tests checking the bug and its fix have been added; the added tests pass locally - [ ] Any new/modified methods have been properly documented using Doxygen. - [ ] Any new configuration API has an equivalent XML API (with the corresponding XSD extension) -- [ ] Changes are ABI compatible. +- [ ] Changes are backport compatible: they do **NOT** break ABI nor change library core behavior. - [ ] Changes are API compatible. - [ ] New feature has been added to the `versions.md` file (if applicable). - [ ] New feature has been documented/Current behavior is correctly described in the documentation.