From 6fbb5729507c58bc509dccff2dd63192306083fe Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 19 Jun 2026 13:27:34 +0200 Subject: [PATCH] Ruby: Get rid of the change note. --- ruby/ql/lib/change-notes/2026-06-19-rescue-exception-list.md | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 ruby/ql/lib/change-notes/2026-06-19-rescue-exception-list.md 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.