diff --git a/UPGRADE.md b/UPGRADE.md
index 9f80e82c56a..95570e82982 100644
--- a/UPGRADE.md
+++ b/UPGRADE.md
@@ -730,10 +730,20 @@ The following methods have been removed.
Relying on the default precision and scale of decimal columns provided by the DBAL is deprecated.
When declaring decimal columns, specify the precision and scale explicitly.
-## Marked `ColumnDiff::hasChanged()` as internal.
+## Marked `Comparator` methods as internal.
-The `ColumnDiff::hasChanged()` method has been marked as internal. Use one of the following `ColumnDiff` methods
-in order to check if a given column property has changed:
+The following `Comparator` methods have been marked as internal:
+
+- `columnsEqual()`,
+- `diffForeignKey()`,
+- `diffIndex()`.
+
+The `diffColumn()` method has been deprecated. Use `diffTable()` instead.
+
+## Deprecated `ColumnDiff::$changedProperties` and `::hasChanged()`.
+
+The `ColumnDiff::$changedProperties` property and the `hasChanged()` method have been deprecated. Use one of the
+following `ColumnDiff` methods in order to check if a given column property has changed:
- `hasTypeChanged()`,
- `hasLengthChanged()`,
diff --git a/psalm.xml.dist b/psalm.xml.dist
index f6e62d924bb..5db2e2b305d 100644
--- a/psalm.xml.dist
+++ b/psalm.xml.dist
@@ -39,8 +39,21 @@
See https://github.com/doctrine/dbal/pull/4317
-->
+
+
+
+
+
+
+
+
+