|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [Unreleased] |
| 9 | + |
| 10 | +## [0.8.0] - 2023-04-05 |
| 11 | +### Added |
| 12 | + |
| 13 | +- Migrated repositories into Boxo |
| 14 | + - github.com/ipfs/interface-go-ipfs-core => ./coreiface |
| 15 | + - github.com/ipfs/go-pinning-service-http-client => ./pinning/remote/client |
| 16 | + - github.com/ipfs/go-path => ./path |
| 17 | + - github.com/ipfs/go-namesys => ./namesys |
| 18 | + - github.com/ipfs/go-mfs => ./mfs |
| 19 | + - github.com/ipfs/go-ipfs-provider => ./provider |
| 20 | + - github.com/ipfs/go-ipfs-pinner => ./pinning/pinner |
| 21 | + - github.com/ipfs/go-ipfs-keystore => ./keystore |
| 22 | + - github.com/ipfs/go-filestore => ./filestore |
| 23 | + - github.com/ipfs/go-ipns => ./ipns |
| 24 | + - github.com/ipfs/go-blockservice => ./blockservice |
| 25 | + - github.com/ipfs/go-ipfs-chunker => ./chunker |
| 26 | + - github.com/ipfs/go-fetcher => ./fetcher |
| 27 | + - github.com/ipfs/go-ipfs-blockstore => ./blockstore |
| 28 | + - github.com/ipfs/go-ipfs-posinfo => ./filestore/posinfo |
| 29 | + - github.com/ipfs/go-ipfs-util => ./util |
| 30 | + - github.com/ipfs/go-ipfs-ds-help => ./datastore/dshelp |
| 31 | + - github.com/ipfs/go-verifcid => ./verifcid |
| 32 | + - github.com/ipfs/go-ipfs-exchange-offline => ./exchange/offline |
| 33 | + - github.com/ipfs/go-ipfs-routing => ./routing |
| 34 | + - github.com/ipfs/go-ipfs-exchange-interface => ./exchange |
| 35 | + - github.com/ipfs/go-unixfs => ./ipld/unixfs |
| 36 | + - github.com/ipfs/go-merkledag => ./ipld/merkledag |
| 37 | + - github.com/ipld/go-car => ./ipld/car |
| 38 | +- Added a migration tool to aid in migrating from the migrated repositories to Boxo, see the documentation here: https://github.com/ipfs/boxo/blob/main/README.md#migrating-to-boxo |
| 39 | + - Added a check to ensure the migration tool is only run in a Git repository (with an optional override flag) |
| 40 | +- Added tracing and metrics to the refactored gateway for its IPFS backend |
| 41 | + |
| 42 | + |
| 43 | +### Changed |
| 44 | + |
| 45 | +- Removed a mention of "bitswap" in blockservice debug logs |
| 46 | +- Changed the Bitswap message package from "bitswap.message.pb" to "bitswap.message.v1.pb" to avoid protobuf panics due to duplicate registration with [go-bitswap](https://github.com/ipfs/go-bitswap) |
| 47 | +- Remove a busyloop in blockservice getBlocks by removing batching when caching |
| 48 | + |
| 49 | +### Deprecated |
| 50 | + |
| 51 | +None |
| 52 | + |
| 53 | +### Removed |
| 54 | + |
| 55 | +None |
| 56 | + |
| 57 | +### Fixed |
| 58 | + |
| 59 | +- Ensure dag-cbor/json codecs are registered in the gateway handler |
| 60 | +- Refactor the Gateway API to operate on higher level semantics |
| 61 | +- Fixed a panic in the gateway handler when returning errors |
| 62 | + |
| 63 | +### Security |
| 64 | + |
| 65 | +None |
0 commit comments