Skip to content

Commit 17db35a

Browse files
authored
Merge pull request #770 from ipfs/release-v0.26.0
Release v0.26.0
2 parents a3da241 + 8d05ec4 commit 17db35a

File tree

2 files changed

+20
-9
lines changed

2 files changed

+20
-9
lines changed

CHANGELOG.md

+19-8
Original file line numberDiff line numberDiff line change
@@ -16,30 +16,41 @@ The following emojis are used to highlight certain changes:
1616

1717
### Added
1818

19+
### Changed
20+
21+
### Removed
22+
23+
### Fixed
24+
25+
### Security
26+
27+
28+
## [v0.26.0]
29+
30+
### Added
31+
1932
- `bitswap/client`: Improved timeout configuration for block requests
2033
- Exposed `DontHaveTimeoutConfig` to hold configuration values for `dontHaveTimeoutMgr` which controls how long to wait for requested block before emitting a synthetic DontHave response
2134
- Added `DefaultDontHaveTimeoutConfig()` to return a `DontHaveTimeoutConfig` populated with default values
2235
- Added optional `WithDontHaveTimeoutConfig` to allow passing a custom `DontHaveTimeoutConfig`
2336
- Setting `SetSendDontHaves(false)` works the same as before. Behind the scenes, it will disable `dontHaveTimeoutMgr` by passing a `nil` `onDontHaveTimeout` to `newDontHaveTimeoutMgr`.
2437

25-
2638
### Changed
2739

2840
- 🛠 `blockstore` and `blockservice`'s `WriteThrough()` option now takes an "enabled" parameter: `WriteThrough(enabled bool)`.
2941
- Replaced unmaintained mock time implementation uses in tests: [from](github.com/benbjohnson/clock) => [to](github.com/filecoin-project/go-clock)
30-
- upgrade to go-libp2p [v0.38.1](https://github.com/libp2p/go-libp2p/releases/tag/v0.38.1)
3142
- `bitswap/client`: if a libp2p connection has a context, use `context.AfterFunc` to cleanup the connection.
3243
- upgrade to `go-libp2p-kad-dht` [v0.28.1](https://github.com/libp2p/go-libp2p-kad-dht/releases/tag/v0.28.1)
33-
34-
35-
### Removed
36-
44+
- upgrade to `go-libp2p` [v0.38.1](https://github.com/libp2p/go-libp2p/releases/tag/v0.38.1)
45+
- blockstore/blockservice: change option to `WriteThrough(enabled bool)` [#749](https://github.com/ipfs/boxo/pull/749)
46+
- `mfs`: improve mfs republisher [#754](https://github.com/ipfs/boxo/pull/754)
3747

3848
### Fixed
3949

40-
* `mfs`: directory cache is now cleared on Flush(), liberating the memory used by the otherwise ever-growing cache. References to directories and sub-directories should be renewed after flushing.
50+
- `mfs`: directory cache is now cleared on Flush(), liberating the memory used by the otherwise ever-growing cache. References to directories and sub-directories should be renewed after flushing.
51+
- `bitswap/client`: Fix leak due to cid queue never getting cleaned up [#756](https://github.com/ipfs/boxo/pull/756)
52+
- `bitswap`: Drop stream references on Close/Reset [760](https://github.com/ipfs/boxo/pull/760)
4153

42-
### Security
4354

4455
## [v0.25.0]
4556

version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "v0.25.0"
2+
"version": "v0.26.0"
33
}

0 commit comments

Comments
 (0)