# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.5.0](https://github.com/tibjs/framework/compare/@tib/testlab@3.4.4...@tib/testlab@3.5.0) (2020-10-11)


### Features

* update with latest loopback ([1a521c2](https://github.com/tibjs/framework/commit/1a521c23d78e0904af215c381d49d084d387513d))





## [3.4.4](https://github.com/tibjs/framework/compare/@tib/testlab@3.4.3...@tib/testlab@3.4.4) (2020-08-28)

**Note:** Version bump only for package @tib/testlab





## [3.4.3](https://github.com/tibjs/framework/compare/@tib/testlab@3.4.1...@tib/testlab@3.4.3) (2020-07-31)

**Note:** Version bump only for package @tib/testlab





## [3.4.1](https://github.com/tibjs/framework/compare/@tib/testlab@3.4.0...@tib/testlab@3.4.1) (2020-07-31)

**Note:** Version bump only for package @tib/testlab





# 3.4.0 (2020-07-24)


### Features

* initial commit ([d2d3042](https://github.com/tibjs/framework/commit/d2d3042c9282625e4f5e8006d391d1c4ac42fc7d))
* rename ArtLab to Tib ([1373483](https://github.com/tibjs/framework/commit/1373483d3294162f9aa827a5e158b8a529d32338))





## [3.3.3](https://github.com/tibjs/framework/compare/@tib/testlab@3.3.2...@tib/testlab@3.3.3) (2020-07-09)

**Note:** Version bump only for package @tib/testlab





## [3.3.2](https://github.com/tibjs/framework/compare/@tib/testlab@3.3.1...@tib/testlab@3.3.2) (2020-07-06)

**Note:** Version bump only for package @tib/testlab





## [3.3.1](https://github.com/tibjs/framework/compare/@tib/testlab@3.3.0...@tib/testlab@3.3.1) (2020-07-05)

**Note:** Version bump only for package @tib/testlab





# 3.3.0 (2020-07-04)


### Features

* initial commit ([d2d3042](https://github.com/tibjs/framework/commit/d2d3042c9282625e4f5e8006d391d1c4ac42fc7d))





# [3.2.0](https://github.com/tibjs/framework/compare/@tib/testlab@3.1.8...@tib/testlab@3.2.0) (2020-06-30)


### Features

* **testlab:** add transform option for sandbox copyFile ([f5565fb](https://github.com/tibjs/framework/commit/f5565fbfce2e88f4f0accaaa620f4237dc67545c))





## [3.1.8](https://github.com/tibjs/framework/compare/@tib/testlab@3.1.7...@tib/testlab@3.1.8) (2020-06-23)


### Bug Fixes

* set node version to >=10.16 to support events.once ([e39da1c](https://github.com/tibjs/framework/commit/e39da1ca47728eafaf83c10ce35b09b03b6a4edc))





## [3.1.7](https://github.com/tibjs/framework/compare/@tib/testlab@3.1.6...@tib/testlab@3.1.7) (2020-06-11)

**Note:** Version bump only for package @tib/testlab





## [3.1.6](https://github.com/tibjs/framework/compare/@tib/testlab@3.1.5...@tib/testlab@3.1.6) (2020-05-28)

**Note:** Version bump only for package @tib/testlab





## [3.1.5](https://github.com/tibjs/framework/compare/@tib/testlab@3.1.4...@tib/testlab@3.1.5) (2020-05-20)

**Note:** Version bump only for package @tib/testlab





## [3.1.4](https://github.com/tibjs/framework/compare/@tib/testlab@3.1.3...@tib/testlab@3.1.4) (2020-05-19)

**Note:** Version bump only for package @tib/testlab





## [3.1.3](https://github.com/tibjs/framework/compare/@tib/testlab@3.1.2...@tib/testlab@3.1.3) (2020-05-07)

**Note:** Version bump only for package @tib/testlab





## [3.1.2](https://github.com/tibjs/framework/compare/@tib/testlab@3.1.1...@tib/testlab@3.1.2) (2020-04-29)

**Note:** Version bump only for package @tib/testlab





## [3.1.1](https://github.com/tibjs/framework/compare/@tib/testlab@3.1.0...@tib/testlab@3.1.1) (2020-04-23)

**Note:** Version bump only for package @tib/testlab





# [3.1.0](https://github.com/tibjs/framework/compare/@tib/testlab@3.0.1...@tib/testlab@3.1.0) (2020-04-22)


### Features

* update package.json and .travis.yml for builds ([cb2b8e6](https://github.com/tibjs/framework/commit/cb2b8e6a18616dda7783c0193091039d4e608131))





## [3.0.1](https://github.com/tibjs/framework/compare/@tib/testlab@3.0.0...@tib/testlab@3.0.1) (2020-04-11)

**Note:** Version bump only for package @tib/testlab





# [3.0.0](https://github.com/tibjs/framework/compare/@tib/testlab@2.0.2...@tib/testlab@3.0.0) (2020-04-08)


### Features

* **testlab:** introduce TestSandboxOptions to control sanbox creation ([d03ec89](https://github.com/tibjs/framework/commit/d03ec8939a5d8a16fa50f931d3b9752c501173c4))


### BREAKING CHANGES

* **testlab:** The TestSandbox constructor changes its signature and behavior
now. It used to take a `path` as the top-level directory of the sandbox. The
new style is illustrated below.

```ts
// Create a sandbox as a unique temporary subdirectory under the rootPath
const sandbox = new TestSandbox(rootPath);
const sandbox = new TestSandbox({subdir: true});

// Create a sandbox in the root path directly
// This is same as the old behavior
const sandbox = new TestSandbox(rootPath, {subdir: false});
const sandbox = new TestSandbox(rootPath, {subdir: '.'});

// Create a sandbox in the `test1` subdirectory of the root path
const sandbox = new TestSandbox(rootPath, {subdir: 'test1'});
```





## [2.0.2](https://github.com/tibjs/framework/compare/@tib/testlab@2.0.1...@tib/testlab@2.0.2) (2020-03-24)


### Bug Fixes

* update package locks ([cd2f6fa](https://github.com/tibjs/framework/commit/cd2f6fa7a732afe4a16f4ccf8316ff3142959fe8))





## [2.0.1](https://github.com/tibjs/framework/compare/@tib/testlab@2.0.0...@tib/testlab@2.0.1) (2020-03-17)

**Note:** Version bump only for package @tib/testlab





# [2.0.0](https://github.com/tibjs/framework/compare/@tib/testlab@1.10.3...@tib/testlab@2.0.0) (2020-03-05)


### Bug Fixes

* **cli:** extract messages for generators ([2f572bd](https://github.com/tibjs/framework/commit/2f572bd75883420e38bfaa780bc38445aec92e65))


### chore

* remove support for Node.js v8.x ([4281d9d](https://github.com/tibjs/framework/commit/4281d9df50f0715d32879e1442a90b643ec8f542))


### Features

* **testlab:** remove legacy API `itSkippedOnTravis` ([e162c8c](https://github.com/tibjs/framework/commit/e162c8c6325c9192dc7f0aeb4a7d0e3810ee6d74))
* add `tslib` as dependency ([a6e0b4c](https://github.com/tibjs/framework/commit/a6e0b4ce7b862764167cefedee14c1115b25e0a4)), closes [#4676](https://github.com/tibjs/framework/issues/4676)


### BREAKING CHANGES

* **testlab:** The helper `itSkippedOnTravis` is no longer available,
please change your tests to use `skipOnTravis` instead.

```diff
- itSkippedOnTravis('supports IPv6', () => {
+ skipOnTravis(it, 'supports IPv6', () => {
```

Signed-off-by: Miroslav Bajtoš <mbajtoss@gmail.com>
* Node.js v8.x is now end of life. Please upgrade to version
10 and above. See https://nodejs.org/en/about/releases.





## [1.10.3](https://github.com/tibjs/framework/compare/@tib/testlab@1.10.2...@tib/testlab@1.10.3) (2020-02-05)

**Note:** Version bump only for package @tib/testlab





## [1.10.2](https://github.com/tibjs/framework/compare/@tib/testlab@1.10.1...@tib/testlab@1.10.2) (2020-01-27)

**Note:** Version bump only for package @tib/testlab





## [1.10.1](https://github.com/tibjs/framework/compare/@tib/testlab@1.10.0...@tib/testlab@1.10.1) (2020-01-07)

**Note:** Version bump only for package @tib/testlab





# [1.10.0](https://github.com/tibjs/framework/compare/@tib/testlab@1.9.5...@tib/testlab@1.10.0) (2019-12-09)


### Features

* **testlab:** allow an optional agent argument for http/https get requests ([d67384b](https://github.com/tibjs/framework/commit/d67384be5806bbcdab4a935d848a9c76da0a354c))





## [1.9.5](https://github.com/tibjs/framework/compare/@tib/testlab@1.9.4...@tib/testlab@1.9.5) (2019-11-25)

**Note:** Version bump only for package @tib/testlab





## [1.9.4](https://github.com/tibjs/framework/compare/@tib/testlab@1.9.3...@tib/testlab@1.9.4) (2019-11-12)

**Note:** Version bump only for package @tib/testlab





## [1.9.3](https://github.com/tibjs/framework/compare/@tib/testlab@1.9.2...@tib/testlab@1.9.3) (2019-10-24)

**Note:** Version bump only for package @tib/testlab





## [1.9.2](https://github.com/tibjs/framework/compare/@tib/testlab@1.9.1...@tib/testlab@1.9.2) (2019-10-07)

**Note:** Version bump only for package @tib/testlab





## [1.9.1](https://github.com/tibjs/framework/compare/@tib/testlab@1.9.0...@tib/testlab@1.9.1) (2019-09-28)

**Note:** Version bump only for package @tib/testlab





# [1.9.0](https://github.com/tibjs/framework/compare/@tib/testlab@1.8.1...@tib/testlab@1.9.0) (2019-09-27)


### Features

* implement TestSandbox.writeTextFile ([59ca3a0](https://github.com/tibjs/framework/commit/59ca3a0))





## [1.8.1](https://github.com/tibjs/framework/compare/@tib/testlab@1.8.0...@tib/testlab@1.8.1) (2019-09-17)

**Note:** Version bump only for package @tib/testlab





# [1.8.0](https://github.com/tibjs/framework/compare/@tib/testlab@1.7.5...@tib/testlab@1.8.0) (2019-09-06)


### Features

* **testlab:** add TestLab.writeJsonFile ([baa993b](https://github.com/tibjs/framework/commit/baa993b))





## [1.7.5](https://github.com/tibjs/framework/compare/@tib/testlab@1.7.4...@tib/testlab@1.7.5) (2019-09-03)


### Bug Fixes

* make givenHttpServerConfig typing compatible with TypeScript 3.6 ([1edbc0b](https://github.com/tibjs/framework/commit/1edbc0b))





## [1.7.4](https://github.com/tibjs/framework/compare/@tib/testlab@1.7.3...@tib/testlab@1.7.4) (2019-08-19)

**Note:** Version bump only for package @tib/testlab





## [1.7.3](https://github.com/tibjs/framework/compare/@tib/testlab@1.7.2...@tib/testlab@1.7.3) (2019-08-15)

**Note:** Version bump only for package @tib/testlab





## [1.7.2](https://github.com/tibjs/framework/compare/@tib/testlab@1.7.1...@tib/testlab@1.7.2) (2019-07-31)

**Note:** Version bump only for package @tib/testlab





## [1.7.1](https://github.com/tibjs/framework/compare/@tib/testlab@1.7.0...@tib/testlab@1.7.1) (2019-07-26)

**Note:** Version bump only for package @tib/testlab





# [1.7.0](https://github.com/tibjs/framework/compare/@tib/testlab@1.6.3...@tib/testlab@1.7.0) (2019-07-17)


### Features

* **testlab:** improve typings for `toJSON()` helper ([a64e860](https://github.com/tibjs/framework/commit/a64e860))





## [1.6.3](https://github.com/tibjs/framework/compare/@tib/testlab@1.6.2...@tib/testlab@1.6.3) (2019-06-28)

**Note:** Version bump only for package @tib/testlab





## [1.6.2](https://github.com/tibjs/framework/compare/@tib/testlab@1.6.1...@tib/testlab@1.6.2) (2019-06-21)

**Note:** Version bump only for package @tib/testlab





## [1.6.1](https://github.com/tibjs/framework/compare/@tib/testlab@1.6.0...@tib/testlab@1.6.1) (2019-06-20)

**Note:** Version bump only for package @tib/testlab





# [1.6.0](https://github.com/tibjs/framework/compare/@tib/testlab@1.5.0...@tib/testlab@1.6.0) (2019-06-17)


### Features

* **testlab:** add `skipIf` helper ([48f3703](https://github.com/tibjs/framework/commit/48f3703))





# [1.5.0](https://github.com/tibjs/framework/compare/@tib/testlab@1.4.0...@tib/testlab@1.5.0) (2019-06-06)


### Features

* **testlab:** add generic helper `skipOnTravis` ([3221d9f](https://github.com/tibjs/framework/commit/3221d9f))





# [1.4.0](https://github.com/tibjs/framework/compare/@tib/testlab@1.3.0...@tib/testlab@1.4.0) (2019-06-03)


### Features

* replace tslint with eslint ([44185a7](https://github.com/tibjs/framework/commit/44185a7))





# [1.3.0](https://github.com/tibjs/framework/compare/@tib/testlab@1.2.11...@tib/testlab@1.3.0) (2019-05-31)


### Features

* **testlab:** rework itSkippedOnTravis to support Jest framework ([c7e14ca](https://github.com/tibjs/framework/commit/c7e14ca))





## [1.2.11](https://github.com/tibjs/framework/compare/@tib/testlab@1.2.10...@tib/testlab@1.2.11) (2019-05-30)

**Note:** Version bump only for package @tib/testlab





## [1.2.10](https://github.com/tibjs/framework/compare/@tib/testlab@1.2.9...@tib/testlab@1.2.10) (2019-05-23)

**Note:** Version bump only for package @tib/testlab





## [1.2.9](https://github.com/tibjs/framework/compare/@tib/testlab@1.2.8...@tib/testlab@1.2.9) (2019-05-14)

**Note:** Version bump only for package @tib/testlab





## [1.2.8](https://github.com/tibjs/framework/compare/@tib/testlab@1.2.7...@tib/testlab@1.2.8) (2019-05-10)

**Note:** Version bump only for package @tib/testlab





## [1.2.7](https://github.com/tibjs/framework/compare/@tib/testlab@1.2.6...@tib/testlab@1.2.7) (2019-05-09)

**Note:** Version bump only for package @tib/testlab





## [1.2.6](https://github.com/tibjs/framework/compare/@tib/testlab@1.2.5...@tib/testlab@1.2.6) (2019-05-06)

**Note:** Version bump only for package @tib/testlab





## [1.2.5](https://github.com/tibjs/framework/compare/@tib/testlab@1.2.4...@tib/testlab@1.2.5) (2019-04-20)

**Note:** Version bump only for package @tib/testlab





## [1.2.4](https://github.com/tibjs/framework/compare/@tib/testlab@1.2.3...@tib/testlab@1.2.4) (2019-04-11)

**Note:** Version bump only for package @tib/testlab





## [1.2.3](https://github.com/tibjs/framework/compare/@tib/testlab@1.2.2...@tib/testlab@1.2.3) (2019-04-09)

**Note:** Version bump only for package @tib/testlab





## [1.2.2](https://github.com/tibjs/framework/compare/@tib/testlab@1.2.1...@tib/testlab@1.2.2) (2019-04-05)


### Bug Fixes

* **rest:** make sure basePath is included in RestServer.url ([705bce4](https://github.com/tibjs/framework/commit/705bce4))





## [1.2.1](https://github.com/tibjs/framework/compare/@tib/testlab@1.2.0...@tib/testlab@1.2.1) (2019-03-22)


### Bug Fixes

* **testlab:** make sure `fixtures` is included in npm package ([6edfa9d](https://github.com/tibjs/framework/commit/6edfa9d))





# [1.2.0](https://github.com/tibjs/framework/compare/@tib/testlab@1.1.0...@tib/testlab@1.2.0) (2019-03-22)


### Features

* **testlab:** add dummy HTTPS config ([a32c885](https://github.com/tibjs/framework/commit/a32c885))





# [1.1.0](https://github.com/tibjs/framework/compare/@tib/testlab@1.0.7...@tib/testlab@1.1.0) (2019-03-12)


### Features

* **testlab:** always use IPv4 host in HTTP server config ([3d487b2](https://github.com/tibjs/framework/commit/3d487b2))





## [1.0.7](https://github.com/tibjs/framework/compare/@tib/testlab@1.0.6...@tib/testlab@1.0.7) (2019-02-25)

**Note:** Version bump only for package @tib/testlab





## [1.0.6](https://github.com/tibjs/framework/compare/@tib/testlab@1.0.5...@tib/testlab@1.0.6) (2019-02-08)

**Note:** Version bump only for package @tib/testlab





## [1.0.5](https://github.com/tibjs/framework/compare/@tib/testlab@1.0.4...@tib/testlab@1.0.5) (2019-01-28)

**Note:** Version bump only for package @tib/testlab





## [1.0.4](https://github.com/tibjs/framework/compare/@tib/testlab@1.0.3...@tib/testlab@1.0.4) (2019-01-14)


### Bug Fixes

* rework tslint comments disabling "no-unused-variable" rule ([a18a3d7](https://github.com/tibjs/framework/commit/a18a3d7))
* **testlab:** add api docs during build ([5b5018d](https://github.com/tibjs/framework/commit/5b5018d))





## [1.0.3](https://github.com/tibjs/framework/compare/@tib/testlab@1.0.2...@tib/testlab@1.0.3) (2018-12-20)

**Note:** Version bump only for package @tib/testlab





## [1.0.2](https://github.com/tibjs/framework/compare/@tib/testlab@1.0.1...@tib/testlab@1.0.2) (2018-12-13)


### Bug Fixes

* **rest:** parse query string even when there is no rest query param ([ad905a5](https://github.com/tibjs/framework/commit/ad905a5))





<a name="1.0.1"></a>
## [1.0.1](https://github.com/tibjs/framework/compare/@tib/testlab@1.0.0...@tib/testlab@1.0.1) (2018-11-08)

**Note:** Version bump only for package @tib/testlab





<a name="0.15.2"></a>
## [0.15.2](https://github.com/tibjs/framework/compare/@tib/testlab@0.15.1...@tib/testlab@0.15.2) (2018-10-08)

**Note:** Version bump only for package @tib/testlab





<a name="0.15.1"></a>
## [0.15.1](https://github.com/tibjs/framework/compare/@tib/testlab@0.15.0...@tib/testlab@0.15.1) (2018-10-05)

**Note:** Version bump only for package @tib/testlab





<a name="0.15.0"></a>
# [0.15.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.14.1...@tib/testlab@0.15.0) (2018-10-03)


### Features

* **testlab:** add StubbedInstanceWithSinonAccessor ([1dc2304](https://github.com/tibjs/framework/commit/1dc2304))





<a name="0.14.1"></a>
## [0.14.1](https://github.com/tibjs/framework/compare/@tib/testlab@0.14.0...@tib/testlab@0.14.1) (2018-09-27)

**Note:** Version bump only for package @tib/testlab





<a name="0.14.0"></a>
# [0.14.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.13.0...@tib/testlab@0.14.0) (2018-09-25)


### Features

* **testlab:** add a new helper deserializedFromJson ([8d105e4](https://github.com/tibjs/framework/commit/8d105e4))





<a name="0.13.0"></a>
# [0.13.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.12.2...@tib/testlab@0.13.0) (2018-09-21)


### Features

* **testlab:** add createRestAppClient(), simplify usage in tests ([d75be77](https://github.com/tibjs/framework/commit/d75be77))
* **testlab:** set port to 0 in givenHttpServerConfig ([90a0bfb](https://github.com/tibjs/framework/commit/90a0bfb))





<a name="0.12.2"></a>
## [0.12.2](https://github.com/tibjs/framework/compare/@tib/testlab@0.12.1...@tib/testlab@0.12.2) (2018-09-12)

**Note:** Version bump only for package @tib/testlab





<a name="0.12.1"></a>
## [0.12.1](https://github.com/tibjs/framework/compare/@tib/testlab@0.12.0...@tib/testlab@0.12.1) (2018-09-10)

**Note:** Version bump only for package @tib/testlab





<a name="0.12.0"></a>
# [0.12.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.11.5...@tib/testlab@0.12.0) (2018-09-08)


### Features

* **testlab:** expose "sandbox.path" property ([1445ebd](https://github.com/tibjs/framework/commit/1445ebd))





<a name="0.11.5"></a>
## [0.11.5](https://github.com/tibjs/framework/compare/@tib/testlab@0.11.4...@tib/testlab@0.11.5) (2018-08-24)

**Note:** Version bump only for package @tib/testlab





<a name="0.11.4"></a>
## [0.11.4](https://github.com/tibjs/framework/compare/@tib/testlab@0.11.3...@tib/testlab@0.11.4) (2018-08-15)




**Note:** Version bump only for package @tib/testlab

<a name="0.11.3"></a>
## [0.11.3](https://github.com/tibjs/framework/compare/@tib/testlab@0.11.2...@tib/testlab@0.11.3) (2018-08-08)




**Note:** Version bump only for package @tib/testlab

<a name="0.11.2"></a>
## [0.11.2](https://github.com/tibjs/framework/compare/@tib/testlab@0.11.1...@tib/testlab@0.11.2) (2018-07-21)




**Note:** Version bump only for package @tib/testlab

<a name="0.11.1"></a>
## [0.11.1](https://github.com/tibjs/framework/compare/@tib/testlab@0.11.0...@tib/testlab@0.11.1) (2018-07-20)




**Note:** Version bump only for package @tib/testlab

<a name="0.11.0"></a>
# [0.11.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.10.11...@tib/testlab@0.11.0) (2018-07-20)




**Note:** Version bump only for package @tib/testlab

<a name="0.10.11"></a>
## [0.10.11](https://github.com/tibjs/framework/compare/@tib/testlab@0.10.10...@tib/testlab@0.10.11) (2018-07-10)




**Note:** Version bump only for package @tib/testlab

<a name="0.10.10"></a>
## [0.10.10](https://github.com/tibjs/framework/compare/@tib/testlab@0.10.9...@tib/testlab@0.10.10) (2018-06-28)




**Note:** Version bump only for package @tib/testlab

<a name="0.10.9"></a>
## [0.10.9](https://github.com/tibjs/framework/compare/@tib/testlab@0.10.8...@tib/testlab@0.10.9) (2018-06-27)




**Note:** Version bump only for package @tib/testlab

<a name="0.10.8"></a>
## [0.10.8](https://github.com/tibjs/framework/compare/@tib/testlab@0.10.7...@tib/testlab@0.10.8) (2018-06-20)


### Bug Fixes

* **testlab:** decache files in TestSandbox when resetting it ([7878ae6](https://github.com/tibjs/framework/commit/7878ae6))




<a name="0.10.7"></a>
## [0.10.7](https://github.com/tibjs/framework/compare/@tib/testlab@0.10.5...@tib/testlab@0.10.7) (2018-06-09)




**Note:** Version bump only for package @tib/testlab

<a name="0.10.6"></a>
## [0.10.6](https://github.com/tibjs/framework/compare/@tib/testlab@0.10.5...@tib/testlab@0.10.6) (2018-06-09)




**Note:** Version bump only for package @tib/testlab

<a name="0.10.5"></a>
## [0.10.5](https://github.com/tibjs/framework/compare/@tib/testlab@0.10.4...@tib/testlab@0.10.5) (2018-06-08)


### Bug Fixes

* fill out missing brackets in testlab readme ([5383f54](https://github.com/tibjs/framework/commit/5383f54))




<a name="0.10.4"></a>
## [0.10.4](https://github.com/tibjs/framework/compare/@tib/testlab@0.10.3...@tib/testlab@0.10.4) (2018-05-20)




**Note:** Version bump only for package @tib/testlab

<a name="0.10.3"></a>
## [0.10.3](https://github.com/tibjs/framework/compare/@tib/testlab@0.10.2...@tib/testlab@0.10.3) (2018-05-14)


### Bug Fixes

* change index.d.ts files to point to dist8 ([42ca42d](https://github.com/tibjs/framework/commit/42ca42d))




<a name="0.10.2"></a>
## [0.10.2](https://github.com/tibjs/framework/compare/@tib/testlab@0.10.1...@tib/testlab@0.10.2) (2018-05-14)




**Note:** Version bump only for package @tib/testlab

<a name="0.10.1"></a>
## [0.10.1](https://github.com/tibjs/framework/compare/@tib/testlab@0.10.0...@tib/testlab@0.10.1) (2018-05-08)




**Note:** Version bump only for package @tib/testlab

<a name="0.10.0"></a>
# [0.10.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.8.0...@tib/testlab@0.10.0) (2018-05-03)


### Features

* add helper package "dist-util" ([532f153](https://github.com/tibjs/framework/commit/532f153))




<a name="0.9.0"></a>
# [0.9.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.8.0...@tib/testlab@0.9.0) (2018-05-03)


### Features

* add helper package "dist-util" ([532f153](https://github.com/tibjs/framework/commit/532f153))




<a name="0.8.0"></a>
# [0.8.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.7.0...@tib/testlab@0.8.0) (2018-04-25)


### Bug Fixes

* fix lint error from prettier 1.12.1 ([63c2f37](https://github.com/tibjs/framework/commit/63c2f37))


### Features

* **build:** add an option to copy non ts files to outDir ([49b9a82](https://github.com/tibjs/framework/commit/49b9a82))




<a name="0.7.0"></a>
# [0.7.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.6.0...@tib/testlab@0.7.0) (2018-04-16)




**Note:** Version bump only for package @tib/testlab

<a name="0.6.0"></a>
# [0.6.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.5.4...@tib/testlab@0.6.0) (2018-04-11)


### Features

* **testlab:** update sourceMappingURL when copying a JS file ([aac2781](https://github.com/tibjs/framework/commit/aac2781))




<a name="0.5.4"></a>
## [0.5.4](https://github.com/tibjs/framework/compare/@tib/testlab@0.5.2...@tib/testlab@0.5.4) (2018-04-11)


### Bug Fixes

* change file names to fit advocated naming convention ([0331df8](https://github.com/tibjs/framework/commit/0331df8))




<a name="0.5.3"></a>
## [0.5.3](https://github.com/tibjs/framework/compare/@tib/testlab@0.5.2...@tib/testlab@0.5.3) (2018-04-06)




**Note:** Version bump only for package @tib/testlab

<a name="0.5.2"></a>
## [0.5.2](https://github.com/tibjs/framework/compare/@tib/testlab@0.5.1...@tib/testlab@0.5.2) (2018-04-04)




**Note:** Version bump only for package @tib/testlab

<a name="0.5.1"></a>
## [0.5.1](https://github.com/tibjs/framework/compare/@tib/testlab@0.5.0...@tib/testlab@0.5.1) (2018-04-02)




**Note:** Version bump only for package @tib/testlab

<a name="0.5.0"></a>
# [0.5.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.4.1...@tib/testlab@0.5.0) (2018-03-29)




**Note:** Version bump only for package @tib/testlab

<a name="0.4.1"></a>
## [0.4.1](https://github.com/tibjs/framework/compare/@tib/testlab@0.4.0...@tib/testlab@0.4.1) (2018-03-23)




**Note:** Version bump only for package @tib/testlab

<a name="0.4.0"></a>
# [0.4.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.3.3...@tib/testlab@0.4.0) (2018-03-21)


### Bug Fixes

* **testlab:** fix throw() and rejectedWith() types ([8ad9f66](https://github.com/tibjs/framework/commit/8ad9f66))




<a name="0.3.3"></a>
## [0.3.3](https://github.com/tibjs/framework/compare/@tib/testlab@0.3.2...@tib/testlab@0.3.3) (2018-03-14)




**Note:** Version bump only for package @tib/testlab

<a name="0.3.2"></a>
## [0.3.2](https://github.com/tibjs/framework/compare/@tib/testlab@0.3.1...@tib/testlab@0.3.2) (2018-03-13)




**Note:** Version bump only for package @tib/testlab

<a name="0.3.1"></a>
## [0.3.1](https://github.com/tibjs/framework/compare/@tib/testlab@0.3.0...@tib/testlab@0.3.1) (2018-03-08)




**Note:** Version bump only for package @tib/testlab

<a name="0.3.0"></a>
# [0.3.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.2.0...@tib/testlab@0.3.0) (2018-03-06)


### Bug Fixes

* fix typo of `additional` ([2fd7610](https://github.com/tibjs/framework/commit/2fd7610))


### Features

* upgrade from swagger 2 to openapi 3 ([71e5af1](https://github.com/tibjs/framework/commit/71e5af1))




<a name="0.2.0"></a>
# [0.2.0](https://github.com/tibjs/framework/compare/@tib/testlab@0.1.2...@tib/testlab@0.2.0) (2018-03-01)




**Note:** Version bump only for package @tib/testlab

<a name="0.1.2"></a>
## [0.1.2](https://github.com/tibjs/framework/compare/@tib/testlab@0.1.1...@tib/testlab@0.1.2) (2018-03-01)




**Note:** Version bump only for package @tib/testlab

<a name="0.1.1"></a>
## [0.1.1](https://github.com/tibjs/framework/compare/@tib/testlab@0.1.0...@tib/testlab@0.1.1) (2018-02-23)


### Bug Fixes

* remove extra index from export ([#1029](https://github.com/tibjs/framework/issues/1029)) ([e1303a9](https://github.com/tibjs/framework/commit/e1303a9))




<a name="0.1.0"></a>
# [0.1.0](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.24...@tib/testlab@0.1.0) (2018-02-21)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.24"></a>
# [4.0.0-alpha.24](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.23...@tib/testlab@4.0.0-alpha.24) (2018-02-07)


### Bug Fixes

* **build:** fix tslint config and slipped violations ([22f8e05](https://github.com/tibjs/framework/commit/22f8e05))


### build

* drop dist6 related targets ([#945](https://github.com/tibjs/framework/issues/945)) ([a2368ce](https://github.com/tibjs/framework/commit/a2368ce))


### BREAKING CHANGES

* Support for Node.js version lower than 8.0 has been dropped.
Please upgrade to the latest Node.js 8.x LTS version.

Co-Authored-by: Taranveer Virk <taranveer@virk.cc>




<a name="4.0.0-alpha.23"></a>
# [4.0.0-alpha.23](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.22...@tib/testlab@4.0.0-alpha.23) (2018-02-04)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.22"></a>
# [4.0.0-alpha.22](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.21...@tib/testlab@4.0.0-alpha.22) (2018-01-30)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.21"></a>
# [4.0.0-alpha.21](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.20...@tib/testlab@4.0.0-alpha.21) (2018-01-29)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.20"></a>
# [4.0.0-alpha.20](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.19...@tib/testlab@4.0.0-alpha.20) (2018-01-26)


### Bug Fixes

* **testlab:** switch to fs-extra instead of using fs ([#905](https://github.com/tibjs/framework/issues/905)) ([06cdaaf](https://github.com/tibjs/framework/commit/06cdaaf))
* apply source-maps to test errors ([76a7f56](https://github.com/tibjs/framework/commit/76a7f56)), closes [#602](https://github.com/tibjs/framework/issues/602)
* make mocha self-contained with the source map support ([7c6d869](https://github.com/tibjs/framework/commit/7c6d869))


### Features

* **testlab:** create a test sandbox utility ([#877](https://github.com/tibjs/framework/issues/877)) ([9526ba3](https://github.com/tibjs/framework/commit/9526ba3))




<a name="4.0.0-alpha.19"></a>
# [4.0.0-alpha.19](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.18...@tib/testlab@4.0.0-alpha.19) (2018-01-19)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.18"></a>
# [4.0.0-alpha.18](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.17...@tib/testlab@4.0.0-alpha.18) (2018-01-11)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.17"></a>
# [4.0.0-alpha.17](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.16...@tib/testlab@4.0.0-alpha.17) (2017-12-21)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.16"></a>
# [4.0.0-alpha.16](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.15...@tib/testlab@4.0.0-alpha.16) (2017-12-11)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.15"></a>
# [4.0.0-alpha.15](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.14...@tib/testlab@4.0.0-alpha.15) (2017-11-29)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.14"></a>
# [4.0.0-alpha.14](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.13...@tib/testlab@4.0.0-alpha.14) (2017-11-09)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.13"></a>
# [4.0.0-alpha.13](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.12...@tib/testlab@4.0.0-alpha.13) (2017-11-06)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.12"></a>
# [4.0.0-alpha.12](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.11...@tib/testlab@4.0.0-alpha.12) (2017-10-31)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.11"></a>
# [4.0.0-alpha.11](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.10...@tib/testlab@4.0.0-alpha.11) (2017-10-31)




**Note:** Version bump only for package @tib/testlab

<a name="4.0.0-alpha.10"></a>
# [4.0.0-alpha.10](https://github.com/tibjs/framework/compare/@tib/testlab@4.0.0-alpha.7...@tib/testlab@4.0.0-alpha.10) (2017-10-25)


### Bug Fixes

* **testlab:** Remove sinon-should integration ([8841fce](https://github.com/tibjs/framework/commit/8841fce))
