diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ba6fb6b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,49 @@ +# Change Log + +All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + + +# [4.0.0](https://github.com/micromata/http-fake-backend/compare/v3.2.4...v4.0.0) (2017-12-04) + + +### Bug Fixes + +* **dependencies:** Apply changes of boom update ([a17f805](https://github.com/micromata/http-fake-backend/commit/a17f805)) +* **dependencies:** Update dependencies ([ab5974a](https://github.com/micromata/http-fake-backend/commit/ab5974a)) +* **dependencies:** Update dependencies ([f362c9c](https://github.com/micromata/http-fake-backend/commit/f362c9c)) +* update dependencies ([bbd445b](https://github.com/micromata/http-fake-backend/commit/bbd445b)) + + +### Code Refactoring + +* Refactor existing codebase ([3751899](https://github.com/micromata/http-fake-backend/commit/3751899)) + + +### Documentation + +* Update required minimum Node version in readme ([e1c549b](https://github.com/micromata/http-fake-backend/commit/e1c549b)) + + +### Features + +* Add support for other response content-types ([c9a7d12](https://github.com/micromata/http-fake-backend/commit/c9a7d12)), closes [#7](https://github.com/micromata/http-fake-backend/issues/7) +* Add support for sending files as response ([70d535f](https://github.com/micromata/http-fake-backend/commit/70d535f)), closes [#11](https://github.com/micromata/http-fake-backend/issues/11) + + +### BREAKING CHANGES + +* The transitive dependency punycode@2.1.0 needs Node version ">=6". +* The setup.js is divided to multiple files. +Therefore you need to change the import of the setup in your endpoint files +like the following: + + ``` + // before + const SetupEndpoint = require('./setup/setup.js'); + + // now + const SetupEndpoint = require('./setup/index.js'); + + // or: + const SetupEndpoint = require('./setup/'); + ``` diff --git a/package-lock.json b/package-lock.json index 8641a1c..a717a8e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "http-fake-backend", - "version": "3.2.4", + "version": "4.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 9931a8e..20bcac0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "http-fake-backend", - "version": "3.2.4", + "version": "4.0.0", "description": "Build a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.", "license": "MIT", "main": "index.js",