From 8c6aaa83934e7f8f41c29bde439faeb8e59c3165 Mon Sep 17 00:00:00 2001
From: Jorropo <jorropo.pgm@gmail.com>
Date: Mon, 29 Aug 2022 14:02:04 +0200
Subject: [PATCH] docs: changelog: add mention of gateway file to v0.15

---
 docs/changelogs/v0.15.md | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/docs/changelogs/v0.15.md b/docs/changelogs/v0.15.md
index 0d4f0d116..0972bc730 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>
-- 
GitLab