diff --git a/pages/advanced-algorithms/available-algorithms/gnn_link_prediction.mdx b/pages/advanced-algorithms/available-algorithms/gnn_link_prediction.mdx
index ff3d49be5..de7da321b 100644
--- a/pages/advanced-algorithms/available-algorithms/gnn_link_prediction.mdx
+++ b/pages/advanced-algorithms/available-algorithms/gnn_link_prediction.mdx
@@ -11,7 +11,7 @@ import GitHub from '/components/icons/GitHub'
# link_prediction with GNN
-This algorithm is not available in MAGE 1.14.
+This algorithm is not available in MAGE 1.14 and newer versions.
**Link prediction** can be defined as a problem where one wants to predict if
diff --git a/pages/advanced-algorithms/available-algorithms/gnn_node_classification.mdx b/pages/advanced-algorithms/available-algorithms/gnn_node_classification.mdx
index 4aff13b29..c0a95943c 100644
--- a/pages/advanced-algorithms/available-algorithms/gnn_node_classification.mdx
+++ b/pages/advanced-algorithms/available-algorithms/gnn_node_classification.mdx
@@ -11,7 +11,7 @@ import GitHub from '/components/icons/GitHub'
# node_classification with GNN
-This algorithm is not available in MAGE 1.14.
+This algorithm is not available in MAGE 1.14 and newer versions.
**Node classification** is the problem of finding out the **right label** for a
diff --git a/pages/advanced-algorithms/available-algorithms/text.mdx b/pages/advanced-algorithms/available-algorithms/text.mdx
index 7cb5f0c1a..b1f493eef 100644
--- a/pages/advanced-algorithms/available-algorithms/text.mdx
+++ b/pages/advanced-algorithms/available-algorithms/text.mdx
@@ -10,7 +10,7 @@ import GitHub from '/components/icons/GitHub'
# text
-This algorithm is not available in MAGE 1.14.
+This algorithm is not available in MAGE 1.14 and newer versions.
The `text` module offers a toolkit for manipulating strings.
diff --git a/pages/release-notes.mdx b/pages/release-notes.mdx
index 9f1e98d59..075a79c95 100644
--- a/pages/release-notes.mdx
+++ b/pages/release-notes.mdx
@@ -17,15 +17,37 @@ informed and prepared.
New releases might affect your existing code, queries or configuration.
Ensure they're updated to align with the latest updates and changes.
-### Unavailable algorithms in MAGE v1.14.0
+### Unavailable algorithms in MAGE v1.14.0 and newer versions
-The following algorithms are not avaliable in MAGE v1.14.0:
+The following algorithms are not avaliable in MAGE v1.14.0 and newer versions:
- [link_prediction with GNN](/advanced-algorithms/available-algorithms/gnn_link_prediction)
- [node_classification with GNN](/advanced-algorithms/available-algorithms/gnn_node_classification)
- [text](/advanced-algorithms/available-algorithms/text)
+### Upgrading to Memgraph v2.15.0
+
+
+
+Starting from Memgraph version 2.15.0, password hashing
+has been fortified with salt for improved security. Previously, passwords were
+hashed using SHA256 without salt. Please note that bcrypt, which is the default
+hashing algorithm, has always incorporated salt for enhanced security.
+
+- **Automatic Migration:** Passwords hashed without salt will be automatically
+ reverted to the saltless algorithm upon upgrade. Subsequent successful logins
+ trigger a rehashing process with salt, updating the data on disk.
+- **Seamless Transition:** Most users will experience a seamless transition
+ without any manual intervention. A user's first login post-upgrade triggers
+ the hash update.
+- **Migration Considerations:** Upon starting Memgraph version 2.15.0 for the
+first time, ensure that the `--password-encryption-algorithm` flag is correctly
+set to match the actual hashing algorithm used. This is crucial for maintaining
+authentication data integrity.
+
+
+
### Upgrading to Memgraph v2.13.0