@expressots/core 1.7.0 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +87 -41
- package/lib/CHANGELOG.md +123 -123
- package/lib/README.md +87 -41
- package/lib/cjs/application/app-container.js +3 -3
- package/lib/cjs/application/application.js +18 -4
- package/lib/cjs/console/console.js +3 -1
- package/lib/cjs/container-module/container-module.js +2 -0
- package/lib/cjs/decorator/scope-binding.js +2 -0
- package/lib/cjs/environment/env-validator.js +1 -0
- package/lib/cjs/error/app-error.js +26 -0
- package/lib/cjs/error/error-handler-middleware.js +16 -5
- package/lib/cjs/error/index.js +3 -1
- package/lib/cjs/error/report.js +4 -20
- package/lib/cjs/logger/general-logger.js +2 -2
- package/lib/cjs/types/application/app-container.d.ts +71 -5
- package/lib/cjs/types/application/app-container.d.ts.map +1 -1
- package/lib/cjs/types/application/application.d.ts +5 -1
- package/lib/cjs/types/application/application.d.ts.map +1 -1
- package/lib/cjs/types/common/project-config.provider.d.ts.map +1 -1
- package/lib/cjs/types/console/console.d.ts.map +1 -1
- package/lib/cjs/types/container-module/container-module.d.ts +1 -1
- package/lib/cjs/types/container-module/container-module.d.ts.map +1 -1
- package/lib/cjs/types/controller/base-controller.d.ts.map +1 -1
- package/lib/cjs/types/decorator/scope-binding.d.ts.map +1 -1
- package/lib/cjs/types/environment/env-validator.d.ts.map +1 -1
- package/lib/cjs/types/error/app-error.d.ts +30 -0
- package/lib/cjs/types/error/app-error.d.ts.map +1 -0
- package/lib/cjs/types/error/error-handler-middleware.d.ts +2 -3
- package/lib/cjs/types/error/error-handler-middleware.d.ts.map +1 -1
- package/lib/cjs/types/error/index.d.ts +1 -0
- package/lib/cjs/types/error/index.d.ts.map +1 -1
- package/lib/cjs/types/error/report.d.ts +3 -9
- package/lib/cjs/types/error/report.d.ts.map +1 -1
- package/lib/cjs/types/logger/general-logger.d.ts.map +1 -1
- package/lib/esm/application/app-container.js +14 -11
- package/lib/esm/application/application.js +40 -19
- package/lib/esm/application/index.js +9 -2
- package/lib/esm/common/index.js +2 -1
- package/lib/esm/common/project-config.provider.js +2 -1
- package/lib/esm/console/console.js +18 -10
- package/lib/esm/console/index.js +5 -1
- package/lib/esm/container-module/container-module.js +23 -17
- package/lib/esm/container-module/index.js +6 -1
- package/lib/esm/controller/base-controller.js +9 -6
- package/lib/esm/controller/index.js +5 -1
- package/lib/esm/decorator/index.js +17 -1
- package/lib/esm/decorator/scope-binding.js +10 -4
- package/lib/esm/environment/env-validator.js +20 -13
- package/lib/esm/environment/index.js +5 -1
- package/lib/esm/error/app-error.js +37 -0
- package/lib/esm/error/error-handler-middleware.js +19 -6
- package/lib/esm/error/index.js +9 -2
- package/lib/esm/error/report.js +11 -23
- package/lib/esm/error/status-code.js +4 -1
- package/lib/esm/index.mjs +26 -10
- package/lib/esm/logger/general-logger.js +20 -13
- package/lib/esm/logger/index.js +7 -1
- package/lib/esm/render/handlebars.interface.js +2 -1
- package/lib/esm/render/index.js +2 -1
- package/lib/esm/render/render.type.js +2 -1
- package/lib/esm/types/application/app-container.d.ts +71 -5
- package/lib/esm/types/application/app-container.d.ts.map +1 -1
- package/lib/esm/types/application/application.d.ts +5 -1
- package/lib/esm/types/application/application.d.ts.map +1 -1
- package/lib/esm/types/common/project-config.provider.d.ts.map +1 -1
- package/lib/esm/types/console/console.d.ts.map +1 -1
- package/lib/esm/types/container-module/container-module.d.ts +1 -1
- package/lib/esm/types/container-module/container-module.d.ts.map +1 -1
- package/lib/esm/types/controller/base-controller.d.ts.map +1 -1
- package/lib/esm/types/decorator/scope-binding.d.ts.map +1 -1
- package/lib/esm/types/environment/env-validator.d.ts.map +1 -1
- package/lib/esm/types/error/app-error.d.ts +30 -0
- package/lib/esm/types/error/app-error.d.ts.map +1 -0
- package/lib/esm/types/error/error-handler-middleware.d.ts +2 -3
- package/lib/esm/types/error/error-handler-middleware.d.ts.map +1 -1
- package/lib/esm/types/error/index.d.ts +1 -0
- package/lib/esm/types/error/index.d.ts.map +1 -1
- package/lib/esm/types/error/report.d.ts +3 -9
- package/lib/esm/types/error/report.d.ts.map +1 -1
- package/lib/esm/types/logger/general-logger.d.ts.map +1 -1
- package/lib/package.json +21 -13
- package/package.json +21 -13
package/README.md
CHANGED
|
@@ -1,61 +1,107 @@
|
|
|
1
|
-
<
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
<a name="readme-top"></a>
|
|
2
|
+
|
|
3
|
+
<!-- PROJECT SHIELDS -->
|
|
4
|
+
[![Contributors][contributors-shield]][contributors-url]
|
|
5
|
+
[![Forks][forks-shield]][forks-url]
|
|
6
|
+
[![Stargazers][stars-shield]][stars-url]
|
|
7
|
+
[![Issues][issues-shield]][issues-url]
|
|
8
|
+
[![MIT License][license-shield]][license-url]
|
|
9
|
+
[![LinkedIn][linkedin-shield]][linkedin-url]
|
|
10
|
+
|
|
11
|
+
<!-- PROJECT LOGO -->
|
|
12
|
+
<br />
|
|
13
|
+
<div align="center">
|
|
14
|
+
<a href="https://github.com/othneildrew/Best-README-Template">
|
|
15
|
+
<img src="https://github.com/expressots/expressots/blob/main/media/expressots.png" alt="Logo" width="120">
|
|
16
|
+
</a>
|
|
17
|
+
|
|
18
|
+
<h3 align="center">ExpressoTS Framework</h3>
|
|
19
|
+
|
|
20
|
+
<p align="center">
|
|
21
|
+
Everything you need to know to build applications with ExpressoTS
|
|
22
|
+
<br />
|
|
23
|
+
<a href="https://doc.expresso-ts.com/"><strong>Explore the docs »</strong></a>
|
|
24
|
+
<br />
|
|
25
|
+
<br />
|
|
26
|
+
<a href="https://github.com/expressots/expressots/discussions">Let's discuss</a>
|
|
27
|
+
·
|
|
28
|
+
<a href="https://github.com/expressots/expressots/issues">Report Bug</a>
|
|
29
|
+
·
|
|
30
|
+
<a href="https://github.com/expressots/expressots/issues">Request Feature</a>
|
|
31
|
+
</p>
|
|
32
|
+
</div>
|
|
33
|
+
|
|
34
|
+
<!-- TABLE OF CONTENTS -->
|
|
35
|
+
<details>
|
|
36
|
+
<summary>Table of Contents</summary>
|
|
37
|
+
<ol>
|
|
38
|
+
<li><a href="#about-the-project">About The Project</a></li>
|
|
39
|
+
<li><a href="#getting-started">Getting Started</a></li>
|
|
40
|
+
<li><a href="#contributing">Contributing</a></li>
|
|
41
|
+
<li><a href="#support-the-project">Support the project</a></li>
|
|
42
|
+
<li><a href="#license">License</a></li>
|
|
43
|
+
</ol>
|
|
44
|
+
</details>
|
|
45
|
+
|
|
46
|
+
<!-- ABOUT THE PROJECT -->
|
|
47
|
+
# About The Project
|
|
48
|
+
|
|
49
|
+
ExpressoTS is a [Typescript](https://www.typescriptlang.org/) + [Node.js](https://nodejs.org/en/) lightweight framework for quick building scalable, easy to read and maintain, server-side applications 🐎
|
|
18
50
|
|
|
19
51
|
## Getting Started
|
|
20
52
|
|
|
21
|
-
- Here is our [
|
|
53
|
+
- Here is our [Site](https://expresso-ts.com/)
|
|
54
|
+
- You can find our [Documentation here](https://doc.expresso-ts.com/)
|
|
22
55
|
- Checkout our [First Steps documentation](https://doc.expresso-ts.com/docs/overview/first-steps)
|
|
23
|
-
- Our [CLI Documentation](https://doc.expresso-ts.com/docs/
|
|
56
|
+
- Our [CLI Documentation](https://doc.expresso-ts.com/docs/cli/overview)
|
|
57
|
+
|
|
58
|
+
## Contributing
|
|
24
59
|
|
|
25
|
-
|
|
60
|
+
Welcome to the ExpressoTS community, a place bustling with innovative minds just like yours. We're absolutely thrilled to have you here!
|
|
61
|
+
ExpressoTS is more than just a TypeScript framework; it's a collective effort by developers who are passionate about creating a more efficient, secure, and robust web ecosystem. We firmly believe that the best ideas come from a diversity of perspectives, backgrounds, and skills.
|
|
26
62
|
|
|
27
|
-
|
|
63
|
+
Why Contribute to Documentation?
|
|
28
64
|
|
|
29
|
-
|
|
65
|
+
- **Share Knowledge**: If you've figured out something cool, why keep it to yourself?
|
|
66
|
+
- **Build Your Portfolio**: Contributing to an open-source project like ExpressoTS is a great way to showcase your skills.
|
|
67
|
+
- **Join a Network**: Get to know a community of like-minded developers.
|
|
68
|
+
- **Improve the Product**: Help us fill in the gaps, correct errors, or make complex topics easier to understand.
|
|
30
69
|
|
|
31
|
-
|
|
70
|
+
Ready to contribute?
|
|
32
71
|
|
|
33
|
-
|
|
72
|
+
- [Contributing Guidelines](https://github.com/expressots/expressots/blob/main/CONTRIBUTING.md)
|
|
73
|
+
- [How to Contribute](https://github.com/expressots/expressots/blob/main/CONTRIBUTING_HOWTO.md)
|
|
74
|
+
- [Coding Guidelines](https://github.com/rsaz/TypescriptCodingGuidelines)
|
|
34
75
|
|
|
35
76
|
## Support the project
|
|
36
77
|
|
|
37
|
-
|
|
78
|
+
ExpressoTS is an independent open source project with ongoing development made possible thanks to your support. If you'd like to help, please consider:
|
|
38
79
|
|
|
39
|
-
- Become a sponsor on
|
|
80
|
+
- Become a **[sponsor on GitHub](https://github.com/sponsors/expressots)**
|
|
40
81
|
- Follow the **[organization](https://github.com/expressots)** on GitHub and Star ⭐ the project
|
|
41
82
|
- Subscribe to the Twitch channel: **[Richard Zampieri](https://www.twitch.tv/richardzampieri)**
|
|
42
83
|
- Join our **[Discord](https://discord.com/invite/PyPJfGK)**
|
|
43
|
-
- Contribute submitting **[issues and pull requests](https://github.com/expressots/expressots/issues
|
|
84
|
+
- Contribute submitting **[issues and pull requests](https://github.com/expressots/expressots/issues)**
|
|
44
85
|
- Share the project with your friends and colleagues
|
|
45
86
|
|
|
46
|
-
## Contributors
|
|
47
|
-
|
|
48
|
-
- [Daniel Boll](https://github.com/daniel-boll)
|
|
49
|
-
- [Felipe Fontana](https://github.com/f0ntana)
|
|
50
|
-
- [Juliano Soares](https://github.com/juliano-soares)
|
|
51
|
-
- [Vitor Caminha](https://github.com/VitorCaminha)
|
|
52
|
-
- [Ariel Betti](https://github.com/ArielBetti)
|
|
53
|
-
- [Rodrigo da Hora](https://github.com/dahorarodrigo)
|
|
54
|
-
|
|
55
|
-
## Backers
|
|
56
|
-
|
|
57
|
-
- Work in progress
|
|
58
|
-
|
|
59
87
|
## License
|
|
60
88
|
|
|
61
|
-
|
|
89
|
+
Distributed under the MIT License. See [`LICENSE.txt`](https://github.com/expressots/expressots/blob/main/LICENSE) for more information.
|
|
90
|
+
|
|
91
|
+
<p align="right">(<a href="#readme-top">back to top</a>)</p>
|
|
92
|
+
|
|
93
|
+
<!-- MARKDOWN LINKS & IMAGES -->
|
|
94
|
+
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
|
|
95
|
+
[contributors-shield]: https://img.shields.io/github/contributors/expressots/expressots?style=for-the-badge
|
|
96
|
+
[contributors-url]: https://github.com/expressots/expressots/graphs/contributors
|
|
97
|
+
[forks-shield]: https://img.shields.io/github/forks/expressots/expressots?style=for-the-badge
|
|
98
|
+
[forks-url]: https://github.com/expressots/expressots/forks
|
|
99
|
+
[stars-shield]: https://img.shields.io/github/stars/expressots/expressots?style=for-the-badge
|
|
100
|
+
[stars-url]: https://github.com/expressots/expressots/stargazers
|
|
101
|
+
[issues-shield]: https://img.shields.io/github/issues/expressots/expressots?style=for-the-badge
|
|
102
|
+
[issues-url]: https://github.com/expressots/expressots/issues
|
|
103
|
+
[license-shield]: https://img.shields.io/github/license/expressots/expressots?style=for-the-badge
|
|
104
|
+
[license-url]: https://github.com/expressots/expressots/blob/main/LICENSE
|
|
105
|
+
[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
|
|
106
|
+
[linkedin-url]: https://www.linkedin.com/company/expresso-ts/
|
|
107
|
+
[product-screenshot]: images/screenshot.png
|
package/lib/CHANGELOG.md
CHANGED
|
@@ -1,153 +1,162 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
## [1.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### Features
|
|
7
|
-
|
|
8
|
-
* bump @release-it/conventional-changelog from 5.1.1 to 6.0.0 ([#61](https://github.com/expressots/expressots/issues/61)) ([634304b](https://github.com/expressots/expressots/commit/634304b8228a0c6f4a4e8298961f46e4bd5c9b7c))
|
|
9
|
-
* bump @types/node from 18.17.4 to 20.4.9 ([#72](https://github.com/expressots/expressots/issues/72)) ([31a887d](https://github.com/expressots/expressots/commit/31a887d3a33923dba4c8d952ec60046e21f08361))
|
|
3
|
+
## [1.8.1](https://github.com/expressots/expressots/compare/1.8.0...1.8.1) (2023-09-10)
|
|
10
4
|
|
|
11
5
|
|
|
12
6
|
### Bug Fixes
|
|
13
7
|
|
|
14
|
-
* add
|
|
15
|
-
|
|
16
|
-
## [1.6.0](https://github.com/expressots/expressots/compare/1.5.1...1.6.0) (2023-08-07)
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
### Features
|
|
20
|
-
|
|
21
|
-
* add community ideas form ([#43](https://github.com/expressots/expressots/issues/43)) ([e23c936](https://github.com/expressots/expressots/commit/e23c9360cec22f21a8f44e04b290cf6aa23aef17))
|
|
22
|
-
* add dependabot for fetch new version of dependencies ([#60](https://github.com/expressots/expressots/issues/60)) ([9ea1033](https://github.com/expressots/expressots/commit/9ea1033809eb19f50ae779824e5e428710c4480d))
|
|
23
|
-
* add prisma provider configuration types in ExpressoConfig ([#71](https://github.com/expressots/expressots/issues/71)) ([4a189a2](https://github.com/expressots/expressots/commit/4a189a2d85aed320d97fff4aebc48dcb0e125adf))
|
|
24
|
-
* bump prettier from 3.0.0 to 3.0.1 ([#68](https://github.com/expressots/expressots/issues/68)) ([b555e19](https://github.com/expressots/expressots/commit/b555e19698fd102c681b50a96e99ad37b399bae7))
|
|
25
|
-
* **prettier:** add a prettier config and run it in the core package ([#58](https://github.com/expressots/expressots/issues/58)) ([2ac367b](https://github.com/expressots/expressots/commit/2ac367b3c5911216a1ffb9b542ae4bb418227eba))
|
|
8
|
+
* add generic in memory db and virtual table analysis ([#86](https://github.com/expressots/expressots/issues/86)) ([29541f9](https://github.com/expressots/expressots/commit/29541f997e47c8ac5f8cafbb0195c34c904454f4))
|
|
26
9
|
|
|
27
10
|
|
|
28
|
-
###
|
|
11
|
+
### Continuous Integrations
|
|
29
12
|
|
|
30
|
-
*
|
|
13
|
+
* config test workflow and setup vitest ([#88](https://github.com/expressots/expressots/issues/88)) ([67316ce](https://github.com/expressots/expressots/commit/67316cece977f04f9750a5a5af6cd88dfc695e0d))
|
|
31
14
|
|
|
32
|
-
## [1.
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
### Bug Fixes
|
|
36
|
-
|
|
37
|
-
* add 404 on opinionated template user usecases ([#41](https://github.com/expressots/expressots/issues/41)) ([e2920cc](https://github.com/expressots/expressots/commit/e2920cce79eaad3fc5f031f45375312cba790103))
|
|
15
|
+
## [1.8.0](https://github.com/expressots/expressots/compare/1.7.0...1.8.0) (2023-09-05)
|
|
38
16
|
|
|
39
|
-
|
|
17
|
+
### Features
|
|
40
18
|
|
|
19
|
+
- add benchmark folder ([#83](https://github.com/expressots/expressots/issues/83)) ([30cb1f9](https://github.com/expressots/expressots/commit/30cb1f922f980de23b0e8e896b552a0708075201))
|
|
20
|
+
- bump prettier from 3.0.1 to 3.0.2 ([#74](https://github.com/expressots/expressots/issues/74)) ([a66f80d](https://github.com/expressots/expressots/commit/a66f80d36967cc6112a30f422ec34a8dcb3efd66))
|
|
21
|
+
- bump prettier from 3.0.2 to 3.0.3 ([#80](https://github.com/expressots/expressots/issues/80)) ([59af991](https://github.com/expressots/expressots/commit/59af99177edc371c5608761c6b3f438806aba898))
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
- increase the event range for graceful shutdown ([#76](https://github.com/expressots/expressots/issues/76)) ([8e88c7e](https://github.com/expressots/expressots/commit/8e88c7e2f1f0b2091c013885a823bbda533de62b))
|
|
26
|
+
- remove verb should from unit tests labels ([#78](https://github.com/expressots/expressots/issues/78)) ([f37d028](https://github.com/expressots/expressots/commit/f37d02878cbf2587028d7c61ecc35c4981721eab))
|
|
27
|
+
- update readme ([c1f0bcd](https://github.com/expressots/expressots/commit/c1f0bcd341284b4259454b579ccaf35091b1e2e1))
|
|
28
|
+
|
|
29
|
+
## [1.7.0](https://github.com/expressots/expressots/compare/1.6.0...1.7.0) (2023-08-14)
|
|
41
30
|
|
|
42
31
|
### Features
|
|
43
32
|
|
|
44
|
-
|
|
33
|
+
- bump @release-it/conventional-changelog from 5.1.1 to 6.0.0 ([#61](https://github.com/expressots/expressots/issues/61)) ([634304b](https://github.com/expressots/expressots/commit/634304b8228a0c6f4a4e8298961f46e4bd5c9b7c))
|
|
34
|
+
- bump @types/node from 18.17.4 to 20.4.9 ([#72](https://github.com/expressots/expressots/issues/72)) ([31a887d](https://github.com/expressots/expressots/commit/31a887d3a33923dba4c8d952ec60046e21f08361))
|
|
45
35
|
|
|
46
|
-
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
- add `options` parameter to `AppContainer` ([#73](https://github.com/expressots/expressots/issues/73)) ([804d5cd](https://github.com/expressots/expressots/commit/804d5cd568830584322d877b91dffaed8c952e56))
|
|
47
39
|
|
|
40
|
+
## [1.6.0](https://github.com/expressots/expressots/compare/1.5.1...1.6.0) (2023-08-07)
|
|
48
41
|
|
|
49
42
|
### Features
|
|
50
43
|
|
|
51
|
-
|
|
44
|
+
- add community ideas form ([#43](https://github.com/expressots/expressots/issues/43)) ([e23c936](https://github.com/expressots/expressots/commit/e23c9360cec22f21a8f44e04b290cf6aa23aef17))
|
|
45
|
+
- add dependabot for fetch new version of dependencies ([#60](https://github.com/expressots/expressots/issues/60)) ([9ea1033](https://github.com/expressots/expressots/commit/9ea1033809eb19f50ae779824e5e428710c4480d))
|
|
46
|
+
- add prisma provider configuration types in ExpressoConfig ([#71](https://github.com/expressots/expressots/issues/71)) ([4a189a2](https://github.com/expressots/expressots/commit/4a189a2d85aed320d97fff4aebc48dcb0e125adf))
|
|
47
|
+
- bump prettier from 3.0.0 to 3.0.1 ([#68](https://github.com/expressots/expressots/issues/68)) ([b555e19](https://github.com/expressots/expressots/commit/b555e19698fd102c681b50a96e99ad37b399bae7))
|
|
48
|
+
- **prettier:** add a prettier config and run it in the core package ([#58](https://github.com/expressots/expressots/issues/58)) ([2ac367b](https://github.com/expressots/expressots/commit/2ac367b3c5911216a1ffb9b542ae4bb418227eba))
|
|
52
49
|
|
|
50
|
+
### Bug Fixes
|
|
51
|
+
|
|
52
|
+
- add workflow for auto project and label ([#44](https://github.com/expressots/expressots/issues/44)) ([1306d18](https://github.com/expressots/expressots/commit/1306d181bc904384a3edea0be219bba891b865cf))
|
|
53
|
+
|
|
54
|
+
## [1.5.1](https://github.com/expressots/expressots/compare/1.5.0...1.5.1) (2023-07-16)
|
|
53
55
|
|
|
54
56
|
### Bug Fixes
|
|
55
57
|
|
|
56
|
-
|
|
58
|
+
- add 404 on opinionated template user usecases ([#41](https://github.com/expressots/expressots/issues/41)) ([e2920cc](https://github.com/expressots/expressots/commit/e2920cce79eaad3fc5f031f45375312cba790103))
|
|
57
59
|
|
|
58
|
-
## [1.
|
|
60
|
+
## [1.5.0](https://github.com/expressots/expressots/compare/1.5.0-dev...1.5.0) (2023-07-12)
|
|
61
|
+
|
|
62
|
+
### Features
|
|
59
63
|
|
|
64
|
+
- add render engine for handlebars ([1257fe0](https://github.com/expressots/expressots/commit/1257fe08ec0bf9096af1927caddf6fa2a8d481e8))
|
|
65
|
+
|
|
66
|
+
## [1.5.0](https://github.com/expressots/expressots/compare/v1.4.2...v1.5.0) (2023-07-11)
|
|
67
|
+
|
|
68
|
+
### Features
|
|
69
|
+
|
|
70
|
+
- add render engine mechanic and handlebars sup ([#37](https://github.com/expressots/expressots/issues/37)) ([c9f1c61](https://github.com/expressots/expressots/commit/c9f1c616c3480575c013e1e3e6b397e9b6870fb2))
|
|
60
71
|
|
|
61
72
|
### Bug Fixes
|
|
62
73
|
|
|
63
|
-
|
|
64
|
-
* remove exclude pattern ([#33](https://github.com/expressots/expressots/issues/33)) ([9f5461b](https://github.com/expressots/expressots/commit/9f5461be50eaf4c0aa60952eef7e120228740287))
|
|
65
|
-
* update cicd ([#32](https://github.com/expressots/expressots/issues/32)) ([c6e4820](https://github.com/expressots/expressots/commit/c6e4820bd20b8c1fc43cbc80ddb609031d893f36))
|
|
66
|
-
* update usecases to the new error handling ([1471e25](https://github.com/expressots/expressots/commit/1471e252f9e05f4a1f034a95d248c27cdbb306cd))
|
|
74
|
+
- remove npm auto publish from ci ([#35](https://github.com/expressots/expressots/issues/35)) ([c7145aa](https://github.com/expressots/expressots/commit/c7145aa5b7e99ee774141824437c30df9e3f4882))
|
|
67
75
|
|
|
68
|
-
## [1.4.
|
|
76
|
+
## [1.4.2](https://github.com/expressots/expressots/compare/v1.4.1...v1.4.2) (2023-06-19)
|
|
69
77
|
|
|
78
|
+
### Bug Fixes
|
|
79
|
+
|
|
80
|
+
- error handling ([#34](https://github.com/expressots/expressots/issues/34)) ([0c8bdc8](https://github.com/expressots/expressots/commit/0c8bdc8b933f64b76299396429162c0acae24feb))
|
|
81
|
+
- remove exclude pattern ([#33](https://github.com/expressots/expressots/issues/33)) ([9f5461b](https://github.com/expressots/expressots/commit/9f5461be50eaf4c0aa60952eef7e120228740287))
|
|
82
|
+
- update cicd ([#32](https://github.com/expressots/expressots/issues/32)) ([c6e4820](https://github.com/expressots/expressots/commit/c6e4820bd20b8c1fc43cbc80ddb609031d893f36))
|
|
83
|
+
- update usecases to the new error handling ([1471e25](https://github.com/expressots/expressots/commit/1471e252f9e05f4a1f034a95d248c27cdbb306cd))
|
|
84
|
+
|
|
85
|
+
## [1.4.1](https://github.com/expressots/expressots/compare/v1.4.0...v1.4.1) (2023-06-14)
|
|
70
86
|
|
|
71
87
|
### Bug Fixes
|
|
72
88
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
89
|
+
- add user crud, remove ping, app.container ([befb447](https://github.com/expressots/expressots/commit/befb44720185d95fab2d275f79d5d5152cba2836))
|
|
90
|
+
- correct bootstrap function name ([1b99dcc](https://github.com/expressots/expressots/commit/1b99dcc0a3910fcc490a19db169f3799e95ca175))
|
|
91
|
+
- report known error in middleware ([#31](https://github.com/expressots/expressots/issues/31)) ([3790e24](https://github.com/expressots/expressots/commit/3790e24e9c30f3823a5b88eb4525cc892d5866df))
|
|
92
|
+
- update .env.example ([90c0375](https://github.com/expressots/expressots/commit/90c0375763d5d942332a6217fa23c17d4f2d7260))
|
|
93
|
+
- update changelog ([4e117b9](https://github.com/expressots/expressots/commit/4e117b9e4463374705fee83707444e0a112b656b))
|
|
94
|
+
- update core and template readme ([b2cc461](https://github.com/expressots/expressots/commit/b2cc461e730a24e7cadd323266fa1c862af7cf65))
|
|
95
|
+
- update non-op template app.container ([11a3938](https://github.com/expressots/expressots/commit/11a3938a8e1fa24e95da33cad0761967c9d6cd8e))
|
|
96
|
+
- update response type on controllers ([8ca9f5e](https://github.com/expressots/expressots/commit/8ca9f5eac99a3a921c7b6c39fb8129cee4670889))
|
|
97
|
+
- update singleton decorator in dbInmemory ([61bd590](https://github.com/expressots/expressots/commit/61bd590d06b96d297e6da8f92638df1ee8edce6b))
|
|
82
98
|
|
|
83
99
|
## [1.4.0](https://github.com/expressots/expressots/compare/v1.3.0...v1.4.0) (2023-05-14)
|
|
84
100
|
|
|
85
|
-
|
|
101
|
+
- add DI (dependency injection) singleton, transient, scope to container, providers, entities, etc
|
|
86
102
|
|
|
87
103
|
### Bug Fixes
|
|
88
104
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
105
|
+
- update sponsor link on package
|
|
106
|
+
- add example with controller only ([11b4ce3](https://github.com/expressots/expressots/commit/11b4ce3124482122a4f47fb27b7a1b1e02731621))
|
|
107
|
+
- opinionated template ientity id ([dd50ca0](https://github.com/expressots/expressots/commit/dd50ca0926c98890cbe1342f804ca34152c4a9f9))
|
|
92
108
|
|
|
93
109
|
## [1.3.0](https://github.com/expressots/expressots/compare/v1.2.1...v1.3.0) (2023-04-21)
|
|
94
110
|
|
|
95
|
-
|
|
96
111
|
### Features
|
|
97
112
|
|
|
98
|
-
|
|
99
|
-
|
|
113
|
+
- add user repository as singleton provider in opinionated template ([#24](https://github.com/expressots/expressots/issues/24)) ([3b5bded](https://github.com/expressots/expressots/commit/3b5bded07769d51f69b481e4b5e9b45c27d13a69))
|
|
100
114
|
|
|
101
115
|
### Bug Fixes
|
|
102
116
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
117
|
+
- add gitignore on opinionated template ([315d355](https://github.com/expressots/expressots/commit/315d355ed87eb6be85daddc250289d5e0d41cd21))
|
|
118
|
+
- findall use case query db in memory ([ff8feea](https://github.com/expressots/expressots/commit/ff8feeaf36d0b74eebd9ab4e22f1910cff0a4df8))
|
|
119
|
+
- the number of constructor arguments ([ccf2a48](https://github.com/expressots/expressots/commit/ccf2a4878e795e0182608546eae8cd83e3bea775))
|
|
120
|
+
- update core pkg templates to always download latest ([ca443eb](https://github.com/expressots/expressots/commit/ca443eb6be103725c73442f49e2fec14d797bba1))
|
|
107
121
|
|
|
108
122
|
## [1.2.1](https://github.com/expressots/expressots/compare/v1.2.0...v1.2.1) (2023-04-18)
|
|
109
123
|
|
|
110
|
-
|
|
111
124
|
### Features
|
|
112
125
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
126
|
+
- add bug report template ([8a160c4](https://github.com/expressots/expressots/commit/8a160c4b0b53be39a0fa42315936291be6694c8c))
|
|
127
|
+
- add feature request template ([9d264c6](https://github.com/expressots/expressots/commit/9d264c68e44fee754c906846aaa7a7c89cb6b571))
|
|
116
128
|
|
|
117
129
|
### Bug Fixes
|
|
118
130
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
131
|
+
- add expresso config ([086ba59](https://github.com/expressots/expressots/commit/086ba59aba1d430877c3807eb77df9460413dbce))
|
|
132
|
+
- add PR template ([1ce4b65](https://github.com/expressots/expressots/commit/1ce4b651a16d602ed459049eeac4200bb80e7651))
|
|
133
|
+
- config-path for build ([72d8086](https://github.com/expressots/expressots/commit/72d8086cc1067add1a3d69c8c13bc5b5d6b7e024))
|
|
134
|
+
- expose express.json() config ([717f677](https://github.com/expressots/expressots/commit/717f6779e033d0e616f7fd464b81edb6bf95c1a9))
|
|
135
|
+
- template import errors from dtos ([#25](https://github.com/expressots/expressots/issues/25)) ([471e311](https://github.com/expressots/expressots/commit/471e3114a4afa9a9dc4af16b872e75f6ef436ae3))
|
|
136
|
+
- update doc contributor ([75cc0cc](https://github.com/expressots/expressots/commit/75cc0cc6f7a0b0527b566c5a4e842c9d13c68ee9))
|
|
137
|
+
- update expressots version ([e170a1f](https://github.com/expressots/expressots/commit/e170a1fd1aab61fd2403707a54c8b027139eb26c))
|
|
138
|
+
- update jest config ([6b33fd6](https://github.com/expressots/expressots/commit/6b33fd6117d32a29d2516831b3a8e7ecd16dfb65))
|
|
139
|
+
- update non-opinionated config ([1b10e0e](https://github.com/expressots/expressots/commit/1b10e0e3ba9f679b2cc59d4c3ec75a8c2e238d43))
|
|
140
|
+
- update opinionated template ([b7bde50](https://github.com/expressots/expressots/commit/b7bde50ec10b9ad9c2d855d1189ad3ccf4e68108))
|
|
141
|
+
- update opinionated template ([cae55a0](https://github.com/expressots/expressots/commit/cae55a04d1282c08668ee5ef12b9976400e2acfd))
|
|
142
|
+
- update templates ([e58af09](https://github.com/expressots/expressots/commit/e58af0995c8f71ad104d1cc4cab79e74ba257bb1))
|
|
143
|
+
- update test coverage path ([0804c5c](https://github.com/expressots/expressots/commit/0804c5c4b6fd4437a69330a40621408273ffdfac))
|
|
132
144
|
|
|
133
145
|
## [1.2.0](https://github.com/expressots/expressots/compare/v1.1.0...v1.2.0) (2023-04-08)
|
|
134
146
|
|
|
135
|
-
|
|
136
147
|
### Features
|
|
137
148
|
|
|
138
|
-
|
|
139
|
-
|
|
149
|
+
- add doc & config types for cli ([a72db25](https://github.com/expressots/expressots/commit/a72db25088a8c2d0a18cd8fc71dde40e01cd4c22))
|
|
140
150
|
|
|
141
151
|
### Bug Fixes
|
|
142
152
|
|
|
143
|
-
|
|
153
|
+
- template folder path issue ([babdce9](https://github.com/expressots/expressots/commit/babdce9367f85ddd2075c4bed854ab83ee339add))
|
|
144
154
|
|
|
145
155
|
## [1.1.1](https://github.com/expressots/expressots/compare/v1.1.0...v1.1.1) (2023-04-04)
|
|
146
156
|
|
|
147
|
-
|
|
148
157
|
### Bug Fixes
|
|
149
158
|
|
|
150
|
-
|
|
159
|
+
- template folder path issue ([babdce9](https://github.com/expressots/expressots/commit/babdce9367f85ddd2075c4bed854ab83ee339add))
|
|
151
160
|
|
|
152
161
|
## [1.1.0](https://github.com/expressots/expressots/compare/v1.1.0-42-gc6f184868daa1b6862337621c69b5370b70a2772...v1.1.0) (2023-03-31)
|
|
153
162
|
|
|
@@ -159,7 +168,7 @@
|
|
|
159
168
|
|
|
160
169
|
## [1.2.0](https://github.com/expressots/expressots/compare/v1.1.0-35-g27548a8d24a0891d1d04fca1ba131ad585fba5ef...v1.2.0) (2023-03-31)
|
|
161
170
|
|
|
162
|
-
|
|
171
|
+
- feat: add cjs/esm (92f858f)
|
|
163
172
|
|
|
164
173
|
## [1.1.0](https://github.com/expressots/expressots/compare/v1.1.0-32-gd0aa36eefab521c3be83d72c873e3d34d4ea88eb...v1.1.0) (2023-03-31)
|
|
165
174
|
|
|
@@ -167,84 +176,75 @@
|
|
|
167
176
|
|
|
168
177
|
## [1.1.0](https://github.com/expressots/expressots/compare/v0.0.2...v1.1.0) (2023-02-19)
|
|
169
178
|
|
|
170
|
-
|
|
171
179
|
### Features
|
|
172
180
|
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
181
|
+
- add eslint prettier config ([906cdcc](https://github.com/expressots/expressots/commit/906cdcc0ebf00bee55c8cab66e95dd74c9296cb8))
|
|
182
|
+
- add opinionated template ([d1eb222](https://github.com/expressots/expressots/commit/d1eb222016c809a1a4576cce5b51660d55ad7c19))
|
|
183
|
+
- add readme ([557e1ff](https://github.com/expressots/expressots/commit/557e1ffcd41d1e482372183a0ea72820531740d7))
|
|
184
|
+
- update 01_base template ([d289c57](https://github.com/expressots/expressots/commit/d289c5752bb78ad6bce7f35fcdb7019e7cc38b6a))
|
|
178
185
|
|
|
179
186
|
### Bug Fixes
|
|
180
187
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
188
|
+
- add ping controller ([ca7b005](https://github.com/expressots/expressots/commit/ca7b005be099eadc35b5e6b96aaf82c0e3840c81))
|
|
189
|
+
- fix index.js main on package ([26596b7](https://github.com/expressots/expressots/commit/26596b7982143e63186461bde1324a81a8901446))
|
|
190
|
+
- fix jest compilation error ([9c5be2e](https://github.com/expressots/expressots/commit/9c5be2e8a1dc062618d048183dfeef08d67d8e70))
|
|
191
|
+
- fix release tag pipeline ([#12](https://github.com/expressots/expressots/issues/12)) ([d2a5491](https://github.com/expressots/expressots/commit/d2a5491dce149feb2a7b143d57ba1e08d8a2d68b))
|
|
192
|
+
- logo update on doc ([b2fe55b](https://github.com/expressots/expressots/commit/b2fe55b54fcac09bf261b5ea5cab4ebdbe20dee1))
|
|
193
|
+
- logo update on doc, build update ([b36889d](https://github.com/expressots/expressots/commit/b36889d513ed07678b43f7107ef9cd49ab5f8afa))
|
|
194
|
+
- non opinionated folder and prettier ([61d1e1b](https://github.com/expressots/expressots/commit/61d1e1b45e9bd240d4a6fd12a71f814e0426a436))
|
|
195
|
+
- prettier eslint jest setup ([0f29452](https://github.com/expressots/expressots/commit/0f29452c796abefe205ece8b943efda24b383905))
|
|
196
|
+
- remove test-app ([767c7a5](https://github.com/expressots/expressots/commit/767c7a54ea65c228a94ba3d63e5b6739c474a96e))
|
|
197
|
+
- set pipeline only pr merge ([2936442](https://github.com/expressots/expressots/commit/293644285f4dd611ab6b600c462a6559f9625605))
|
|
198
|
+
- update main remove index.js ([8b40b11](https://github.com/expressots/expressots/commit/8b40b11c51da728db4f8760e75fee1e2724e98e0))
|
|
199
|
+
- update readme ([a2ef784](https://github.com/expressots/expressots/commit/a2ef7849a1c1466f8737f263ad1728f5d30b25ec))
|
|
193
200
|
|
|
194
201
|
## [0.0.7](https://github.com/expressots/expressots/compare/v0.0.2...v0.0.7) (2023-02-18)
|
|
195
202
|
|
|
196
|
-
|
|
197
203
|
### Bug Fixes
|
|
198
204
|
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
205
|
+
- fix release step ([6e4d7b9](https://github.com/expressots/expressots/commit/6e4d7b956833cf9f956c4dbb0e063d9e50f92e3e))
|
|
206
|
+
- fix release tag pipeline ([#12](https://github.com/expressots/expressots/issues/12)) ([d2a5491](https://github.com/expressots/expressots/commit/d2a5491dce149feb2a7b143d57ba1e08d8a2d68b))
|
|
207
|
+
- set pipeline only pr merge ([2936442](https://github.com/expressots/expressots/commit/293644285f4dd611ab6b600c462a6559f9625605))
|
|
202
208
|
|
|
203
209
|
## [0.0.6](https://github.com/expressots/expressots/compare/v0.0.2...v0.0.6) (2023-02-17)
|
|
204
210
|
|
|
205
|
-
|
|
206
211
|
### Bug Fixes
|
|
207
212
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
213
|
+
- fix pipeline release ([69e3fc4](https://github.com/expressots/expressots/commit/69e3fc497b8b4c79556663a768c1aab417c5bca6))
|
|
214
|
+
- fix release tag pipeline ([#12](https://github.com/expressots/expressots/issues/12)) ([d2a5491](https://github.com/expressots/expressots/commit/d2a5491dce149feb2a7b143d57ba1e08d8a2d68b))
|
|
215
|
+
- set pipeline only pr merge ([2936442](https://github.com/expressots/expressots/commit/293644285f4dd611ab6b600c462a6559f9625605))
|
|
211
216
|
|
|
212
217
|
## [0.0.5](https://github.com/expressots/expressots/compare/v0.0.2...v0.0.5) (2023-02-17)
|
|
213
218
|
|
|
214
|
-
|
|
215
219
|
### Bug Fixes
|
|
216
220
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
221
|
+
- fix pipeline on push ([da20e93](https://github.com/expressots/expressots/commit/da20e93665a7fd51f449f0c6ae71cd485028d1f4))
|
|
222
|
+
- fix release tag pipeline ([#12](https://github.com/expressots/expressots/issues/12)) ([d2a5491](https://github.com/expressots/expressots/commit/d2a5491dce149feb2a7b143d57ba1e08d8a2d68b))
|
|
223
|
+
- set pipeline only pr merge ([2936442](https://github.com/expressots/expressots/commit/293644285f4dd611ab6b600c462a6559f9625605))
|
|
220
224
|
|
|
221
225
|
## [0.0.4](https://github.com/expressots/expressots/compare/v0.0.2...v0.0.4) (2023-02-17)
|
|
222
226
|
|
|
223
|
-
|
|
224
227
|
### Bug Fixes
|
|
225
228
|
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
+
- fix release tag pipeline ([#12](https://github.com/expressots/expressots/issues/12)) ([d2a5491](https://github.com/expressots/expressots/commit/d2a5491dce149feb2a7b143d57ba1e08d8a2d68b))
|
|
230
|
+
- set pipeline only pr merge ([2936442](https://github.com/expressots/expressots/commit/293644285f4dd611ab6b600c462a6559f9625605))
|
|
231
|
+
- update pipeline ([27dd961](https://github.com/expressots/expressots/commit/27dd961230f5cd2b1b02937f8c77ead9e983e537))
|
|
229
232
|
|
|
230
233
|
## [0.0.3](https://github.com/expressots/expressots/compare/v0.0.2...v0.0.3) (2023-02-17)
|
|
231
234
|
|
|
232
|
-
|
|
233
235
|
### Bug Fixes
|
|
234
236
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
+
- fix release tag pipeline ([ed03d24](https://github.com/expressots/expressots/commit/ed03d24e2696279aa04c8988e2c52ba7209a7bbd))
|
|
238
|
+
- set pipeline only pr merge ([2936442](https://github.com/expressots/expressots/commit/293644285f4dd611ab6b600c462a6559f9625605))
|
|
237
239
|
|
|
238
240
|
## [0.0.2](https://github.com/expressots/expressots/compare/v0.1.1...v0.0.2) (2023-02-17)
|
|
239
241
|
|
|
240
|
-
|
|
241
242
|
### Bug Fixes
|
|
242
243
|
|
|
243
|
-
|
|
244
|
+
- fix pipeline for tag name ([b9ec52d](https://github.com/expressots/expressots/commit/b9ec52dc065763185f69364d8f083b1a95fa37e0))
|
|
244
245
|
|
|
245
246
|
## [0.0.1](https://github.com/expressots/expressots/compare/v0.1.1...v0.0.1) (2023-02-17)
|
|
246
247
|
|
|
247
|
-
|
|
248
248
|
### Bug Fixes
|
|
249
249
|
|
|
250
|
-
|
|
250
|
+
- fix pipeline for tag name ([b9ec52d](https://github.com/expressots/expressots/commit/b9ec52dc065763185f69364d8f083b1a95fa37e0))
|