UNPKG

5.14 kBMarkdownView Raw
1<!-- markdownlint-disable MD024 -->
2<!-- markdownlint-disable MD041 -->
3
4## [1.0.17](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.16...v1.0.17) (July 05, 2022)
5
6- updated packages
7- fixed `File upload doesn't work for files with russian letters`
8
9## [1.0.16](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.15...v1.0.16) (May 12, 2022)
10
11- bump version of vulnerable packages
12- added [details about usage with webpack v5](README.md#for-webpack-v5)
13
14## [1.0.15](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.14...v1.0.15) (November 2, 2021)
15
16- added support uploading files with auto-storing to memory and mapping to routes (for retrieving back)
17
18## [1.0.14](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.13...v1.0.14) (September 2, 2021)
19
20- added support ts-path-alias. Related to <https://github.com/microsoft/TypeScript/issues/26722>
21
22## [1.0.13](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.12...v1.0.13) (July 14, 2021)
23
24- fixed `webpack throws EADDRINUSE after restarting with webpack-mock-server`
25- fixed `wepback-mock-server does not run if wepack gets EADDRINUSE`
26
27## [1.0.12](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.11...v1.0.12) (July 14, 2021)
28
29- fixed `sometimes old response after recompilation`
30
31## [1.0.11](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.8...v1.0.11) (July 12, 2021)
32
33- removed console.warn added previously for debugging
34
35## [1.0.8](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.7...v1.0.8) (June 23, 2021)
36
37- fixed `wrong http-code (was 201 instead of inherited)`
38
39## [1.0.7](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.6...v1.0.7) (June 23, 2021)
40
41- fixed `case when https is selected in devServer`
42
43## [1.0.6](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.5...v1.0.6) (May 5, 2021)
44
45- added inbox supporting of popular body types as json/form-urlencoded/text/multipart-form-data (mostly for post/put requests)
46- movev package @types/express to dependencies (for ts/js-intellisense)
47- updated packages
48
49## [1.0.5](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.4...v1.0.5) (March 16, 2020)
50
51- fixed vulnerabilities in packages
52
53## [1.0.4](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.3...v1.0.4) (March 5, 2020)
54
55- updated README: point on NodeJs `require.cache` and how we can delete it
56
57## [1.0.3](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.2...v1.0.3) (February 13, 2020)
58
59- fixed `post/put does not work and returns httpCode: 405`
60
61## [1.0.2](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.1...v1.0.2) (February 10, 2020)
62
63- fixed `res.once should be before next() for avoiding missing res.once event for logging purpose`
64
65## [1.0.1](https://github.com/Yegorich555/webpack-mock-server/compare/v1.0.0...v1.0.1) (February 7, 2020)
66
67- fixed `server does not provide favicon via directToServer response`
68- fixed `default logger catches exception and does not provide actual response`
69- fixed `\_\_dirname under wepback is not absolute`
70
71## [1.0.0](https://github.com/Yegorich555/webpack-mock-server/compare/v0.0.4...v1.0.0) (February 7, 2020)
72
73- **BREAKING CHANGE**: improve export for NodeJs-require (use **require('...')** instead of **require('...').default**)
74- **options**: add **.logResponse**, **.logRequest**, **.before**
75- **options.entry**: add 'single string' support. Add type and wildcard checking
76- **mockServerHelper**: implement with methods **getRandomInt**, **getUniqueIdInt**
77- **webpackMockServer**: add '**.add**' and '**.defaultOptions**' to export
78- fixed `sometimes mock-server overrides webpack port`
79- fixed `\_\_dirname provides tmpName instead of sourceName`
80- fixed `mockServerOptions: put noEmitHelpers and esModuleInterop to strictCompilerOptions`
81- fixed `memory liquid on infinite handling 'process.on' events (each reloading from tsCompiler)`
82- fixed `piping for routes with optional parameters`
83
84## [0.0.4](https://github.com/Yegorich555/webpack-mock-server/compare/v0.0.3...v0.0.4) (January 31, 2020)
85
86- fixed `entry option does not override tsCompiler rootNames`
87
88## [0.0.3](https://github.com/Yegorich555/webpack-mock-server/compare/v0.0.2...v0.0.3) (January 31, 2020)
89
90- add README and CHANGELOG
91- add support of multiple exports from mock-files
92- fixed `wrong definition of outputFilePath when used **import \* from '../importedFile'** (with '../' in path)`
93- fixed `there is no index.html in installed package`
94
95## [0.0.2](https://github.com/Yegorich555/webpack-mock-server/compare/v0.0.1...v0.0.2) (January 28, 2020)
96
97- fixed `verbose option is ignored`
98- fixed `server does not provide updated data`
99- prettify index.html for url '/' (getRoutes)
100- improve logging
101- add full-support of tsconfig.json (including 'files' and 'includes' sections)
102
103## [0.0.1](https://github.com/Yegorich555/webpack-mock-server/tree/v0.0.1) (January 21, 2020)
104
105- create basic configuration
106- implement basic functionality