diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..9edc2078 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,27 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) + +## [Unreleased] + +## [0.2.0] - 2022-03-30 +### Changed +* Update dependencies +* Update internal Piping Server to 1.12.0 +* Reject all requests before config loaded +* Allow --enable-https not only --enable-https=true +* (Docker) Upgrade Docker base image to node:16.14.2-alpine +* Improve HTTPS serving error messages + +### Add +* (Docker) Support multi-platform Docker images +* Support multi-platform simple binary distribution +* Upgrade config version to 1 +* Add "--config-path" for shorten form of "--config-yaml-path" +* Add --host option to specify bind address +* Support TLS certificate hot reload +* Add "migrate-config" subcommand + +[Unreleased]: https://github.com/nwtgck/rich-piping-server/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/nwtgck/rich-piping-server/compare/v0.1.2...v0.2.0 diff --git a/package-lock.json b/package-lock.json index c6c5af06..e5d60148 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "rich-piping-server", - "version": "0.1.2", + "version": "0.2.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 9c036c3a..935fa4a5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rich-piping-server", - "version": "0.1.2", + "version": "0.2.0", "description": "Rich Piping Server", "main": "dist/src/index.js", "types": "dist/src/index.d.ts",