Browse Source

added changelog

Fabian Peter Hammerle 3 years ago
parent
commit
d40bed016b
1 changed files with 43 additions and 0 deletions
  1. 43 0
      CHANGELOG.md

+ 43 - 0
CHANGELOG.md

@@ -0,0 +1,43 @@
+# 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.2.2] - 2020-09-24
+### Fixed
+- `entrypoint.sh`: restore support for empty `IPFS_SWARM_ADDRS` var
+
+## [0.2.1] - 2020-09-24
+### Fixed
+- switch from alpine to debian base image to support ipfs >= v0.6.0 (libc incompatibility)
+
+## [0.2.0] - 2019-06-01
+### Added
+- configure api address via env var `IPFS_API_ADDR`
+- `docker-compose.yml`
+
+### Changed
+- expose api on `0.0.0.0:5001/tcp` by default
+  (`-e IPFS_API_ADDR=default` keeps the previous setting `localhost:5001/tcp`)
+
+## [0.1.1] - 2019-04-21
+### Fixed
+- `entrypoint.sh`: fixed configuration of bootstrap nodes & swarm addresses
+  (failed when ipfs api was unavailable)
+
+## [0.1.0] - 2019-01-05
+### Added
+- go-ipfs daemon downloaded from https://dist.ipfs.io/go-ipfs/
+- configure daemon profile via env var `IPFS_INIT_PROFILE`
+- configure swarm listener addresses via env var `IPFS_SWARM_ADDRS`
+- add bootstrap nodes via env var `IPFS_BOOTSTRAP_ADD`
+
+[Unreleased]: https://github.com/fphammerle/docker-ipfs/compare/0.2.2...HEAD
+[0.2.2]: https://github.com/fphammerle/docker-ipfs/compare/0.2.1...0.2.2
+[0.2.1]: https://github.com/fphammerle/docker-ipfs/compare/0.2.0...0.2.1
+[0.2.0]: https://github.com/fphammerle/docker-ipfs/compare/0.1.1...0.2.0
+[0.1.1]: https://github.com/fphammerle/docker-ipfs/compare/0.1.0...0.1.1
+[0.1.0]: https://github.com/fphammerle/docker-ipfs/tree/0.1.0