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

Commit

Permalink
chore(release): 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mischah committed Dec 4, 2017
1 parent e1c549b commit 2fb659a
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 2 deletions.
49 changes: 49 additions & 0 deletions CHANGELOG.md
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/');
```
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 2fb659a

Please sign in to comment.