From 6f82d77995476b0d85722539230a50a321706ead Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Fri, 9 Jun 2023 12:15:43 +0200 Subject: [PATCH] chore: v0.10.0 (#345) --- CHANGELOG.md | 32 +++++++++++++++++++++++++++++++- version.json | 2 +- 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dfa7101bd..5329c317b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,18 +14,48 @@ The following emojis are used to highlight certain changes: ## [Unreleased] -* ✨ The gateway now supports partial CAR exports via query parameters from [IPIP-402](https://github.com/ipfs/specs/pull/402). +### Added + +### Changed + +### Removed + +### Fixed + +### Security + +## [0.10.0] - 2023-06-09 ### Added +* ✨ The gateway now supports partial CAR exports via query parameters from [IPIP-402](https://github.com/ipfs/specs/pull/402). + ### Changed +* 🛠 A few trivial breaking changes have been done to the gateway: + * The signature of `IPFSBackend.GetCAR` has been adapted to support [IPIP-402](https://github.com/ipfs/specs/pull/402) CAR Parameters. + * A few variables have been renamed for consistency: + * `WithHostname` -> `NewHostnameHandler` + * `Specification` -> `PublicGateway` + * `NewErrorResponse` -> `NewErrorStatusCode` + * `NewErrorResponseForCode` -> `NewErrorStatusCodeFromStatus` + * `BlocksGateway` -> `BlocksBackend` + * `BlocksGatewayOption` -> `BlocksBackendOption` + * `NewBlocksGateway` -> `NewBlocksBackend` + * Some functions that are not supposed to be outside of the package were removed: `ServeContent`. + ### Removed +None. + ### Fixed +None. + ### Security +None. + ## [0.9.0] - 2023-06-08 ### Added diff --git a/version.json b/version.json index 960b84e55..3b600f34a 100644 --- a/version.json +++ b/version.json @@ -1,3 +1,3 @@ { - "version": "v0.9.0" + "version": "v0.10.0" }