diff --git a/docs/changelogs/v0.15.md b/docs/changelogs/v0.15.md
index 0d4f0d116c6d301ba5b1a1cf83611e1800829d32..0972bc7304db09fc7fd1bbc57219a98ab53f2ec6 100644
--- a/docs/changelogs/v0.15.md
+++ b/docs/changelogs/v0.15.md
@@ -12,13 +12,14 @@ Below is an outline of all that is in this release, so you get a sense of all th
     - [🔦 Highlights](#-highlights)
       - [#️⃣ Blake 3 support](#️⃣-blake-3-support)
       - [💉 Fx Options plugin](#-fx-options-plugin)
+      - [📁 `$IPFS_PATH/gateway` file](#-ipfs_pathgateway-file)
     - [Changelog](#changelog)
     - [Contributors](#contributors)
 
 
 ### 🔦 Highlights
 
-This is a release mainly with bugfixing and library updates. 
+This is a release mainly with bugfixing and library updates.
 We are improving release speed and cadence trying to have a new release every 5 weeks.
 
 #### #️⃣ Blake 3 support
@@ -32,7 +33,7 @@ Because `blake3` is variable output hash function, you can use a different diges
 
 #### 💉 Fx Options plugin
 
-This adds a plugin interface that lets the plugin modify the fx options that are passed to fx when the app is initialized. 
+This adds a plugin interface that lets the plugin modify the fx options that are passed to fx when the app is initialized.
 This means plugins can inject their own implementations of Kubo interfaces.
 This enables granular customization of Kubo behavior by plugins, such as:
 
@@ -51,6 +52,17 @@ func (p *PinnerPlugin) Options(info core.FXNodeInfo) ([]fx.Option, error) {
 
 Extra plugin info [here](https://github.com/ipfs/kubo/blob/master/docs/plugins.md#fx-experimental).
 
+#### 📁 `$IPFS_PATH/gateway` file
+
+This adds a new file in the `IPFS_PATH` folder similar to `$IPFS_PATH/api` containing an address based on [`Addresses.Gateway`](https://github.com/ipfs/kubo/blob/master/docs/config.md#addressesgateway) configuration.
+
+This file is in URL (RFC1738) format.
+
+```console
+$ cat ~/.ipfs/gateway
+http://127.0.0.1:8080
+```
+
 ### Changelog
 
 <details>