All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
4.1.0 (2018-02-22)
- Add possibility to define custom response header (2bd6abb), closes micromata/http-fake-backend#10
4.0.0 (2018-02-19)
We moved from v2.0.1 to v4.0.0 and skipped v3.x to be on the same major level as the underlying http-fake-backend to avoid confusion.
- dependencies: Fix linting errors caused by eslint update (a51aad3)
- dependencies: Revert gulp-mocha to 3.x (b005b7c), closes sindresorhus/gulp-mocha#159
- dependencies: update dependencies (09fb881)
- automatically install with npm if Yarn isn’t available (1fe4844), closes #5
- Remove Gulp and replace Mocha with Jest (#6) (475b466)
- Update dependencies (4df3ba1)
- Update dependencies of generated project (60e1ace)
- update dependencies of the Yeoman generator (f1ff18e)
- Update required minimum Node version to 6.0.0 (6c32225)
Change
engines.node
to>=6.0.0
to reflect the minimum node version which is needed since http-fake-backend 4.0.0.
- encoding of binary files send via endpoints
- dependencies: Apply changes of boom update
- dependencies: Update dependencies
- Refactor existing codebase
- Update required minimum Node version in readme
- Add support for other response content-types, closes #7
- Add support for sending files as response, closes #11
- The transitive dependency [email protected] 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/');
- This project now needs Node 6 or greater.