This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
51 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. | ||
|
||
<a name="4.0.0"></a> | ||
# [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 [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/'); | ||
``` |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters