From 07099f17d670859846e59b9ecb83d948fe6f5754 Mon Sep 17 00:00:00 2001 From: Taus Date: Wed, 18 Feb 2026 16:51:03 +0000 Subject: [PATCH] Python: Add change note --- .../change-notes/2026-02-18-remove-points-to-from-metrics.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 python/ql/lib/change-notes/2026-02-18-remove-points-to-from-metrics.md diff --git a/python/ql/lib/change-notes/2026-02-18-remove-points-to-from-metrics.md b/python/ql/lib/change-notes/2026-02-18-remove-points-to-from-metrics.md new file mode 100644 index 00000000000..ed64206bd3b --- /dev/null +++ b/python/ql/lib/change-notes/2026-02-18-remove-points-to-from-metrics.md @@ -0,0 +1,5 @@ +--- +category: minorAnalysis +--- + +- The `Metrics` library no longer contains code that depends on the points-to analysis. The removed functionality has instead been moved to the `LegacyPointsTo` module, to classes like `ModuleMetricsWithPointsTo` etc. If you depend on any of these classes, you must now remember to import `LegacyPointsTo`, and use the appropriate types in order to use the points-to-based functionality.