diff --git a/ruby/ql/lib/change-notes/2026-06-19-rescue-exception-list.md b/ruby/ql/lib/change-notes/2026-06-19-rescue-exception-list.md deleted file mode 100644 index cc7770131ac..00000000000 --- a/ruby/ql/lib/change-notes/2026-06-19-rescue-exception-list.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: breaking ---- -* When a `rescue` clause has two or more exception types, the exceptions are no longer direct children of the `RescueClause` node. Instead, a new `ExceptionList` AST node wraps the exceptions. Use `RescueClause.getExceptions()` to get the `ExceptionList` node, and `ExceptionList.getException(int n)` to access the individual exceptions. For `rescue` clauses with zero or one exception, the behavior is unchanged and `RescueClause.getException(int n)` continues to work as before.