aboutsummaryrefslogtreecommitdiffstats
path: root/docs/ChangeLog/20251130
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ChangeLog/20251130')
-rw-r--r--docs/ChangeLog/20251130/PR25515.md3
-rw-r--r--docs/ChangeLog/20251130/PR25632.md4
2 files changed, 0 insertions, 7 deletions
diff --git a/docs/ChangeLog/20251130/PR25515.md b/docs/ChangeLog/20251130/PR25515.md
deleted file mode 100644
index ccc88e0c64..0000000000
--- a/docs/ChangeLog/20251130/PR25515.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Refactor debounce algorithm with static allocation [#25515](https://github.com/qmk/qmk_firmware/pull/25515)
-
-Removed dynamic memory allocation (malloc, free) from all debounce implementations for improved efficiency on embedded systems and to avoid runtime allocation overhead. Refactored state arrays to use direct indexing, simplifying code and eliminating pointer arithmetic. Standardized usage of MATRIX_ROWS_PER_HAND throughout the codebase to ensure consistent support for split keyboards.
diff --git a/docs/ChangeLog/20251130/PR25632.md b/docs/ChangeLog/20251130/PR25632.md
deleted file mode 100644
index 39136067b9..0000000000
--- a/docs/ChangeLog/20251130/PR25632.md
+++ /dev/null
@@ -1,4 +0,0 @@
-# Changes Requiring User Action
-## Debounce: Deprecate init and remove num_rows parameter [#25632](https://github.com/qmk/qmk_firmware/pull/25632)
-
-With dynamic memory allocation removed from all debounce implementations ([#25515](https://github.com/qmk/qmk_firmware/pull/25515)), the `num_rows` parameter has been removed from the `debounce_init()` and `debounce()` functions. The `MATRIX_ROWS_PER_HAND` is now used by default in every implementation.