diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..cedb40a1f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,65 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.8.0] - 2023-04-05 +### Added + +- Migrated repositories into Boxo + - github.com/ipfs/interface-go-ipfs-core => ./coreiface + - github.com/ipfs/go-pinning-service-http-client => ./pinning/remote/client + - github.com/ipfs/go-path => ./path + - github.com/ipfs/go-namesys => ./namesys + - github.com/ipfs/go-mfs => ./mfs + - github.com/ipfs/go-ipfs-provider => ./provider + - github.com/ipfs/go-ipfs-pinner => ./pinning/pinner + - github.com/ipfs/go-ipfs-keystore => ./keystore + - github.com/ipfs/go-filestore => ./filestore + - github.com/ipfs/go-ipns => ./ipns + - github.com/ipfs/go-blockservice => ./blockservice + - github.com/ipfs/go-ipfs-chunker => ./chunker + - github.com/ipfs/go-fetcher => ./fetcher + - github.com/ipfs/go-ipfs-blockstore => ./blockstore + - github.com/ipfs/go-ipfs-posinfo => ./filestore/posinfo + - github.com/ipfs/go-ipfs-util => ./util + - github.com/ipfs/go-ipfs-ds-help => ./datastore/dshelp + - github.com/ipfs/go-verifcid => ./verifcid + - github.com/ipfs/go-ipfs-exchange-offline => ./exchange/offline + - github.com/ipfs/go-ipfs-routing => ./routing + - github.com/ipfs/go-ipfs-exchange-interface => ./exchange + - github.com/ipfs/go-unixfs => ./ipld/unixfs + - github.com/ipfs/go-merkledag => ./ipld/merkledag + - github.com/ipld/go-car => ./ipld/car +- 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 + - Added a check to ensure the migration tool is only run in a Git repository (with an optional override flag) +- Added tracing and metrics to the refactored gateway for its IPFS backend + + +### Changed + +- Removed a mention of "bitswap" in blockservice debug logs +- 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) +- Remove a busyloop in blockservice getBlocks by removing batching when caching + +### Deprecated + +None + +### Removed + +None + +### Fixed + +- Ensure dag-cbor/json codecs are registered in the gateway handler +- Refactor the Gateway API to operate on higher level semantics +- Fixed a panic in the gateway handler when returning errors + +### Security + +None diff --git a/cmd/boxo-migrate/boxomigrate.go b/cmd/boxo-migrate/boxomigrate.go index 89adce9fa..94f82ab5e 100644 --- a/cmd/boxo-migrate/boxomigrate.go +++ b/cmd/boxo-migrate/boxomigrate.go @@ -102,7 +102,7 @@ check by adding the --force flag.`) } if !dryrun { - err := migrator.GoGet("github.com/ipfs/boxo@v0.8.0-rc3") + err := migrator.GoGet("github.com/ipfs/boxo@v0.8.0") if err != nil { return err } diff --git a/version.json b/version.json index 019b1210e..0ad79e3bf 100644 --- a/version.json +++ b/version.json @@ -1,3 +1,3 @@ { - "version": "v0.8.0-rc4" + "version": "v0.8.0" }