diff --git a/src/current/_includes/releases/v25.1/v25.1.0-alpha.3.md b/src/current/_includes/releases/v25.1/v25.1.0-alpha.3.md
index 21ebec3b3cd..1085fa6a2e6 100644
--- a/src/current/_includes/releases/v25.1/v25.1.0-alpha.3.md
+++ b/src/current/_includes/releases/v25.1/v25.1.0-alpha.3.md
@@ -6,14 +6,19 @@ Release Date: January 15, 2025
Backward-incompatible changes
-- Several metrics are redundant and have been removed. Below is a mapping from removed metrics to an existing, identical metric: ``` [REMOVED] sql.schema_changer.running ---- jobs.schema_change.currently_running [REMOVED] sql.schema_changer.successes ---- jobs.schema_change.resume_completed [REMOVED] sql.schema_changer.retry_errors ---- jobs.schema_change.resume_retry_error [REMOVED] sql.schema_changer.permanent_errors ---- jobs.schema_change.resume_failed ``` [#138786][#138786]
+- Several metrics are redundant and have been removed. Below is a list mapping from each removed metric to an existing, identical metric. [cockroachdb/cockroach#138786][#138786]
+ - Removed `sql.schema_changer.running` which is redundant with `jobs.schema_change.currently_running`
+ - Removed `sql.schema_changer.successes` which is redundant with `jobs.schema_change.resume_completed`
+ - Removed `sql.schema_changer.retry_errors` which is redundant with `jobs.schema_change.resume_retry_error`
+ - Removed `sql.schema_changer.permanent_errors` which is redundant with `jobs.schema_change.resume_failed`
General changes
-- When changefeeds are created with a resolved option lower than the min_checkpoint_frequency option, a notice is printed to inform the user, since this may lead to unexpected behavior. [#138181][#138181]
+- When changefeeds are created with a resolved option lower than the `min_checkpoint_frequency` option, a notice is printed to inform the user since this may lead to unexpected behavior. [#138181][#138181]
SQL language changes
+- [XXX](): YOU ARE HERE
- Users can always see and control (pause/resume/cancel) jobs which they own. [#138178][#138178]
- Provide different options for CREATE LOGICALLY REPLICATED TABLE. [#138244][#138244]
- CHANGEFEEDs using named external connections now automatically update their configuration when the connection configuration changes. [#138237][#138237]