@cryptotaxi247 / kubo / commits / 8c6aaa839

docs: changelog: add mention of gateway file to v0.15

Jorropo committed Aug 29, 2022 at 14:02 UTC 8c6aaa83934e7f8f41c29bde439faeb8e59c3165
1 file changed +14 -2
docs/changelogs/v0.15.md
+14 -2
@@ -12,13 +12,14 @@ Below is an outline of all that is in this release, so you get a sense of all th
12 - [🔦 Highlights](#-highlights)
13 - [#️⃣ Blake 3 support](#️⃣-blake-3-support)
14 - [💉 Fx Options plugin](#-fx-options-plugin)
15 + - [📁 `$IPFS_PATH/gateway` file](#-ipfs_pathgateway-file)
16 - [Changelog](#changelog)
17 - [Contributors](#contributors)
18
19
20 ### 🔦 Highlights
21
21 -This is a release mainly with bugfixing and library updates.
22 +This is a release mainly with bugfixing and library updates.
23 We are improving release speed and cadence trying to have a new release every 5 weeks.
24
25 #### #️⃣ Blake 3 support
@@ -32,7 +33,7 @@ Because `blake3` is variable output hash function, you can use a different diges
33
34 #### 💉 Fx Options plugin
35
35 -This adds a plugin interface that lets the plugin modify the fx options that are passed to fx when the app is initialized.
36 +This adds a plugin interface that lets the plugin modify the fx options that are passed to fx when the app is initialized.
37 This means plugins can inject their own implementations of Kubo interfaces.
38 This enables granular customization of Kubo behavior by plugins, such as:
39
@@ -51,6 +52,17 @@ func (p *PinnerPlugin) Options(info core.FXNodeInfo) ([]fx.Option, error) {
52
53 Extra plugin info [here](https://github.com/ipfs/kubo/blob/master/docs/plugins.md#fx-experimental).
54
55 +#### 📁 `$IPFS_PATH/gateway` file
56 +
57 +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.
58 +
59 +This file is in URL (RFC1738) format.
60 +
61 +```console
62 +$ cat ~/.ipfs/gateway
63 +http://127.0.0.1:8080
64 +```
65 +
66 ### Changelog
67
68 <details>