Skip to content
This repository was archived by the owner on Oct 20, 2023. It is now read-only.

Commit 2fb659a

Browse files
committed
chore(release): 4.0.0
1 parent e1c549b commit 2fb659a

File tree

3 files changed

+51
-2
lines changed

3 files changed

+51
-2
lines changed

CHANGELOG.md

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Change Log
2+
3+
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+
5+
<a name="4.0.0"></a>
6+
# [4.0.0](https://github.com/micromata/http-fake-backend/compare/v3.2.4...v4.0.0) (2017-12-04)
7+
8+
9+
### Bug Fixes
10+
11+
* **dependencies:** Apply changes of boom update ([a17f805](https://github.com/micromata/http-fake-backend/commit/a17f805))
12+
* **dependencies:** Update dependencies ([ab5974a](https://github.com/micromata/http-fake-backend/commit/ab5974a))
13+
* **dependencies:** Update dependencies ([f362c9c](https://github.com/micromata/http-fake-backend/commit/f362c9c))
14+
* update dependencies ([bbd445b](https://github.com/micromata/http-fake-backend/commit/bbd445b))
15+
16+
17+
### Code Refactoring
18+
19+
* Refactor existing codebase ([3751899](https://github.com/micromata/http-fake-backend/commit/3751899))
20+
21+
22+
### Documentation
23+
24+
* Update required minimum Node version in readme ([e1c549b](https://github.com/micromata/http-fake-backend/commit/e1c549b))
25+
26+
27+
### Features
28+
29+
* 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)
30+
* 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)
31+
32+
33+
### BREAKING CHANGES
34+
35+
* The transitive dependency [email protected] needs Node version ">=6".
36+
* The setup.js is divided to multiple files.
37+
Therefore you need to change the import of the setup in your endpoint files
38+
like the following:
39+
40+
```
41+
// before
42+
const SetupEndpoint = require('./setup/setup.js');
43+
44+
// now
45+
const SetupEndpoint = require('./setup/index.js');
46+
47+
// or:
48+
const SetupEndpoint = require('./setup/');
49+
```

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "http-fake-backend",
3-
"version": "3.2.4",
3+
"version": "4.0.0",
44
"description": "Build a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.",
55
"license": "MIT",
66
"main": "index.js",

0 commit comments

Comments
 (0)