serverest 2.26.6 → 2.26.7
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 +0 -1
- package/package.json +1 -1
- package/src/app.js +5 -1
- package/src/middlewares/rate-limiter.js +1 -1
- package/src/server.js +0 -0
- package/CHANGELOG.md +0 -1204
package/README.md
CHANGED
|
@@ -188,7 +188,6 @@ Empresas que apoiam o ServeRest:
|
|
|
188
188
|
<img alt="Logo da EBAC" src="https://user-images.githubusercontent.com/29241659/177436481-2a6a3324-1b0e-4d28-8a40-d885f54291c0.png#gh-light-mode-only" height="120">
|
|
189
189
|
<img alt="Logo da EBAC" src="https://user-images.githubusercontent.com/29241659/177436489-5d2f50f8-2fb3-4091-b822-446d24c83722.png#gh-dark-mode-only" height="120">
|
|
190
190
|
<img alt="Logo da Agilizei" src="https://user-images.githubusercontent.com/29241659/177436678-8187f90f-bb4a-4978-87ab-a03f2f80820f.png" height="124">
|
|
191
|
-
<img alt="Logo da Cesar School" src="https://user-images.githubusercontent.com/29241659/198725645-3e42d795-4393-4d9e-abf6-1655ecb83cfa.png" height="150">
|
|
192
191
|
</p>
|
|
193
192
|
|
|
194
193
|
### Individuais
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "serverest",
|
|
3
|
-
"version": "2.26.
|
|
3
|
+
"version": "2.26.7",
|
|
4
4
|
"description": "Servidor REST local de forma rápida e simples para estudo de testes de API",
|
|
5
5
|
"author": "Paulo Gonçalves <paulorochag@hotmail.com> (https://www.linkedin.com/in/paulo-goncalves/)",
|
|
6
6
|
"license": "GPL-3.0",
|
package/src/app.js
CHANGED
|
@@ -29,7 +29,11 @@ app.use(express.urlencoded({ extended: false }))
|
|
|
29
29
|
app.use(queryParser())
|
|
30
30
|
app.use(timeout())
|
|
31
31
|
app.use(cors())
|
|
32
|
-
|
|
32
|
+
|
|
33
|
+
/* istanbul ignore next */
|
|
34
|
+
if (!ehAmbienteDeTestes) {
|
|
35
|
+
app.use(rateLimiter)
|
|
36
|
+
}
|
|
33
37
|
|
|
34
38
|
app.disable('etag')
|
|
35
39
|
|
|
@@ -5,7 +5,7 @@ const { RateLimiterMemory } = require('rate-limiter-flexible')
|
|
|
5
5
|
const { aplicacaoExecutandoLocalmente } = require('../utils/ambiente')
|
|
6
6
|
|
|
7
7
|
const rateLimiter = new RateLimiterMemory({
|
|
8
|
-
points:
|
|
8
|
+
points: 30, // requests
|
|
9
9
|
duration: 2 // segundo por IP
|
|
10
10
|
})
|
|
11
11
|
|
package/src/server.js
CHANGED
|
File without changes
|
package/CHANGELOG.md
DELETED
|
@@ -1,1204 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [2.26.6](https://github.com/ServeRest/ServeRest/compare/v2.26.5...v2.26.6) (2022-10-28)
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### Chores
|
|
7
|
-
|
|
8
|
-
* **patch:** add new sponsor Cesar School ([fc0df2f](https://github.com/ServeRest/ServeRest/commit/fc0df2feacb529d618609a43b2cf941c85a97fdb))
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
### Continuous Integration
|
|
12
|
-
|
|
13
|
-
* avoid concurrency while creating release and deploying ([4da150c](https://github.com/ServeRest/ServeRest/commit/4da150ca545a2cbe0032504e391f704141df38ac))
|
|
14
|
-
* bump actions version to avoid deprecated node version ([9dbd693](https://github.com/ServeRest/ServeRest/commit/9dbd693bd353f163bd96e548183cfa20ee26434b))
|
|
15
|
-
|
|
16
|
-
## [2.26.5](https://github.com/ServeRest/ServeRest/compare/v2.26.4...v2.26.5) (2022-10-18)
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
### Code Refactoring
|
|
20
|
-
|
|
21
|
-
* add concluiCompra method ([0fc3d4c](https://github.com/ServeRest/ServeRest/commit/0fc3d4c217933f1aa73669fc5274c9feaae8b28b))
|
|
22
|
-
* add removeCarrinho method ([8fbbb1b](https://github.com/ServeRest/ServeRest/commit/8fbbb1b28e0ca783e11bce1aff8605ff4a28dc2c))
|
|
23
|
-
* check for carrinhoDoUsuario length and use removeCarrinho method from carrinhosService ([e560be5](https://github.com/ServeRest/ServeRest/commit/e560be539a1a0dc08732f5f863ee912a6afb417d))
|
|
24
|
-
* move all produtosService calls to carrinhosService ([a756731](https://github.com/ServeRest/ServeRest/commit/a756731eb019a17eafeb88880740f345464304b1))
|
|
25
|
-
* move produtosService usage inside carrinhosService ([2837023](https://github.com/ServeRest/ServeRest/commit/28370239995097c4b8cd53fa55e36e17f39def93))
|
|
26
|
-
* remove validation of undefined for returned array ([74a71e2](https://github.com/ServeRest/ServeRest/commit/74a71e20be717e65d5d5b1d1ef6a50466836afa7))
|
|
27
|
-
* use concluiCompra method from carrinhosService ([f5d3bb5](https://github.com/ServeRest/ServeRest/commit/f5d3bb55730a1ab17f813edbff726472e0c33834))
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
### Continuous Integration
|
|
31
|
-
|
|
32
|
-
* fix sonar and contract jobs to clone PR from Fork ([ed48fe9](https://github.com/ServeRest/ServeRest/commit/ed48fe9d6a2ede2f1c97bf4cc6833e8ec8052480))
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
### Miscellaneous
|
|
36
|
-
|
|
37
|
-
* Merge pull request #378 from edumaxsantos/refactoring/carrinhos-controller ([325cdf7](https://github.com/ServeRest/ServeRest/commit/325cdf79d16647b6989313439648a269fc389234)), closes [#378](https://github.com/ServeRest/ServeRest/issues/378)
|
|
38
|
-
* Revert "chore(release): use default changelog content" ([d7ec542](https://github.com/ServeRest/ServeRest/commit/d7ec542c3e1b87ce03b80b1f973f8748189685d6))
|
|
39
|
-
|
|
40
|
-
## [2.26.4](https://github.com/ServeRest/ServeRest/compare/v2.26.3...v2.26.4) (2022-10-14)
|
|
41
|
-
|
|
42
|
-
## [2.26.3](https://github.com/ServeRest/ServeRest/compare/v2.26.2...v2.26.3) (2022-10-12)
|
|
43
|
-
|
|
44
|
-
## [2.26.2](https://github.com/ServeRest/ServeRest/compare/v2.26.1...v2.26.2) (2022-08-18)
|
|
45
|
-
|
|
46
|
-
## [2.26.1](https://github.com/ServeRest/ServeRest/compare/v2.26.0...v2.26.1) (2022-07-08)
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
### Bug Fixes
|
|
50
|
-
|
|
51
|
-
* show user that request ended with timeout ([1f432c4](https://github.com/ServeRest/ServeRest/commit/1f432c429647c871b2075dc8a4259ab52e714e04))
|
|
52
|
-
|
|
53
|
-
# [2.26.0](https://github.com/ServeRest/ServeRest/compare/v2.25.4...v2.26.0) (2022-06-19)
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
### Chores
|
|
57
|
-
|
|
58
|
-
* avoid action unpublished version ([15fab7f](https://github.com/ServeRest/ServeRest/commit/15fab7f4565ef46350cc8959669e1430f02aec03)), closes [#310](https://github.com/ServeRest/ServeRest/issues/310)
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
### Continuous Integration
|
|
62
|
-
|
|
63
|
-
* run mutation test only when files in src/ dir change ([0ed60ad](https://github.com/ServeRest/ServeRest/commit/0ed60ad04bf0db573c7ba23c1ba8826708f29711))
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
### Features
|
|
67
|
-
|
|
68
|
-
* allow load test and route /status to get infos ([7098bff](https://github.com/ServeRest/ServeRest/commit/7098bffed401ec001a1d5eef0406a406a6fd6e97))
|
|
69
|
-
|
|
70
|
-
## [2.25.4](https://github.com/ServeRest/ServeRest/compare/v2.25.3...v2.25.4) (2022-06-19)
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
### Chores
|
|
74
|
-
|
|
75
|
-
* **terratest:** remove specific version that prevents docker build ([7e18f99](https://github.com/ServeRest/ServeRest/commit/7e18f994acd306eb31bbd37c9f6efe80a231f440))
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
### Code Refactoring
|
|
79
|
-
|
|
80
|
-
* **dockerfile:** split multi-stage docker on 2 files to improve docker build time ([0971a56](https://github.com/ServeRest/ServeRest/commit/0971a56ccb5360770c511374b2fe83e84b6d7096))
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
### Continuous Integration
|
|
84
|
-
|
|
85
|
-
* automatic deploy to staging and prod, e2e test and rollback ([10948da](https://github.com/ServeRest/ServeRest/commit/10948dab55428981a425502a7db0f2a02fac4167))
|
|
86
|
-
* cancelar execução anterior em um novo git push ([461eba0](https://github.com/ServeRest/ServeRest/commit/461eba0af5ff5ee43855b396b88e579971e64e95))
|
|
87
|
-
* **e2e:** e2e test must be mandatory for guarantee the release quality ([f239f6d](https://github.com/ServeRest/ServeRest/commit/f239f6d0960b78d564689963161d79bf170238d3))
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
### Documentation
|
|
91
|
-
|
|
92
|
-
* **contributing:** info about continous delivery and about validations ([14d12b5](https://github.com/ServeRest/ServeRest/commit/14d12b5a77af1de14148f364fb39e5515e421c7a))
|
|
93
|
-
* **serverest:** allow import collection to postman ([c5e9bc8](https://github.com/ServeRest/ServeRest/commit/c5e9bc8779f4d20a152fed50cac2ebbee99cb149))
|
|
94
|
-
* **serverest:** show correct version on swagger instead 2.x.x ([75cf178](https://github.com/ServeRest/ServeRest/commit/75cf178c884825d9bb5d215261039ad604efb554))
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
### Tests
|
|
98
|
-
|
|
99
|
-
* **docs:** validate that documentation is accessible - [#202](https://github.com/ServeRest/ServeRest/issues/202) ([7ba01cf](https://github.com/ServeRest/ServeRest/commit/7ba01cf654e0c7d0e138655d7df1b435246213bb))
|
|
100
|
-
* **e2e:** allow E2E testing of production application ([f8c28cf](https://github.com/ServeRest/ServeRest/commit/f8c28cf54eeaf2e8452a474453e45822fcc5c9c7))
|
|
101
|
-
|
|
102
|
-
## [2.25.3](https://github.com/ServeRest/ServeRest/compare/v2.25.2...v2.25.3) (2022-03-18)
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
### Bug Fixes
|
|
106
|
-
|
|
107
|
-
* **agilizei:** fix swagger routes on agilizei.serverest.dev ([19a3a9b](https://github.com/ServeRest/ServeRest/commit/19a3a9bd6afaba2bd98ae74cc9bf29883eb4193f))
|
|
108
|
-
* remove 'performance test' info and /status route ([c675d38](https://github.com/ServeRest/ServeRest/commit/c675d38a12045645c9bd155aaab540afebb8225c))
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
### Chores
|
|
112
|
-
|
|
113
|
-
* **docker:** remove specific version that prevents docker build ([1b60df3](https://github.com/ServeRest/ServeRest/commit/1b60df33124a449abfded1bdba22ba9ef5a7aae3))
|
|
114
|
-
* **makefile:** run 'build run' as default to easier execution ([9d10991](https://github.com/ServeRest/ServeRest/commit/9d10991a7e56fa6ba6d80e3428ca1005ae482ac7))
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
### Documentation
|
|
118
|
-
|
|
119
|
-
* remove companys section because they don't support the project ([7293b8b](https://github.com/ServeRest/ServeRest/commit/7293b8b2a28e333adf0ece3ade697e06d184c85b))
|
|
120
|
-
* remove info about 'uptime' page ([1e8b20a](https://github.com/ServeRest/ServeRest/commit/1e8b20adb77c5d6c6b28fe99ba0c340c1f13196e))
|
|
121
|
-
|
|
122
|
-
## [2.25.2](https://github.com/ServeRest/ServeRest/compare/v2.25.1...v2.25.2) (2021-12-08)
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
### Miscellaneous
|
|
126
|
-
|
|
127
|
-
* Revert "chore(patch): desabilitar monitoramento enquanto ajusto rate limit" ([36f69ce](https://github.com/ServeRest/ServeRest/commit/36f69ceca224a3f90e47a9a950dc5bc376f9e468))
|
|
128
|
-
|
|
129
|
-
## [2.25.1](https://github.com/ServeRest/ServeRest/compare/v2.25.0...v2.25.1) (2021-11-23)
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
### Chores
|
|
133
|
-
|
|
134
|
-
* **patch:** desabilitar monitoramento enquanto ajusto rate limit ([fb5098b](https://github.com/ServeRest/ServeRest/commit/fb5098bea9253e7606d8d5c66f252bf9a6870a3c))
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
### Continuous Integration
|
|
138
|
-
|
|
139
|
-
* **environment:** limit prod secrets to trunk and beta branch ([56fb980](https://github.com/ServeRest/ServeRest/commit/56fb980d9d6add7cc92e96277421ff3a1db3a2c2))
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
### Documentation
|
|
143
|
-
|
|
144
|
-
* **readme:** include playwright automation repo ([492400c](https://github.com/ServeRest/ServeRest/commit/492400c6bbdf3ce48b092e38c1eadc6ac8a0e410))
|
|
145
|
-
|
|
146
|
-
# [2.25.0](https://github.com/ServeRest/ServeRest/compare/v2.24.4...v2.25.0) (2021-11-22)
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
### Chores
|
|
150
|
-
|
|
151
|
-
* criar multi-stage build para execução do projeto com nodemon ([9b8bca5](https://github.com/ServeRest/ServeRest/commit/9b8bca520a67eeaa0d08b3f1323a4cc515d38dd3))
|
|
152
|
-
* **docker:** avoid using 'prepare' on prod image ([bc4a9c7](https://github.com/ServeRest/ServeRest/commit/bc4a9c710fe7a91f27bd991dcfd31a260cbad6c8))
|
|
153
|
-
* **dockerfile:** incluir labels com informações do projeto ([7cbdd6c](https://github.com/ServeRest/ServeRest/commit/7cbdd6c0c60a7907941d1fd5dd2ea30a6d823f17))
|
|
154
|
-
* generate package-lock with newer version of npm ([e7b28a0](https://github.com/ServeRest/ServeRest/commit/e7b28a028c6d9ac547e58c4f12774a211578655a))
|
|
155
|
-
* guarantee that pipeline will break when test fail ([22a9629](https://github.com/ServeRest/ServeRest/commit/22a962982096b40fb7420beca3241161b7aa7f4c))
|
|
156
|
-
* **infra-test:** containerize infra test to easier run ([ad9529d](https://github.com/ServeRest/ServeRest/commit/ad9529dfeda47eacf487b947eec6b4bec7d28fe1))
|
|
157
|
-
* renomear test de api para teste de integração ([1368f38](https://github.com/ServeRest/ServeRest/commit/1368f38c186212d2307884dc0ee434c5ae8996a1))
|
|
158
|
-
* set specific version of base images ([ca4c152](https://github.com/ServeRest/ServeRest/commit/ca4c152ae3174376912977ade20119047f60b8fc))
|
|
159
|
-
* **sonar:** remover análise de coverage de arquivos que não necessitam ter testes ([9f5ae1f](https://github.com/ServeRest/ServeRest/commit/9f5ae1f3e28d71d860b8a58d68b4c3a030cde83b))
|
|
160
|
-
* **test:** exibir cor na execução de teste de integração para facilitar leitura ([44ef82d](https://github.com/ServeRest/ServeRest/commit/44ef82d6e2ea4a1f130d767f40e0341a8489a256))
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
### Continuous Integration
|
|
164
|
-
|
|
165
|
-
* explicitar o nome da imagem docker ([a2eb8c2](https://github.com/ServeRest/ServeRest/commit/a2eb8c238e55acffc7de3b5149120b2627505090))
|
|
166
|
-
* remover execução de teste que não está containerizado ([123eb10](https://github.com/ServeRest/ServeRest/commit/123eb106101bc56201e188c3a925182fce0dc7e1))
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
### Documentation
|
|
170
|
-
|
|
171
|
-
* **contributing:** detalhar a seção de testes com os pacotes utilizados e informação de coverage ([687395e](https://github.com/ServeRest/ServeRest/commit/687395e6e145384c4ac93af096b95bc01f480f2e))
|
|
172
|
-
* **readme:** adicionar repositório de automação em ruby ([bd828af](https://github.com/ServeRest/ServeRest/commit/bd828af2b993e3ef4558e130ed5252a287d52c9c))
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
### Features
|
|
176
|
-
|
|
177
|
-
* **rate-limit:** interceptar requests de testes de carga para não enviar os dados para o moesif ([7683cd0](https://github.com/ServeRest/ServeRest/commit/7683cd0060b3312c17305496d580729f3a71a687))
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
### Tests
|
|
181
|
-
|
|
182
|
-
* fix infra test error ([6345210](https://github.com/ServeRest/ServeRest/commit/634521029dadc92ba3e0b52775b008c7c80bf37f))
|
|
183
|
-
* **infra:** avoid test caching ([befbf6e](https://github.com/ServeRest/ServeRest/commit/befbf6e7d7318964d86f94cb4f12dcdb9b3ff407))
|
|
184
|
-
* **unitario:** garantir comportamento do método getRandomFinancialContributor ([d4debd7](https://github.com/ServeRest/ServeRest/commit/d4debd7691255e307dcef61c986d7486cfc51d30))
|
|
185
|
-
* utilizar multi-stage build ([ed69b62](https://github.com/ServeRest/ServeRest/commit/ed69b6269178ec13382f643a22226fc4dcfe2fe4))
|
|
186
|
-
|
|
187
|
-
## [2.24.4](https://github.com/ServeRest/ServeRest/compare/v2.24.3...v2.24.4) (2021-10-13)
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
### Chores
|
|
191
|
-
|
|
192
|
-
* **makefile:** executar as imagens utilizando 'docker-compose up' ao invés de run ([d8f3885](https://github.com/ServeRest/ServeRest/commit/d8f3885f6ec9c5d43ca51ddd32f46c6a42940991))
|
|
193
|
-
* bump stryker-mutator and stryker-diff-runner to latest ([e9fa90d](https://github.com/ServeRest/ServeRest/commit/e9fa90d5d04f70ecb07d08142b6e48fa02a747ed))
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
### Code Refactoring
|
|
197
|
-
|
|
198
|
-
* **database:** alterar o banco de dados para um fork atualizado e com promise implementado ([ee2eca3](https://github.com/ServeRest/ServeRest/commit/ee2eca33ee38b4b51f32c0b9d88876bf0a761ce7))
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
### Continuous Integration
|
|
202
|
-
|
|
203
|
-
* executar webhook encima de commit deployado ([da7c099](https://github.com/ServeRest/ServeRest/commit/da7c099b42e79e033e823b230e58d928386b1df5))
|
|
204
|
-
* fixar versão do semantic-release ([bc37107](https://github.com/ServeRest/ServeRest/commit/bc37107683771ca4e0103f35bef2908f2e9b9a4f))
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
### Documentation
|
|
208
|
-
|
|
209
|
-
* **patch:** detalhar sobre como usar para teste de carga ([c676d7a](https://github.com/ServeRest/ServeRest/commit/c676d7acd96f4d5d4c0d70479aef9cd455beb862))
|
|
210
|
-
|
|
211
|
-
## [2.24.3](https://github.com/ServeRest/ServeRest/compare/v2.24.2...v2.24.3) (2021-08-07)
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
### Chores
|
|
215
|
-
|
|
216
|
-
* **patch:** exibir nome de apoiador financeiro de forma randômica no terminal em agradecimento ([0cdf51a](https://github.com/ServeRest/ServeRest/commit/0cdf51a17df5e6424be108cc5e045dc4ad19b8aa))
|
|
217
|
-
* **sonar:** remove scan fron server.js ([6ab2188](https://github.com/ServeRest/ServeRest/commit/6ab21880267a18fab341e04b1c5e27f727bc262c))
|
|
218
|
-
* containerize contract test ([70f596b](https://github.com/ServeRest/ServeRest/commit/70f596b22acd64d56bfda59a3eeb862944fd81a4))
|
|
219
|
-
* containerize integration test ([003951d](https://github.com/ServeRest/ServeRest/commit/003951d88a387b170c1f27966890787c970136db))
|
|
220
|
-
* containerize mutation test ([7448051](https://github.com/ServeRest/ServeRest/commit/74480512a65f70b616829fafba9ebacf4d5e136c))
|
|
221
|
-
* containerize mutation test diff ([6adee62](https://github.com/ServeRest/ServeRest/commit/6adee62563d1a0a17415a1b5e55184b0a128f4e8))
|
|
222
|
-
* create docker-compose base ([d7089e9](https://github.com/ServeRest/ServeRest/commit/d7089e91c58c3d57ff343d9809809d881400d77a))
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
### Continuous Integration
|
|
226
|
-
|
|
227
|
-
* **test-contract:** remove unused env variable ([69337d0](https://github.com/ServeRest/ServeRest/commit/69337d0208573e557ac983ef4b323926c6725a09))
|
|
228
|
-
* remove global environment ([f400b89](https://github.com/ServeRest/ServeRest/commit/f400b8918801483a42a57c02d5ff2f36a2e0423e))
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
### Documentation
|
|
232
|
-
|
|
233
|
-
* **contributing:** update with info about 'make' ([eef85c9](https://github.com/ServeRest/ServeRest/commit/eef85c9ef2fb73346a34a583248bc951c14c118b))
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
### Tests
|
|
237
|
-
|
|
238
|
-
* **contract:** refatorar o teste para permitir alteração de contrato ([286a413](https://github.com/ServeRest/ServeRest/commit/286a413f0bb8d62ca20bcfbd84354577fea74b83))
|
|
239
|
-
|
|
240
|
-
## [2.24.2](https://github.com/ServeRest/ServeRest/compare/v2.24.1...v2.24.2) (2021-05-18)
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
### Bug Fixes
|
|
244
|
-
|
|
245
|
-
* **logger:** ignorar apenas as requests para as rotas apontadas ([57bbb90](https://github.com/ServeRest/ServeRest/commit/57bbb9026b518892e8c41b59f388218ce82a37ad))
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
### Continuous Integration
|
|
249
|
-
|
|
250
|
-
* **contract-test:** executar teste de contrato no commit gerado pela release ([42bd082](https://github.com/ServeRest/ServeRest/commit/42bd0827412f2a743d0b04f623a42bba951874a7))
|
|
251
|
-
|
|
252
|
-
## [2.24.1](https://github.com/ServeRest/ServeRest/compare/v2.24.0...v2.24.1) (2021-05-16)
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
### Chores
|
|
256
|
-
|
|
257
|
-
* **mergify:** habilitar merge automático de PR do dependabot ([23a9fba](https://github.com/ServeRest/ServeRest/commit/23a9fbac73d2ed10038e934732a7d8ed766d0d4c))
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
### Continuous Integration
|
|
261
|
-
|
|
262
|
-
* executar teste de contrato via webhooks do pactflow ([c18eec5](https://github.com/ServeRest/ServeRest/commit/c18eec53b021c1c0bb828e60b0632ac08872927c))
|
|
263
|
-
* **contrato:** gerar tag após deploy ([44041e4](https://github.com/ServeRest/ServeRest/commit/44041e476d9e58bc641e7a5d24730f337dd3f891))
|
|
264
|
-
* **contrato:** possibilitar trigger de pipeline pelo consumer ([cd5fbc6](https://github.com/ServeRest/ServeRest/commit/cd5fbc6782dd727828c38f32bd08553f979944bd))
|
|
265
|
-
* **sonar:** implementar análise estática com SonarCloud ([cca3980](https://github.com/ServeRest/ServeRest/commit/cca39807ae89ad5f6a2cee159fee2f9e341a1e21))
|
|
266
|
-
* executar teste apenas em versão node LTS e em diversos OS ([165f9ac](https://github.com/ServeRest/ServeRest/commit/165f9ac9da39d657d6f9fa67ea5ee4f3d4fd37f3))
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
### Documentation
|
|
270
|
-
|
|
271
|
-
* **contributing:** corrigir URL de texto sobre teste de infra ([027fb5a](https://github.com/ServeRest/ServeRest/commit/027fb5adb9609e20d5aab8658fadd3378918b33c))
|
|
272
|
-
* **serverest:** implementar nova documentação com swagger ([8b8cd4f](https://github.com/ServeRest/ServeRest/commit/8b8cd4fe9dd1e8e19bdf6ea0397d1d4371492e16)), closes [#165](https://github.com/ServeRest/ServeRest/issues/165) [#235](https://github.com/ServeRest/ServeRest/issues/235)
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
### Tests
|
|
276
|
-
|
|
277
|
-
* **contrato:** corrigir para que pegue a branch e hash correta ([#244](https://github.com/ServeRest/ServeRest/issues/244)) ([445df86](https://github.com/ServeRest/ServeRest/commit/445df86bc3efae1a552f025ae5129292904d9e98))
|
|
278
|
-
* **contrato:** validar integração entre front e back ([6c5f863](https://github.com/ServeRest/ServeRest/commit/6c5f863d6381c419fbdea6701564e7802c2566f7))
|
|
279
|
-
|
|
280
|
-
# [2.24.0](https://github.com/ServeRest/ServeRest/compare/v2.23.2...v2.24.0) (2021-04-21)
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
### Continuous Integration
|
|
284
|
-
|
|
285
|
-
* **ssh:** voltar para versão estável da action ssh-key ([bec776f](https://github.com/ServeRest/ServeRest/commit/bec776fdef8c62b34bc854989b37a6d29fc198d5))
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
### Features
|
|
289
|
-
|
|
290
|
-
* busca por dados de usuário e produtos com dados equivalentes ([dffdd7b](https://github.com/ServeRest/ServeRest/commit/dffdd7b7973cb603b967df854adcf56d9698273a))
|
|
291
|
-
|
|
292
|
-
## [2.23.2](https://github.com/ServeRest/ServeRest/compare/v2.23.1...v2.23.2) (2021-04-18)
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
### Chores
|
|
296
|
-
|
|
297
|
-
* bump dependencies ([6c8cad4](https://github.com/ServeRest/ServeRest/commit/6c8cad4b61acb22e6cfff7efe9ee6afd90d7387f))
|
|
298
|
-
* **husky:** bump husky da v4 para a v5 ([d87f635](https://github.com/ServeRest/ServeRest/commit/d87f6351abb055a1d14e6a3bc8a2eb60e586d994))
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
### Code Refactoring
|
|
302
|
-
|
|
303
|
-
* mover os testes de integração para respectivo diretório ([dcb55b8](https://github.com/ServeRest/ServeRest/commit/dcb55b87f14db658d51ce29972aea6e03a16a030))
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
### Documentation
|
|
307
|
-
|
|
308
|
-
* **serverest:** incluir logo no README e favicon na documentação ([a0ec748](https://github.com/ServeRest/ServeRest/commit/a0ec748d494554ce6181a8e2fdd89bb73fda9792))
|
|
309
|
-
* possibilitar a alteração da documentação para todos os colaboradores ([43e2f9c](https://github.com/ServeRest/ServeRest/commit/43e2f9cf3a525420edb9de1965e92d0f46ff6ed0))
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
### Styles
|
|
313
|
-
|
|
314
|
-
* **docker:** execute dockerfile lint on CI ([6368483](https://github.com/ServeRest/ServeRest/commit/63684838701b69b0fb36a4d8fb5d174b23c5ce68))
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
### Tests
|
|
318
|
-
|
|
319
|
-
* **docker:** implementar teste de infra, validando mensagem retornada ([3486c9a](https://github.com/ServeRest/ServeRest/commit/3486c9a21a57ef2227a121e4b28d8f79482374bf))
|
|
320
|
-
|
|
321
|
-
## [2.23.1](https://github.com/ServeRest/ServeRest/compare/v2.23.0...v2.23.1) (2021-03-20)
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
### Bug Fixes
|
|
325
|
-
|
|
326
|
-
* **docker:** informar o usuário, ao iniciar o ServeRest via docker, da existência da opção de --help ([5e284d0](https://github.com/ServeRest/ServeRest/commit/5e284d0f82aebf0f0a1d0c5f1def88d5bc24368c))
|
|
327
|
-
|
|
328
|
-
# [2.23.0](https://github.com/ServeRest/ServeRest/compare/v2.22.1...v2.23.0) (2021-03-20)
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
### Bug Fixes
|
|
332
|
-
|
|
333
|
-
* estava abrindo URL incorreta ao iniciar o ServeRest utilizando porta diferente da padrão ([95ea7ae](https://github.com/ServeRest/ServeRest/commit/95ea7aee0110ac6e6533ae6f837aa28ecdb2f378))
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
### Chores
|
|
337
|
-
|
|
338
|
-
* **monitor:** mapear as configurações utilizadas pelos usuários do ServeRest que usam NPM e Docker ([9d31551](https://github.com/ServeRest/ServeRest/commit/9d315518ad8fea9a5e0da385fce84764ae8e450a))
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
### Continuous Integration
|
|
342
|
-
|
|
343
|
-
* **check-link:** reduzir periodicidade de validação dos links em arquivos .md ([2f6971d](https://github.com/ServeRest/ServeRest/commit/2f6971d6db71727b9423cb6f9d17ceb82972a626))
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
### Features
|
|
347
|
-
|
|
348
|
-
* **docker:** habilitar a exibição das saídas da imagem com cor ([5365bfe](https://github.com/ServeRest/ServeRest/commit/5365bfe2b10f55a3a909abd32c3d5289dc4b69e7))
|
|
349
|
-
* **docker:** possibilitar configuração de porta, timeout, ajuda, etc. na execução da imagem ([6f8d416](https://github.com/ServeRest/ServeRest/commit/6f8d416e477307ebf8499922ba6f4ec6ec9bfc24))
|
|
350
|
-
|
|
351
|
-
## [2.22.1](https://github.com/ServeRest/ServeRest/compare/v2.22.0...v2.22.1) (2021-03-18)
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
### Chores
|
|
355
|
-
|
|
356
|
-
* **patch:** não monitorar acesso à documentação do ServeRest em Agilizei ([ac2ed32](https://github.com/ServeRest/ServeRest/commit/ac2ed3229427cc9840e8bb2ad44d4bfe97300e39))
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
### Continuous Integration
|
|
360
|
-
|
|
361
|
-
* **check-link:** remover configuração de URLs inexistentes ([f17b9d2](https://github.com/ServeRest/ServeRest/commit/f17b9d2d7a6abf3fbe893b751cba22e2e4c86fbd))
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
### Documentation
|
|
365
|
-
|
|
366
|
-
* migrar dashboard do resultado do teste de mutação para a referente ao novo repositório ([a45c00e](https://github.com/ServeRest/ServeRest/commit/a45c00ea3d0861888155a5188a5d57df1a45a684))
|
|
367
|
-
|
|
368
|
-
# [2.22.0](https://github.com/ServeRest/ServeRest/compare/v2.21.0...v2.22.0) (2021-03-18)
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
### Bug Fixes
|
|
372
|
-
|
|
373
|
-
* **docs:** ajustar mensagem de erro quando usuario nao e encontrado ([cea7576](https://github.com/ServeRest/ServeRest/commit/cea75763bf06c4636bc61b2357b0ac67a77afb49))
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
### Chores
|
|
377
|
-
|
|
378
|
-
* **monitor:** não monitorar requests específicas realizadas pelo Cypress ao executar testes de API ([8f2632d](https://github.com/ServeRest/ServeRest/commit/8f2632d77842fec2f5993fc07414705d1426ba37))
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
### Features
|
|
382
|
-
|
|
383
|
-
* **carrinhos:** criar rota de busca de carrinho por ID ([fcd3a49](https://github.com/ServeRest/ServeRest/commit/fcd3a49f42bf359df888111767eb8003a973f1d4)), closes [#211](https://github.com/ServeRest/ServeRest/issues/211)
|
|
384
|
-
* **produtos:** criar rota de busca de produto por ID ([938da13](https://github.com/ServeRest/ServeRest/commit/938da133e3ef7132fcc0c7b2d824e7e9b8a6456e)), closes [#211](https://github.com/ServeRest/ServeRest/issues/211)
|
|
385
|
-
|
|
386
|
-
# [2.21.0](https://github.com/ServeRest/ServeRest/compare/v2.20.7...v2.21.0) (2021-03-17)
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
### Chores
|
|
390
|
-
|
|
391
|
-
* **agilizei:** ajustar agilizei para outro subdomínio ([ce9f44d](https://github.com/ServeRest/ServeRest/commit/ce9f44dd642f0e5fe57b52de33473353c38bc4b8))
|
|
392
|
-
* **agilizei:** configurar uso do ServeRest pela org Agilizei ([#233](https://github.com/ServeRest/ServeRest/issues/233)) ([eba9081](https://github.com/ServeRest/ServeRest/commit/eba90814b9c1b44daa917c781fae68f95bcac2cf))
|
|
393
|
-
* **agilizei:** monitorar os acessos na documentaçao ([63818ce](https://github.com/ServeRest/ServeRest/commit/63818ce6c7bd67f8a6c395063113de03bd361e84))
|
|
394
|
-
* **monitor:** não monitorar as requests de status de uso de recurso da máquina ([bbe9975](https://github.com/ServeRest/ServeRest/commit/bbe9975ec3f8f1333a95beeeba4ed922c09eb63d))
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
### Code Refactoring
|
|
398
|
-
|
|
399
|
-
* renomear para nomenclatura que faz mais sentido com a sua atuação ([741485e](https://github.com/ServeRest/ServeRest/commit/741485e335cf83e4dfe107fda01d77762308b3e3))
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
### Continuous Integration
|
|
403
|
-
|
|
404
|
-
* **deploy:** ao realizar deploy manual, fornecer opção para não atualizar o serverest.dev ([6e936f4](https://github.com/ServeRest/ServeRest/commit/6e936f472d9c277c0f5db7abaa36f9925b76f842))
|
|
405
|
-
* **deploy:** não fazer deploy do ServeRest.dev quando pulado ([1622cb8](https://github.com/ServeRest/ServeRest/commit/1622cb8124d5bcee2d6cc9b38dc484a644d01c07))
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
### Features
|
|
409
|
-
|
|
410
|
-
* **usuarios:** busca de usuario por id ([#230](https://github.com/ServeRest/ServeRest/issues/230)) ([5de9dba](https://github.com/ServeRest/ServeRest/commit/5de9dba7a56340347da2d665274728e54718f1f3))
|
|
411
|
-
|
|
412
|
-
## [2.20.7](https://github.com/ServeRest/ServeRest/compare/v2.20.6...v2.20.7) (2021-03-13)
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
### Chores
|
|
416
|
-
|
|
417
|
-
* **patch:** migrar ServeRest de conta pessoal pra org ([#232](https://github.com/ServeRest/ServeRest/issues/232)) ([7247187](https://github.com/ServeRest/ServeRest/commit/7247187f1cf4b2341e820dd7b8d6361cabe187cf))
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
### Documentation
|
|
421
|
-
|
|
422
|
-
* add murilomaiaa as a contributor ([#231](https://github.com/ServeRest/ServeRest/issues/231)) ([f66d7bc](https://github.com/ServeRest/ServeRest/commit/f66d7bc183ef1c1e58d22f63f95620b98b630adc))
|
|
423
|
-
|
|
424
|
-
## [2.20.6](https://github.com/ServeRest/ServeRest/compare/v2.20.5...v2.20.6) (2021-03-07)
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
### Bug Fixes
|
|
428
|
-
|
|
429
|
-
* informar o usuário sobre como lidar com o erro 'entity.parse.failed' enquanto investigo solução ([06ae564](https://github.com/ServeRest/ServeRest/commit/06ae564cb2951f067562b7481379bd26611f2e6a)), closes [#225](https://github.com/ServeRest/ServeRest/issues/225)
|
|
430
|
-
|
|
431
|
-
## [2.20.5](https://github.com/ServeRest/ServeRest/compare/v2.20.4...v2.20.5) (2021-03-01)
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
### Chores
|
|
435
|
-
|
|
436
|
-
* **patch:** não ofuscar password no monitoramento de log ([39e2ecb](https://github.com/ServeRest/ServeRest/commit/39e2ecbfe7082e25f090f785bed5e0a27e0ebe98))
|
|
437
|
-
* impedir que o teste executado em pre-push altere os arquivos .db ([1804b3f](https://github.com/ServeRest/ServeRest/commit/1804b3fcc497b0b5bdb0d035971d3dd39db1a03c))
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
### Continuous Integration
|
|
441
|
-
|
|
442
|
-
* unificar as pipelines de deploy no serverest.dev ([9a5fcef](https://github.com/ServeRest/ServeRest/commit/9a5fcef51018391c3fa732ae66636fcb265aac9a))
|
|
443
|
-
|
|
444
|
-
## [2.20.4](https://github.com/ServeRest/ServeRest/compare/v2.20.3...v2.20.4) (2021-02-25)
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
### Chores
|
|
448
|
-
|
|
449
|
-
* **patch:** não coletar log das requests de uptime ([e25c63d](https://github.com/ServeRest/ServeRest/commit/e25c63d8e3799769e70f2c8b6c55b32bd495b56c))
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
### Code Refactoring
|
|
453
|
-
|
|
454
|
-
* **monitor:** deixar de monitorar algumas rotas a partir de configuração do moesif ([d364db4](https://github.com/ServeRest/ServeRest/commit/d364db467794c54070b48872582c9c478c5097e7))
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
### Continuous Integration
|
|
458
|
-
|
|
459
|
-
* **check-link:** triggar validação de links apenas ao alterar arquivos .md em PR e push ([a529930](https://github.com/ServeRest/ServeRest/commit/a529930feb5a35c5b71980664b53c0bbf305db4d))
|
|
460
|
-
* **deploy:** realizar deploy em serverest.dev ao criar nova release ([f4576f5](https://github.com/ServeRest/ServeRest/commit/f4576f585d3d984f74886ea470d6b5008c20910f))
|
|
461
|
-
* **mutation test:** tornar teste de mutação um gate da entrega contínua ([43b9e79](https://github.com/ServeRest/ServeRest/commit/43b9e79de1dfb987009226eab81bd8f1e209b4e9))
|
|
462
|
-
|
|
463
|
-
## [2.20.3](https://github.com/ServeRest/ServeRest/compare/v2.20.2...v2.20.3) (2021-02-08)
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
### Chores
|
|
467
|
-
|
|
468
|
-
* **patch:** remover artefato do NPM do container docker ([2e126fb](https://github.com/ServeRest/ServeRest/commit/2e126fb7d8a3bb89fff371771b7c6a8b9460bca9))
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
### Continuous Integration
|
|
472
|
-
|
|
473
|
-
* criar commit vazio para triggar deploy na Umbler ([2e58cda](https://github.com/ServeRest/ServeRest/commit/2e58cda3a7ba64054625cedc9e844d4f72df80ac))
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
### Documentation
|
|
477
|
-
|
|
478
|
-
* **readme:** incluir logo de empresas que adotaram o serverest ([db0d75c](https://github.com/ServeRest/ServeRest/commit/db0d75c7268c367251d8af2eca1a3eb2b2761e35)), closes [#201](https://github.com/ServeRest/ServeRest/issues/201)
|
|
479
|
-
* **readme:** referenciar exemplo de automação de API com Robot Framework ([5918c89](https://github.com/ServeRest/ServeRest/commit/5918c8943696864fa31b17f67a98d94a2fc6a83f)), closes [#203](https://github.com/ServeRest/ServeRest/issues/203)
|
|
480
|
-
|
|
481
|
-
## [2.20.2](https://github.com/ServeRest/ServeRest/compare/v2.20.1...v2.20.2) (2021-01-22)
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
### Bug Fixes
|
|
485
|
-
|
|
486
|
-
* **docker:** habilitar acesso à documentação das rotas ([#204](https://github.com/ServeRest/ServeRest/issues/204)) ([181a182](https://github.com/ServeRest/ServeRest/commit/181a182c1566052e5342f17814e490b0905a8dbd)), closes [#202](https://github.com/ServeRest/ServeRest/issues/202)
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
### Chores
|
|
490
|
-
|
|
491
|
-
* bump @stryker-mutator/core from 4.1.2 to 4.3.1 ([dd7b1d3](https://github.com/ServeRest/ServeRest/commit/dd7b1d322a43dd0ebabfc06305de3b4b1b419552))
|
|
492
|
-
* bump commitlint-github-action from v2.1.3 to v2.1.6 ([6b44866](https://github.com/ServeRest/ServeRest/commit/6b44866c519cd5617b9d44e50a34b48612d928d3))
|
|
493
|
-
* bump husky from 4.3.5 to 4.3.6 ([6a2f66b](https://github.com/ServeRest/ServeRest/commit/6a2f66bc8619fcd51bdd713a2063b1bf7532488c))
|
|
494
|
-
* bump setup-node from v1 to v2.1.4 ([a3c77b7](https://github.com/ServeRest/ServeRest/commit/a3c77b73124d33710dad92cc1814e795c427e911))
|
|
495
|
-
* bump sinon from 9.2.1 to 9.2.3 ([9f1cbdf](https://github.com/ServeRest/ServeRest/commit/9f1cbdf4fc0a2046671d595517df9c2ecfce02cd))
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
### Continuous Integration
|
|
499
|
-
|
|
500
|
-
* **mutation test:** executar no pull request o teste de mutação apenas dos arquivos alterados ([#172](https://github.com/ServeRest/ServeRest/issues/172)) ([d2760b8](https://github.com/ServeRest/ServeRest/commit/d2760b8055a8bd16713e6325c2f518d0e5bd7d0b))
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
### Documentation
|
|
504
|
-
|
|
505
|
-
* **uptime:** informar sobre o monitoramento da disponibilidade do ambiente online ([#194](https://github.com/ServeRest/ServeRest/issues/194)) ([f40d609](https://github.com/ServeRest/ServeRest/commit/f40d609aa581dea12157eb75a2d32db0c0298d4d))
|
|
506
|
-
|
|
507
|
-
## [2.20.1](https://github.com/ServeRest/ServeRest/compare/v2.20.0...v2.20.1) (2020-12-16)
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
### Chores
|
|
511
|
-
|
|
512
|
-
* **patch:** bump ini from 1.3.5 to 1.3.7 ([#190](https://github.com/ServeRest/ServeRest/issues/190)) ([dc0439a](https://github.com/ServeRest/ServeRest/commit/dc0439ac9aeb6689abf694c16ec3289482cf0de2))
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
### Continuous Integration
|
|
516
|
-
|
|
517
|
-
* limpar base de dados do serverest.dev diariamente às 3h ([33e5a1c](https://github.com/ServeRest/ServeRest/commit/33e5a1ce26ed5a420d9cc0f963cd265136c7e3db))
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
### Documentation
|
|
521
|
-
|
|
522
|
-
* add maximilianoalves as a contributor ([#193](https://github.com/ServeRest/ServeRest/issues/193)) ([e95bb58](https://github.com/ServeRest/ServeRest/commit/e95bb58b5cdd1c2f95f8bdb0c861eeaf509dbd16))
|
|
523
|
-
* **readme:** informar sobre backup da base de serverest.dev ([8a02ce1](https://github.com/ServeRest/ServeRest/commit/8a02ce1c9a4d4a496ac9ce3b3cfaa99762c3478d))
|
|
524
|
-
|
|
525
|
-
# [2.20.0](https://github.com/ServeRest/ServeRest/compare/v2.19.1...v2.20.0) (2020-12-08)
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
### Chores
|
|
529
|
-
|
|
530
|
-
* **deps:** atualizar @semantic-release/github de v7.0.7 para v7.2.0 ([dc3b854](https://github.com/ServeRest/ServeRest/commit/dc3b854419b4ebc694580865a93c311500914868))
|
|
531
|
-
* **deps:** atualizar @semantic-release/npm de v7.0.5 para v7.0.9 ([912c7e0](https://github.com/ServeRest/ServeRest/commit/912c7e0349aaa63ddc915aa3db8d0e8074b6d6e7))
|
|
532
|
-
* **deps:** atualizar commitizen de v4.2.1 para v4.2.2 ([763df54](https://github.com/ServeRest/ServeRest/commit/763df54e1d0344735d34ce78db4ee3643b71cf1e))
|
|
533
|
-
* **deps:** atualizar cross-env de v7.0.2 para v7.0.3 ([cb7ce06](https://github.com/ServeRest/ServeRest/commit/cb7ce06da0e3989b2096afdb9ebc4fe77a9b0f1f))
|
|
534
|
-
* **deps:** atualizar cz-conventional-changelog de v3.1.0 para v3.3.0 ([01680f2](https://github.com/ServeRest/ServeRest/commit/01680f2f81da69049c6ea5d8823cffe753d48c37))
|
|
535
|
-
* **deps:** atualizar express-validation de v3.0.2 para v3.0.6 ([dc4556f](https://github.com/ServeRest/ServeRest/commit/dc4556f1445750088f174f0a91b4018474201f5a))
|
|
536
|
-
* **deps:** atualizar husky de v4.2.5 para v4.3.5 ([45a671e](https://github.com/ServeRest/ServeRest/commit/45a671e4aacfa63016e1d84f63c24eb5d2a5c0ed))
|
|
537
|
-
* **deps:** atualizar lint-staged de v10.2.11 para v10.5.3 ([03c5591](https://github.com/ServeRest/ServeRest/commit/03c5591ed37e70e59c90edcc39cc84c3d7d57966))
|
|
538
|
-
* **deps:** atualizar mocha de v8.1.3 para v8.2.1 ([057d0d8](https://github.com/ServeRest/ServeRest/commit/057d0d8a4fd3ab8cf1d9c5dd1843e7489ff9b7bc))
|
|
539
|
-
* **deps:** atualizar moesif-nodejs de v3.0.0 para v3.1.5 ([895f315](https://github.com/ServeRest/ServeRest/commit/895f315b080d448e7e04e5655c447fe2b7227460))
|
|
540
|
-
* **deps:** atualizar nodemon de v2.0.3 para v2.0.6 ([7a546ee](https://github.com/ServeRest/ServeRest/commit/7a546eec6bd4023ed5120f0e9a6f355329b933af))
|
|
541
|
-
* **deps:** atualizar open de v7.0.3 para v7.3.0 ([ccd4818](https://github.com/ServeRest/ServeRest/commit/ccd481898e53f85cd845f4e854c9c9ccc3fe48fb))
|
|
542
|
-
* **deps:** atualizar standard de v14.3.3 para v16.0.3 ([a39f146](https://github.com/ServeRest/ServeRest/commit/a39f14606d0839ade70f0971243dae222a825e51))
|
|
543
|
-
* **deps:** atualizar supertest de v5.0.0 para v6.0.1 ([52b175c](https://github.com/ServeRest/ServeRest/commit/52b175c6e07aa3ab5fdf94f567335283ae785664))
|
|
544
|
-
* **deps:** atualizar wagoid/commitlint-github-action de v2.0.2 para v2.1.3 ([2d40acb](https://github.com/ServeRest/ServeRest/commit/2d40acb74da4acb5573c68be5578cf641163109b))
|
|
545
|
-
* **deps:** atualizar yargs de v15.3.1 para v16.2.0 ([11f83e2](https://github.com/ServeRest/ServeRest/commit/11f83e2a08ed3d4278257ca7bc3fc867d3feeada))
|
|
546
|
-
* remover o uso de codecov.io por ser spam nos PRs ([fd3f2aa](https://github.com/ServeRest/ServeRest/commit/fd3f2aa7721684952c30d984bd3315a58c3481b7))
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
### Continuous Integration
|
|
550
|
-
|
|
551
|
-
* **action-node:** versão 2.1.1 da action setup-node está com erro de execução na pipeline ([614eca2](https://github.com/ServeRest/ServeRest/commit/614eca2747f75709e23013cdb0f54257f45d7886))
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
### Documentation
|
|
555
|
-
|
|
556
|
-
* incluir seção de empresas que utilizam o projeto ([934f1a1](https://github.com/ServeRest/ServeRest/commit/934f1a1dea414c1c5c8d3a89d74af0d604506e15))
|
|
557
|
-
* **contributing:** informar que a entrega contínua também afeta o ambiente serverest.dev ([e95668d](https://github.com/ServeRest/ServeRest/commit/e95668d94ccd2a723911377a0e0b64fc821dd1ce))
|
|
558
|
-
* adicionar exemplo de automação com pytest ([0b646a6](https://github.com/ServeRest/ServeRest/commit/0b646a68e0f70dfd33304827285883e580ae5a87))
|
|
559
|
-
* código do badge a ser copiado estava com estilo incorreto ([e8b28fc](https://github.com/ServeRest/ServeRest/commit/e8b28fc32e50603d2f6c06535769b3e498d116ef))
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
### Features
|
|
563
|
-
|
|
564
|
-
* **monitor:** monitorar acesso à documentação do projeto ([56248b2](https://github.com/ServeRest/ServeRest/commit/56248b2abf6da0e3d65afe455207f96b964f9cf4))
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
### Tests
|
|
568
|
-
|
|
569
|
-
* **mutation:** atualizar dependência de mutação e retirar configurações que estão em desuso ([3559189](https://github.com/ServeRest/ServeRest/commit/3559189167669da148e9de396834515407df1168))
|
|
570
|
-
* reduzir a complexidade e quantidade de chamadas do teste utilizando stub ([1fd5a1e](https://github.com/ServeRest/ServeRest/commit/1fd5a1e68ff2c4ae2c06be45886f7d1383d7be0e))
|
|
571
|
-
* validar comportamento em cenário de exceção (500) ([b585918](https://github.com/ServeRest/ServeRest/commit/b585918048837325eb5053ecede39901b6e3d2b8)), closes [#182](https://github.com/ServeRest/ServeRest/issues/182)
|
|
572
|
-
|
|
573
|
-
## [2.19.1](https://github.com/ServeRest/ServeRest/compare/v2.19.0...v2.19.1) (2020-11-01)
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
### Bug Fixes
|
|
577
|
-
|
|
578
|
-
* disponiblizar a rota /status apenas para ambiente online, suprimindo erro de 'event-loop-stats' ([3d9907a](https://github.com/ServeRest/ServeRest/commit/3d9907a63da5f8a1beb9944bc33f87021f612e8b))
|
|
579
|
-
|
|
580
|
-
# [2.19.0](https://github.com/ServeRest/ServeRest/compare/v2.18.4...v2.19.0) (2020-10-30)
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
### Documentation
|
|
584
|
-
|
|
585
|
-
* **readme:** incluir nível de patrocínio empresarial com subdomínio e monitoramento como retorno ([6271da3](https://github.com/ServeRest/ServeRest/commit/6271da3ee808c9025506a9870adc7bb4ba3d42e0))
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
### Features
|
|
589
|
-
|
|
590
|
-
* monitorar consumo da máquina pelo ServeRest através da nova rota /status ([7b2f73a](https://github.com/ServeRest/ServeRest/commit/7b2f73a6225d77735d601482441b2c43a473cb1b))
|
|
591
|
-
|
|
592
|
-
## [2.18.4](https://github.com/ServeRest/ServeRest/compare/v2.18.3...v2.18.4) (2020-10-29)
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
### Code Refactoring
|
|
596
|
-
|
|
597
|
-
* **patch:** monitorar os acessos à documentação para ficar a par de possíveis erros ([a7af78d](https://github.com/ServeRest/ServeRest/commit/a7af78d35e07e639539ff2d16f834aa7c4be730a))
|
|
598
|
-
|
|
599
|
-
## [2.18.3](https://github.com/ServeRest/ServeRest/compare/v2.18.2...v2.18.3) (2020-10-26)
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
### Bug Fixes
|
|
603
|
-
|
|
604
|
-
* **monitor:** execução do ServeRest em 'docker' estava sendo mapeado como 'npm' no monitoramento ([030272a](https://github.com/ServeRest/ServeRest/commit/030272adab16e9a00d83fc598bf02d7a55f20b94))
|
|
605
|
-
|
|
606
|
-
## [2.18.2](https://github.com/ServeRest/ServeRest/compare/v2.18.1...v2.18.2) (2020-10-26)
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
### Bug Fixes
|
|
610
|
-
|
|
611
|
-
* **monitor:** monitoramento não estava enviando os dados devido a incompatibilidade com async/await ([5f6034d](https://github.com/ServeRest/ServeRest/commit/5f6034de18ecf6ec352902aa2d56b9109fd5f506))
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
### Continuous Integration
|
|
615
|
-
|
|
616
|
-
* **continuous_delivery:** corrigir branch origem e erro de 'shallow update' ([38c9bbf](https://github.com/ServeRest/ServeRest/commit/38c9bbf950f7a71803539ed05a1d02ecac4b7fcf))
|
|
617
|
-
|
|
618
|
-
## [2.18.1](https://github.com/ServeRest/ServeRest/compare/v2.18.0...v2.18.1) (2020-10-25)
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
### Bug Fixes
|
|
622
|
-
|
|
623
|
-
* **ambiente:** username da máquina de hospedagem estava incorreto ([9a73ca2](https://github.com/ServeRest/ServeRest/commit/9a73ca2b93eedc6377e838b16142622f3ea5f6e1))
|
|
624
|
-
* **npm:** diretorio /docs precisa fazer parte do pacote npm ([774939f](https://github.com/ServeRest/ServeRest/commit/774939f9dc200ae35681a1cb7c62bf37775a0a82))
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
### Continuous Integration
|
|
628
|
-
|
|
629
|
-
* **continuous_delivery:** corrigir nome do job ([5363749](https://github.com/ServeRest/ServeRest/commit/53637497f071b81ad93955ae3f47e2743a6eb788))
|
|
630
|
-
|
|
631
|
-
# [2.18.0](https://github.com/ServeRest/ServeRest/compare/v2.17.0...v2.18.0) (2020-10-25)
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
### Continuous Integration
|
|
635
|
-
|
|
636
|
-
* **continuous_delivery:** forçar histórico do repositório atual em api.serverest.dev ([3afcdd1](https://github.com/ServeRest/ServeRest/commit/3afcdd19b6a3127f9e21e82b0cae99829216dbea))
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
### Features
|
|
640
|
-
|
|
641
|
-
* mover ambiente de api.serverest.dev para serverest.dev e atualizar documentação ([0fac870](https://github.com/ServeRest/ServeRest/commit/0fac870d36c4ae751ade8be0d8a5c1aa545d7748))
|
|
642
|
-
* **no-release:** implementar rota /version ([3ecdb7d](https://github.com/ServeRest/ServeRest/commit/3ecdb7d31a7e11e7e13d603579e5361539a59b0a))
|
|
643
|
-
|
|
644
|
-
# [2.17.0](https://github.com/ServeRest/ServeRest/compare/v2.16.0...v2.17.0) (2020-10-21)
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
### Code Refactoring
|
|
648
|
-
|
|
649
|
-
* **authentication-middleware:** remover condicional sem uso ([576f84b](https://github.com/ServeRest/ServeRest/commit/576f84b0de5659075f55f702f4c731613e34a224))
|
|
650
|
-
* remover try/catch suprimido pelo error handler ([c7e70ab](https://github.com/ServeRest/ServeRest/commit/c7e70ab75187be1036998d38eb36db85fabe7bf6))
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
### Continuous Integration
|
|
654
|
-
|
|
655
|
-
* **continuous_delivery:** garantir push da última versão gerada pela release ([0857a48](https://github.com/ServeRest/ServeRest/commit/0857a48f079c11aef464b759d72b6b58b34eee94))
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
### Documentation
|
|
659
|
-
|
|
660
|
-
* **no-release:** valorizar as pessoas que colaboram ante empresas ([31d99b8](https://github.com/ServeRest/ServeRest/commit/31d99b8415864da82a948c1eb159040c4f3a1605))
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
### Features
|
|
664
|
-
|
|
665
|
-
* **app:** suprimir status code 304 em GET ([2295993](https://github.com/ServeRest/ServeRest/commit/22959935260ef919830175f6ebf2ef2b896cae59))
|
|
666
|
-
|
|
667
|
-
# [2.16.0](https://github.com/ServeRest/ServeRest/compare/v2.15.0...v2.16.0) (2020-10-16)
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
### Chores
|
|
671
|
-
|
|
672
|
-
* monitorar acessos em serverest.dev ([#163](https://github.com/ServeRest/ServeRest/issues/163)) ([f0e98d6](https://github.com/ServeRest/ServeRest/commit/f0e98d63d56275378e02206ac5e5042ad87e28d5))
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
### Features
|
|
676
|
-
|
|
677
|
-
* **lgpd:** identificação do usuário por tipo de execução do serverest ([84a3622](https://github.com/ServeRest/ServeRest/commit/84a3622849baebae9733aba4535f884a3c21348e)), closes [#159](https://github.com/ServeRest/ServeRest/issues/159)
|
|
678
|
-
|
|
679
|
-
# [2.15.0](https://github.com/ServeRest/ServeRest/compare/v2.14.0...v2.15.0) (2020-10-16)
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
### Features
|
|
683
|
-
|
|
684
|
-
* disponibilizar o ServeRest em api.serverest.dev ([#162](https://github.com/ServeRest/ServeRest/issues/162)) ([3c2de9c](https://github.com/ServeRest/ServeRest/commit/3c2de9c5f874f439077436f4f684b82699c26585))
|
|
685
|
-
|
|
686
|
-
# [2.14.0](https://github.com/ServeRest/ServeRest/compare/v2.13.3...v2.14.0) (2020-10-15)
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
### Features
|
|
690
|
-
|
|
691
|
-
* mover a doc de js.org para o domínio serverest.dev ([#161](https://github.com/ServeRest/ServeRest/issues/161)) ([13df370](https://github.com/ServeRest/ServeRest/commit/13df370e8d29cd0a0c8422b67c11b51a43872779))
|
|
692
|
-
|
|
693
|
-
## [2.13.3](https://github.com/ServeRest/ServeRest/compare/v2.13.2...v2.13.3) (2020-10-15)
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
### Chores
|
|
697
|
-
|
|
698
|
-
* **deps-dev:** bump @commitlint/cli from 9.1.2 to 11.0.0 ([#152](https://github.com/ServeRest/ServeRest/issues/152)) ([74bc016](https://github.com/ServeRest/ServeRest/commit/74bc016b86f91dd888242a1bb50ad6bc6a51765a))
|
|
699
|
-
* **deps-dev:** bump faker from 4.1.0 to 5.1.0 ([#155](https://github.com/ServeRest/ServeRest/issues/155)) ([6d040e6](https://github.com/ServeRest/ServeRest/commit/6d040e6fa0dcb876a8d3b440122d128b79f48805))
|
|
700
|
-
* **deps-dev:** bump husky from 4.2.5 to 4.3.0 ([#154](https://github.com/ServeRest/ServeRest/issues/154)) ([77655ad](https://github.com/ServeRest/ServeRest/commit/77655ade1da30591bfd775d0876858196ca5d278))
|
|
701
|
-
* **deps-dev:** bump supertest from 4.0.2 to 5.0.0 ([#156](https://github.com/ServeRest/ServeRest/issues/156)) ([ea8936f](https://github.com/ServeRest/ServeRest/commit/ea8936fb3338efca2c352caefae5cf479aaeba5b))
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
### Documentation
|
|
705
|
-
|
|
706
|
-
* **readme:** incluir patrocínio do Open Collective ([#160](https://github.com/ServeRest/ServeRest/issues/160)) ([fed28ad](https://github.com/ServeRest/ServeRest/commit/fed28ad2af537a7573160030f872319d02d47040))
|
|
707
|
-
|
|
708
|
-
## [2.13.2](https://github.com/ServeRest/ServeRest/compare/v2.13.1...v2.13.2) (2020-10-06)
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
### Documentation
|
|
712
|
-
|
|
713
|
-
* **readme:** incluir exemplos de repositórios que consomem o ServeRest ([9a6de7d](https://github.com/ServeRest/ServeRest/commit/9a6de7d38daf51a743913764d2b72abd5820a673))
|
|
714
|
-
|
|
715
|
-
## [2.13.1](https://github.com/ServeRest/ServeRest/compare/v2.13.0...v2.13.1) (2020-10-05)
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
### Bug Fixes
|
|
719
|
-
|
|
720
|
-
* **docker:** change node image to alpine image ([#149](https://github.com/ServeRest/ServeRest/issues/149)) ([5b52c72](https://github.com/ServeRest/ServeRest/commit/5b52c7276bdb4266a96cd40d9459931261ee8b4f))
|
|
721
|
-
|
|
722
|
-
# [2.13.0](https://github.com/ServeRest/ServeRest/compare/v2.12.2...v2.13.0) (2020-10-04)
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
### Features
|
|
726
|
-
|
|
727
|
-
* **terminal:** tornar o terminal mais informativo ([0953977](https://github.com/ServeRest/ServeRest/commit/09539779a2b5725a9ab69410d3a4c44ef1af4f8c))
|
|
728
|
-
|
|
729
|
-
## [2.12.2](https://github.com/ServeRest/ServeRest/compare/v2.12.1...v2.12.2) (2020-10-03)
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
### Documentation
|
|
733
|
-
|
|
734
|
-
* **contributing:** comando 'ci' não altera versão no package-lock.json ([d4134cb](https://github.com/ServeRest/ServeRest/commit/d4134cbad4c9b9816a95051ac4b229ae008fe8df))
|
|
735
|
-
* **contributing:** sugerir teste local utilizando docker ([c8f6b73](https://github.com/ServeRest/ServeRest/commit/c8f6b73bd34247cdd31cf67bafb071846b4d2f8a))
|
|
736
|
-
* **readme:** alterar link da badge da página js.org para o repositório ([8d8d840](https://github.com/ServeRest/ServeRest/commit/8d8d8408259465976e586c14e69b2bea38682df0))
|
|
737
|
-
|
|
738
|
-
## [2.12.1](https://github.com/ServeRest/ServeRest/compare/v2.12.0...v2.12.1) (2020-10-02)
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
### Bug Fixes
|
|
742
|
-
|
|
743
|
-
* **docker:** habilitar monitoramento ([e005133](https://github.com/ServeRest/ServeRest/commit/e0051330da299b694ab884cf8acef46813c1e1a1))
|
|
744
|
-
|
|
745
|
-
# [2.12.0](https://github.com/ServeRest/ServeRest/compare/v2.11.0...v2.12.0) (2020-10-02)
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
### Continuous Integration
|
|
749
|
-
|
|
750
|
-
* run mutation test, check-link and codeql workflows on pull requests ([#140](https://github.com/ServeRest/ServeRest/issues/140)) ([6e11498](https://github.com/ServeRest/ServeRest/commit/6e1149868b350b9d8a3f87baeed6c15626d7c324))
|
|
751
|
-
* usar versão específica do ubuntu ([#141](https://github.com/ServeRest/ServeRest/issues/141)) ([9439309](https://github.com/ServeRest/ServeRest/commit/9439309af085760db230d947d8409dff29c96a8f))
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
### Documentation
|
|
755
|
-
|
|
756
|
-
* add eliasreis54 as a infra contributor ([#145](https://github.com/ServeRest/ServeRest/issues/145)) ([e65bbe1](https://github.com/ServeRest/ServeRest/commit/e65bbe134ed3389ad073862e1829bf2e29574d8f))
|
|
757
|
-
* add gomex as a contributor ([#143](https://github.com/ServeRest/ServeRest/issues/143)) ([631c6cf](https://github.com/ServeRest/ServeRest/commit/631c6cf344396db01b9141232c22fdfb43484454))
|
|
758
|
-
* add rustnnes as a contributor ([#144](https://github.com/ServeRest/ServeRest/issues/144)) ([cd4da26](https://github.com/ServeRest/ServeRest/commit/cd4da26c52bb0c6f809fd5a46feb9fce9e7c0504))
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
### Features
|
|
762
|
-
|
|
763
|
-
* add ServeRest on docker hub ([#146](https://github.com/ServeRest/ServeRest/issues/146)) ([4d750b8](https://github.com/ServeRest/ServeRest/commit/4d750b89bf305f2a31b18700c9ae9ca6efccc94c)), closes [#47](https://github.com/ServeRest/ServeRest/issues/47)
|
|
764
|
-
|
|
765
|
-
# [2.11.0](https://github.com/ServeRest/ServeRest/compare/v2.10.1...v2.11.0) (2020-10-02)
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
### Features
|
|
769
|
-
|
|
770
|
-
* incluir propriedade imagem na rota /produtos ([#134](https://github.com/ServeRest/ServeRest/issues/134)) ([6669cf2](https://github.com/ServeRest/ServeRest/commit/6669cf206ee9ce8b5041ceae448dba51b01e55cf)), closes [#107](https://github.com/ServeRest/ServeRest/issues/107)
|
|
771
|
-
|
|
772
|
-
## [2.10.1](https://github.com/ServeRest/ServeRest/compare/v2.10.0...v2.10.1) (2020-10-01)
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
### Chores
|
|
776
|
-
|
|
777
|
-
* **deps-dev:** bump @commitlint/config-conventional ([#128](https://github.com/ServeRest/ServeRest/issues/128)) ([c9794f2](https://github.com/ServeRest/ServeRest/commit/c9794f27c81b174fdab58e9c3a8edcd832c2259e))
|
|
778
|
-
* **deps-dev:** bump @semantic-release/npm from 7.0.5 to 7.0.6 ([#124](https://github.com/ServeRest/ServeRest/issues/124)) ([1c653ba](https://github.com/ServeRest/ServeRest/commit/1c653bac10385e66c18917f34e7dbc3661240114))
|
|
779
|
-
* **deps-dev:** bump lint-staged from 10.2.11 to 10.4.0 ([#127](https://github.com/ServeRest/ServeRest/issues/127)) ([2e51e77](https://github.com/ServeRest/ServeRest/commit/2e51e77f2c095e10f7ddef732a09545f58e5528c))
|
|
780
|
-
* **package:** run tests on pre-push ([#129](https://github.com/ServeRest/ServeRest/issues/129)) ([0ed6afe](https://github.com/ServeRest/ServeRest/commit/0ed6afe5f426791a30312af4941e97af0e7abb68))
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
### Code Refactoring
|
|
784
|
-
|
|
785
|
-
* extrair tratamento de erro para um middleware ([#137](https://github.com/ServeRest/ServeRest/issues/137)) ([3532c2a](https://github.com/ServeRest/ServeRest/commit/3532c2a8ba4d1ccedbc7450f45718acaed1831e9)), closes [#120](https://github.com/ServeRest/ServeRest/issues/120)
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
### Documentation
|
|
789
|
-
|
|
790
|
-
* **readme:** adicionar a seção de apoio e badge do projeto ([#135](https://github.com/ServeRest/ServeRest/issues/135)) ([0480c02](https://github.com/ServeRest/ServeRest/commit/0480c02c6f9768edc4a3e2ec05e8c41da021d492)), closes [#121](https://github.com/ServeRest/ServeRest/issues/121)
|
|
791
|
-
* add doamaral as a contributor ([#136](https://github.com/ServeRest/ServeRest/issues/136)) ([c9dfd31](https://github.com/ServeRest/ServeRest/commit/c9dfd31d7e6043c6d169a68c6d823263b8b60243))
|
|
792
|
-
* add gabriel-pinheiro as a contributor ([#138](https://github.com/ServeRest/ServeRest/issues/138)) ([a60b9f2](https://github.com/ServeRest/ServeRest/commit/a60b9f2c305cf216719020b85d241b7e331a87ec))
|
|
793
|
-
* **contributing:** incluir git e node como pré-requisitos ([d9a86db](https://github.com/ServeRest/ServeRest/commit/d9a86dbd5fcc5d8d1c9c69374b800e46686cc6b4))
|
|
794
|
-
* add eliasreis54 as a contributor ([#130](https://github.com/ServeRest/ServeRest/issues/130)) ([46229c6](https://github.com/ServeRest/ServeRest/commit/46229c6920e426a2437ee073ba63c830bd992f57))
|
|
795
|
-
|
|
796
|
-
# [2.10.0](https://github.com/ServeRest/ServeRest/compare/v2.9.4...v2.10.0) (2020-09-18)
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
### Bug Fixes
|
|
800
|
-
|
|
801
|
-
* suprimir erro 'entity.parse.failed' ([9880631](https://github.com/ServeRest/ServeRest/commit/9880631778667b2115ccb6d41fe891247ff14220)), closes [#36](https://github.com/ServeRest/ServeRest/issues/36)
|
|
802
|
-
* traduzir mensagem 'must be of type object' ([#118](https://github.com/ServeRest/ServeRest/issues/118)) ([974303e](https://github.com/ServeRest/ServeRest/commit/974303e13403ca57deb572c6ffc5a01ca9690aff)), closes [#114](https://github.com/ServeRest/ServeRest/issues/114)
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
### Features
|
|
806
|
-
|
|
807
|
-
* habilitar cross-origin resource sharing (CORS) ([ebf1501](https://github.com/ServeRest/ServeRest/commit/ebf1501f1423730a3fdc47573c0ab498e77a3a99)), closes [#108](https://github.com/ServeRest/ServeRest/issues/108)
|
|
808
|
-
|
|
809
|
-
## [2.9.4](https://github.com/ServeRest/ServeRest/compare/v2.9.3...v2.9.4) (2020-09-17)
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
### Bug Fixes
|
|
813
|
-
|
|
814
|
-
* **montarMensagemDeErroDeSchema:** traduzir 'string.empty' ([333f273](https://github.com/ServeRest/ServeRest/commit/333f273cb651c062a6a669072d86a500da188b2e))
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
### Tests
|
|
818
|
-
|
|
819
|
-
* mapear propriedade em branco ([20ef057](https://github.com/ServeRest/ServeRest/commit/20ef05701549ea0cebe859decdd3c6ae934dba2f))
|
|
820
|
-
|
|
821
|
-
## [2.9.3](https://github.com/ServeRest/ServeRest/compare/v2.9.2...v2.9.3) (2020-09-17)
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
### Bug Fixes
|
|
825
|
-
|
|
826
|
-
* detalhar mensagem de erro de schema não mapeado para facilitar correção ([0cbd5b0](https://github.com/ServeRest/ServeRest/commit/0cbd5b05423a543460cd6783e9dcbd72e3253b1d))
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
### Chores
|
|
830
|
-
|
|
831
|
-
* **package:** alterar licença do pacote ([27fa117](https://github.com/ServeRest/ServeRest/commit/27fa117d8024f366f50286b60538990cc9c5bf81))
|
|
832
|
-
|
|
833
|
-
## [2.9.2](https://github.com/ServeRest/ServeRest/compare/v2.9.1...v2.9.2) (2020-09-16)
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
### Documentation
|
|
837
|
-
|
|
838
|
-
* **readme:** remover badge de licença ([5ce8bcb](https://github.com/ServeRest/ServeRest/commit/5ce8bcbea3f502159981e05d5052a03d2e57014d))
|
|
839
|
-
* add brunobatista25 as a contributor ([#113](https://github.com/ServeRest/ServeRest/issues/113)) ([685d6ac](https://github.com/ServeRest/ServeRest/commit/685d6ac782635f3f59c1f2929c7c5d857d277528))
|
|
840
|
-
* update .all-contributorsrc ([a8e5c01](https://github.com/ServeRest/ServeRest/commit/a8e5c0178d76dca1d77046b9cea03bf92930d881))
|
|
841
|
-
* update README.md ([8c84aab](https://github.com/ServeRest/ServeRest/commit/8c84aab0d592c368905cfbf996e8091cc2db6be8))
|
|
842
|
-
* **license:** tornar o ServeRest copyleft ([b392feb](https://github.com/ServeRest/ServeRest/commit/b392febb90d62bee5a1980153d763f278b56898d))
|
|
843
|
-
|
|
844
|
-
## [2.9.1](https://github.com/ServeRest/ServeRest/compare/v2.9.0...v2.9.1) (2020-09-16)
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
### Documentation
|
|
848
|
-
|
|
849
|
-
* **readme:** informar empresas que usam o projeto ([2e9aaba](https://github.com/ServeRest/ServeRest/commit/2e9aabae80a9e569161b56115373cca9abf14c54))
|
|
850
|
-
|
|
851
|
-
# [2.9.0](https://github.com/ServeRest/ServeRest/compare/v2.8.2...v2.9.0) (2020-09-11)
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
### Features
|
|
855
|
-
|
|
856
|
-
* **monitoramento:** identificar versão utilizada ([8b1abb7](https://github.com/ServeRest/ServeRest/commit/8b1abb75550138d0107e9c99278bed14ffc7ec7d))
|
|
857
|
-
|
|
858
|
-
## [2.8.2](https://github.com/ServeRest/ServeRest/compare/v2.8.1...v2.8.2) (2020-09-06)
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
### Chores
|
|
862
|
-
|
|
863
|
-
* **moesif:** atualizar nome da dependência ([e0fea0c](https://github.com/ServeRest/ServeRest/commit/e0fea0c5a7ad45e1630b0ff33c4511a21cbb1e48))
|
|
864
|
-
* **seguranca:** atualizar versão do commitizen ([781f10e](https://github.com/ServeRest/ServeRest/commit/781f10ef731c7918b306f4a6095b9ab28bbd00b2))
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
### Code Refactoring
|
|
868
|
-
|
|
869
|
-
* **monitor:** melhorar legibilidade de quando o monitoramento é habilitado ([1e647b3](https://github.com/ServeRest/ServeRest/commit/1e647b397f602ff10cbfea8c9ec937799b9957f5))
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
### Continuous Integration
|
|
873
|
-
|
|
874
|
-
* **check-link:** não validar link de e-mail ([c8645da](https://github.com/ServeRest/ServeRest/commit/c8645da0d685c75ba4f0f00a38e1860101b24c65))
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
### Documentation
|
|
878
|
-
|
|
879
|
-
* **readme:** corrigir links quebrados ([57b651d](https://github.com/ServeRest/ServeRest/commit/57b651ddd942b987ecaeb2c872f34a8b61cbeb99))
|
|
880
|
-
|
|
881
|
-
## [2.8.1](https://github.com/ServeRest/ServeRest/compare/v2.8.0...v2.8.1) (2020-09-04)
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
### Bug Fixes
|
|
885
|
-
|
|
886
|
-
* suprimir mensagem de alerta de método obsoleto ([9efdcd5](https://github.com/ServeRest/ServeRest/commit/9efdcd56ccd06115c27498dfcf56e4e598dcff70))
|
|
887
|
-
|
|
888
|
-
# [2.8.0](https://github.com/ServeRest/ServeRest/compare/v2.7.2...v2.8.0) (2020-09-04)
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
### Chores
|
|
892
|
-
|
|
893
|
-
* **deps:** bump codecov/codecov-action from v1.0.12 to v1.0.13 ([e29531c](https://github.com/ServeRest/ServeRest/commit/e29531c276d764251ef567f8bd30245a7d79e03c))
|
|
894
|
-
* **deps:** bump wagoid/commitlint-github-action from v1 to v2.0.2 ([553c58d](https://github.com/ServeRest/ServeRest/commit/553c58dd1c678541d41f590595dba658452874da))
|
|
895
|
-
* **deps-dev:** bump mocha from 8.0.1 to 8.1.0 ([d2f9547](https://github.com/ServeRest/ServeRest/commit/d2f95470769a7fabaeb3cfbcc756ac9da6a749e6))
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
### Code Refactoring
|
|
899
|
-
|
|
900
|
-
* remover configuração desnecessária de header ([6c569fb](https://github.com/ServeRest/ServeRest/commit/6c569fbadb8dbb5ba8e7b0110bb80b1049873d5c))
|
|
901
|
-
* simplificar mapeamento de erro de schema para melhor manutenibilidade ([cf3f694](https://github.com/ServeRest/ServeRest/commit/cf3f69455a8085c0cdab9f341eafe5b538948631))
|
|
902
|
-
* **releaserc:** simplificar o mapeamento de commit para melhor manutenibilidade ([cf7e6ea](https://github.com/ServeRest/ServeRest/commit/cf7e6ea26878364ed20e4a6452a0bd41bec87e08))
|
|
903
|
-
* executar lint no pre-commit apenas nos arquivos em staged ([bac398d](https://github.com/ServeRest/ServeRest/commit/bac398dce06bbb4d7be5a47bc485ee19af2c1c76))
|
|
904
|
-
* suprimir log na execução dos testes ([c540a0d](https://github.com/ServeRest/ServeRest/commit/c540a0df8a3ff2323f1efdfac9f6f7faebce5925)), closes [#87](https://github.com/ServeRest/ServeRest/issues/87)
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
### Continuous Integration
|
|
908
|
-
|
|
909
|
-
* permitir trigger manual da pipeline de CI ([8d26e45](https://github.com/ServeRest/ServeRest/commit/8d26e45500f0c0edb1878c2934e6db7b568140d3))
|
|
910
|
-
* separar testes de mutação em workflow próprio e ajustar dashboard ([c5b999a](https://github.com/ServeRest/ServeRest/commit/c5b999a599889def48a6d02b750b66278d12a73f))
|
|
911
|
-
* **releaserc:** gerar nota de release para todos os tipos de commit ([bd35834](https://github.com/ServeRest/ServeRest/commit/bd358348309b093efebd98477219f45d5956aeda))
|
|
912
|
-
* **releaserc:** inserir label de versão publicada nas issues e PRs ([01c8549](https://github.com/ServeRest/ServeRest/commit/01c854968a4f50787660498d388b769024404f9b))
|
|
913
|
-
* **releaserc:** não rodar CI em commit de release ([8edd76b](https://github.com/ServeRest/ServeRest/commit/8edd76b7b6f11a37f130b9ba43fd72ebb2f89824))
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
### Documentation
|
|
917
|
-
|
|
918
|
-
* **contributing:** documentar publicação no NPM e criar sumário ([603834f](https://github.com/ServeRest/ServeRest/commit/603834fe60af19b1ff37546e6f12a5e4967263e0)), closes [#89](https://github.com/ServeRest/ServeRest/issues/89)
|
|
919
|
-
* **contributing:** incluir material sobre 'teste de mutação' ([6d77040](https://github.com/ServeRest/ServeRest/commit/6d77040c53c8bc8d8d0f33b7928eb70a3054d027))
|
|
920
|
-
* **contributing:** reordenar seção e explicitar possibilidade de apoio ([f0700a4](https://github.com/ServeRest/ServeRest/commit/f0700a4b3b50e53bdaa400eb2691c42a71ecd385))
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
### Features
|
|
924
|
-
|
|
925
|
-
* **monitoramento:** monitoramento do consumo das rotas ([4e612cd](https://github.com/ServeRest/ServeRest/commit/4e612cd03ec091066bd083698f2a24bc0f853f04)), closes [#88](https://github.com/ServeRest/ServeRest/issues/88)
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
### Tests
|
|
929
|
-
|
|
930
|
-
* **mutation:** implementar testes de mutação ([4548095](https://github.com/ServeRest/ServeRest/commit/45480950a4195350997dc50973581ee37ef5df77)), closes [#86](https://github.com/ServeRest/ServeRest/issues/86)
|
|
931
|
-
* **stryker:** reduzir timeout do teste de mutação ([15068ea](https://github.com/ServeRest/ServeRest/commit/15068ea7fa57c3414cf024800e1875dfa07f0f19))
|
|
932
|
-
|
|
933
|
-
## [2.7.2](https://github.com/ServeRest/ServeRest/compare/v2.7.1...v2.7.2) (2020-07-30)
|
|
934
|
-
|
|
935
|
-
## [2.7.2-beta.1](https://github.com/ServeRest/ServeRest/compare/v2.7.1...v2.7.2-beta.1) (2020-07-30)
|
|
936
|
-
|
|
937
|
-
## [2.7.1](https://github.com/ServeRest/ServeRest/compare/v2.7.0...v2.7.1) (2020-07-30)
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
### Bug Fixes
|
|
941
|
-
|
|
942
|
-
* validar tipos enviados na query string em /carrinhos e /produtos ([7fd7c13](https://github.com/ServeRest/ServeRest/commit/7fd7c1343647963f9af14f7313637f5b8d20c88d))
|
|
943
|
-
|
|
944
|
-
# [2.7.0](https://github.com/ServeRest/ServeRest/compare/v2.6.1...v2.7.0) (2020-07-30)
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
### Features
|
|
948
|
-
|
|
949
|
-
* mensagens de erro de schema serão mais claras e em PT-BR ([#82](https://github.com/ServeRest/ServeRest/issues/82)) ([d482ae6](https://github.com/ServeRest/ServeRest/commit/d482ae60b59bd9f4b12a46eec9fa31852f250f30)), closes [#72](https://github.com/ServeRest/ServeRest/issues/72)
|
|
950
|
-
|
|
951
|
-
# [2.7.0-beta.1](https://github.com/ServeRest/ServeRest/compare/v2.6.1...v2.7.0-beta.1) (2020-07-30)
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
### Features
|
|
955
|
-
|
|
956
|
-
* mensagens de erro de schema serão mais claras e em PT-BR ([cce26fb](https://github.com/ServeRest/ServeRest/commit/cce26fbafe73247b17c9a618fbb8f4c18a84c977)), closes [#72](https://github.com/ServeRest/ServeRest/issues/72)
|
|
957
|
-
|
|
958
|
-
## [2.6.1](https://github.com/ServeRest/ServeRest/compare/v2.6.0...v2.6.1) (2020-07-07)
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
### Reverts
|
|
962
|
-
|
|
963
|
-
* Revert "feat(server): apresentar versão do ServeRest no help e ao iniciar" ([78cb5e2](https://github.com/ServeRest/ServeRest/commit/78cb5e23049c88d46c3879cb82f0eb6468352b03))
|
|
964
|
-
|
|
965
|
-
# [2.6.0](https://github.com/ServeRest/ServeRest/compare/v2.5.3...v2.6.0) (2020-07-07)
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
### Features
|
|
969
|
-
|
|
970
|
-
* **server:** apresentar versão do ServeRest no help e ao iniciar ([557fbb9](https://github.com/ServeRest/ServeRest/commit/557fbb9c0d6ec4014257c89c561cdc7bf9f2c98b))
|
|
971
|
-
|
|
972
|
-
## [2.5.3](https://github.com/ServeRest/ServeRest/compare/v2.5.2...v2.5.3) (2020-07-03)
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
### Reverts
|
|
976
|
-
|
|
977
|
-
* Revert "ci: inserir forma de não executar CI" ([0bf32ee](https://github.com/ServeRest/ServeRest/commit/0bf32ee923c9a623bb25c3707dfb9a795ab42d46))
|
|
978
|
-
|
|
979
|
-
## [2.5.2](https://github.com/ServeRest/ServeRest/compare/v2.5.1...v2.5.2) (2020-07-02)
|
|
980
|
-
|
|
981
|
-
## [2.5.1](https://github.com/ServeRest/ServeRest/compare/v2.5.0...v2.5.1) (2020-07-01)
|
|
982
|
-
|
|
983
|
-
# [2.5.0](https://github.com/ServeRest/ServeRest/compare/v2.4.5...v2.5.0) (2020-06-29)
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
### Bug Fixes
|
|
987
|
-
|
|
988
|
-
* apresentar mensagem de início apenas ao iniciar o ServeRest ([b895764](https://github.com/ServeRest/ServeRest/commit/b89576401e2c8fa366a38480cd750e95c33ffba5))
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
### Features
|
|
992
|
-
|
|
993
|
-
* jSON da resposta será identado com 4 espaços ([9e10467](https://github.com/ServeRest/ServeRest/commit/9e1046734ab66d99fea7f38ce8d95e99799b8dc5))
|
|
994
|
-
|
|
995
|
-
## [2.4.5](https://github.com/ServeRest/ServeRest/compare/v2.4.4...v2.4.5) (2020-06-14)
|
|
996
|
-
|
|
997
|
-
## [2.4.4](https://github.com/ServeRest/ServeRest/compare/v2.4.3...v2.4.4) (2020-06-13)
|
|
998
|
-
|
|
999
|
-
## [2.4.3](https://github.com/ServeRest/ServeRest/compare/v2.4.2...v2.4.3) (2020-06-12)
|
|
1000
|
-
|
|
1001
|
-
## [2.4.2](https://github.com/ServeRest/ServeRest/compare/v2.4.1...v2.4.2) (2020-06-12)
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
### Bug Fixes
|
|
1005
|
-
|
|
1006
|
-
* suprimir request em /favicon.ico ([0e5f78d](https://github.com/ServeRest/ServeRest/commit/0e5f78dd2691286c68286fb477f7d3384cc328fd))
|
|
1007
|
-
|
|
1008
|
-
## [2.4.1](https://github.com/ServeRest/ServeRest/compare/v2.4.0...v2.4.1) (2020-06-11)
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
### Performance Improvements
|
|
1012
|
-
|
|
1013
|
-
* retirar dependência 'helmet' ([8f4d1e0](https://github.com/ServeRest/ServeRest/commit/8f4d1e0b69c7589557f34bbf234d7120bb9ac05d))
|
|
1014
|
-
|
|
1015
|
-
# [2.4.0](https://github.com/ServeRest/ServeRest/compare/v2.3.0...v2.4.0) (2020-06-11)
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
### Features
|
|
1019
|
-
|
|
1020
|
-
* **timeout:** duração padrão do timeout alterada de 1 segundo para 600 ([e6595ec](https://github.com/ServeRest/ServeRest/commit/e6595ec73b3df28b1716e7889ea1b93fd0cf9ec2)), closes [#42](https://github.com/ServeRest/ServeRest/issues/42)
|
|
1021
|
-
|
|
1022
|
-
# [2.3.0](https://github.com/ServeRest/ServeRest/compare/v2.2.7...v2.3.0) (2020-06-10)
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
### Features
|
|
1026
|
-
|
|
1027
|
-
* **login:** opção de desabilitar 'Bearer' do retorno de '/login' ([ba9a60b](https://github.com/ServeRest/ServeRest/commit/ba9a60b7952997a1929fa776f34b6f52e73dc4c9))
|
|
1028
|
-
|
|
1029
|
-
## [2.2.7](https://github.com/ServeRest/ServeRest/compare/v2.2.6...v2.2.7) (2020-06-10)
|
|
1030
|
-
|
|
1031
|
-
## [2.2.6](https://github.com/ServeRest/ServeRest/compare/v2.2.5...v2.2.6) (2020-06-10)
|
|
1032
|
-
|
|
1033
|
-
## [2.2.5](https://github.com/ServeRest/ServeRest/compare/v2.2.4...v2.2.5) (2020-06-09)
|
|
1034
|
-
|
|
1035
|
-
## [2.2.4](https://github.com/ServeRest/ServeRest/compare/v2.2.3...v2.2.4) (2020-06-09)
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
### Bug Fixes
|
|
1039
|
-
|
|
1040
|
-
* **api-doc:** remover documentação local e excluir rota 'api-doc' ([3976c71](https://github.com/ServeRest/ServeRest/commit/3976c715f8a116cc8d84f9d3e1abed4bb03c26cc))
|
|
1041
|
-
|
|
1042
|
-
## [2.2.3](https://github.com/ServeRest/ServeRest/compare/v2.2.2...v2.2.3) (2020-06-07)
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
### Bug Fixes
|
|
1046
|
-
|
|
1047
|
-
* **help:** comando de desabilitar documentação alterado de '-n' p/ '-d' ([8f59c9e](https://github.com/ServeRest/ServeRest/commit/8f59c9eb59117ab7ffe22b283a970e3fc820ab65))
|
|
1048
|
-
|
|
1049
|
-
## [2.2.2](https://github.com/ServeRest/ServeRest/compare/v2.2.1...v2.2.2) (2020-06-07)
|
|
1050
|
-
|
|
1051
|
-
## [2.2.1](https://github.com/ServeRest/ServeRest/compare/v2.2.0...v2.2.1) (2020-06-07)
|
|
1052
|
-
|
|
1053
|
-
## [2.2.0](https://github.com/ServeRest/ServeRest/compare/v2.1.5...v2.2.0) (2020-06-06)
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
### Features
|
|
1057
|
-
|
|
1058
|
-
* **conf:** timeout de token alterado de milissegundos para segundos ([dd333f9](https://github.com/ServeRest/ServeRest/commit/dd333f94bf7661381d60ca2705395653aff2c29a))
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
### Bug Fixes
|
|
1062
|
-
|
|
1063
|
-
* **package:** ajustar caminho de destino da doc html gerada ([ece00a0](https://github.com/ServeRest/ServeRest/commit/ece00a000a75a3fec33c95a6ce059a5fa6952999))
|
|
1064
|
-
|
|
1065
|
-
### [2.1.5](https://github.com/ServeRest/ServeRest/compare/v2.1.4...v2.1.5) (2020-06-04)
|
|
1066
|
-
|
|
1067
|
-
### [2.1.4](https://github.com/ServeRest/ServeRest/compare/v2.1.3...v2.1.4) (2020-06-03)
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
### Bug Fixes
|
|
1071
|
-
|
|
1072
|
-
* **help:** ajuste da URL do repositório no help do ServeRest ([5c9e462](https://github.com/ServeRest/ServeRest/commit/5c9e462adf4da38d4c1194af06418eb69e408c93))
|
|
1073
|
-
|
|
1074
|
-
### [2.1.3](https://github.com/ServeRest/ServeRest/compare/v2.1.2...v2.1.3) (2020-06-02)
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
### Bug Fixes
|
|
1078
|
-
|
|
1079
|
-
* **api-doc:** correção do status code de erro ao logar ([6da4aed](https://github.com/ServeRest/ServeRest/commit/6da4aedc599eb84aba9b51e7945436515de80c8c))
|
|
1080
|
-
|
|
1081
|
-
### [2.1.2](https://github.com/ServeRest/ServeRest/compare/v2.1.1...v2.1.2) (2020-05-30)
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
### Bug Fixes
|
|
1085
|
-
|
|
1086
|
-
* ajuste de status code ao realizar request em rota inexistente ([7b5d878](https://github.com/ServeRest/ServeRest/commit/7b5d878267060f7d2976b667335f844c2c2260e8)), closes [#26](https://github.com/ServeRest/ServeRest/issues/26)
|
|
1087
|
-
|
|
1088
|
-
### [2.1.1](https://github.com/ServeRest/ServeRest/compare/v2.1.0...v2.1.1) (2020-05-23)
|
|
1089
|
-
|
|
1090
|
-
## [2.1.0](https://github.com/ServeRest/ServeRest/compare/v2.0.1...v2.1.0) (2020-05-22)
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
### Features
|
|
1094
|
-
|
|
1095
|
-
* **security:** incluir cabeçalhos de segurança e configuração ([9342cac](https://github.com/ServeRest/ServeRest/commit/9342cac41a0af7435104c26f44fb628375ecad6b))
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
### Bug Fixes
|
|
1099
|
-
|
|
1100
|
-
* **doc:** incluir ícone na documentação ([1fb4321](https://github.com/ServeRest/ServeRest/commit/1fb43214f4cb0f3c23b9be42f97ef5d72f1183df))
|
|
1101
|
-
|
|
1102
|
-
### [2.0.3](https://github.com/ServeRest/ServeRest/compare/v2.0.1...v2.0.3) (2020-05-22)
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
### Bug Fixes
|
|
1106
|
-
|
|
1107
|
-
* **doc:** incluir ícone na documentação ([1fb4321](https://github.com/ServeRest/ServeRest/commit/1fb43214f4cb0f3c23b9be42f97ef5d72f1183df))
|
|
1108
|
-
|
|
1109
|
-
### [2.0.2](https://github.com/ServeRest/ServeRest/compare/v2.0.1...v2.0.2) (2020-05-18)
|
|
1110
|
-
|
|
1111
|
-
#### Docs
|
|
1112
|
-
* **api-doc:** alteração do contraste da documentação ([68314f9](https://github.com/ServeRest/ServeRest/commit/8cdfe7d45064771e1b7726c60ddfb10ad28c8087))
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
### [2.0.1](https://github.com/ServeRest/ServeRest/compare/v2.0.0...v2.0.1) (2020-05-18)
|
|
1116
|
-
|
|
1117
|
-
## [2.0.0](https://github.com/ServeRest/ServeRest/compare/v1.1.7...v2.0.0) (2020-05-18)
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
### ⚠ BREAKING CHANGES
|
|
1121
|
-
|
|
1122
|
-
* **routes:** Alteração de todas as rotas
|
|
1123
|
-
|
|
1124
|
-
### Features
|
|
1125
|
-
|
|
1126
|
-
* **middleware:** inclusão do middleware 'authentication' ([05c204a](https://github.com/ServeRest/ServeRest/commit/05c204aba74152eacd6af79324b6a966cb98c059))
|
|
1127
|
-
* alterado ponto de entrada do ServeRest ([5ed2650](https://github.com/ServeRest/ServeRest/commit/5ed26504e5ee41be8e393eae8e1f348f17a7e90e))
|
|
1128
|
-
* implementado DELETE 'cancelar-compra' e '/concluir-compra' ([203c9ea](https://github.com/ServeRest/ServeRest/commit/203c9eab19383cbc005f750ae6262208890f0c27))
|
|
1129
|
-
* **carrinhos:** inclusão da chave 'quantidadetotal' ([d2b695b](https://github.com/ServeRest/ServeRest/commit/d2b695b7d80918a41de7c91c4ea2b4cd4bb2af6c))
|
|
1130
|
-
* proibição de DELETE caso usuario/produto tenha carrinho ([9bc92c1](https://github.com/ServeRest/ServeRest/commit/9bc92c1361b60902b75a8da5595eec2483cf5089))
|
|
1131
|
-
* **carrinhos:** implementação do GET e POST da rota /carrinhos ([b888561](https://github.com/ServeRest/ServeRest/commit/b888561dea85c9edc6a160b67214759ff42ee5fa))
|
|
1132
|
-
* alteração da entrega do token para ficar mais claro para o usuario ([3aa7d69](https://github.com/ServeRest/ServeRest/commit/3aa7d69f70c4e0f869c73ab1f333ee41f173ccdb))
|
|
1133
|
-
* **docker:** adicionar os arquivos Dockerfile e Makefile ([8664b6b](https://github.com/ServeRest/ServeRest/commit/8664b6b14af81d9622476c7e129ee6a490ffa221)), closes [#10](https://github.com/ServeRest/ServeRest/issues/10)
|
|
1134
|
-
* **login:** implementado a rota 'login' ([51eb300](https://github.com/ServeRest/ServeRest/commit/51eb300ae4254d60fd4173fd66a15365440463cd))
|
|
1135
|
-
* **produtos:** implementado o GET da rota 'produtos' ([62df306](https://github.com/ServeRest/ServeRest/commit/62df306478bfb63936109f281826ee199af67a5a))
|
|
1136
|
-
* **produtos:** implementado rotas restantes e autenticação ([85c6738](https://github.com/ServeRest/ServeRest/commit/85c6738c779cdcb21c86eecb3c90f29631aa22ad))
|
|
1137
|
-
* **usuarios:** implementado a rota 'usuarios' ([adc4e38](https://github.com/ServeRest/ServeRest/commit/adc4e38d864126512ea49f25fa3c4aecb5ecd3da))
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
### Bug Fixes
|
|
1141
|
-
|
|
1142
|
-
* **authentication:** validação se o token pertence a usuário existente ([3036f43](https://github.com/ServeRest/ServeRest/commit/3036f438335a92193f60e0fa4ced232d4d074ecf))
|
|
1143
|
-
* **carrinhos-model:** ajuste de chavs permitidas em GET ([1a0e14c](https://github.com/ServeRest/ServeRest/commit/1a0e14c9bc6d22847c3134a1e26751e9272d36dc))
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
* **readme:** atualização do readme e exclusão da página ([f118c36](https://github.com/ServeRest/ServeRest/commit/f118c367e4300e9adbad4593c00b162b70f15e66)), closes [#12](https://github.com/ServeRest/ServeRest/issues/12) [#5](https://github.com/ServeRest/ServeRest/issues/5) [#3](https://github.com/ServeRest/ServeRest/issues/3) [#2](https://github.com/ServeRest/ServeRest/issues/2)
|
|
1147
|
-
|
|
1148
|
-
## [1.1.7](https://github.com/ServeRest/ServeRest/compare/v1.1.6...v1.1.7) (2020-03-26)
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
## [1.1.6](https://github.com/ServeRest/ServeRest/compare/v1.1.4...v1.1.6) (2020-03-24)
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
## [1.1.4](https://github.com/ServeRest/ServeRest/compare/v1.1.3...v1.1.4) (2020-03-19)
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
## [1.1.3](https://github.com/ServeRest/ServeRest/compare/v1.1.2...v1.1.3) (2020-03-19)
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
## [1.1.2](https://github.com/ServeRest/ServeRest/compare/v1.1.1...v1.1.2) (2020-03-18)
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
## [1.1.1](https://github.com/ServeRest/ServeRest/compare/v1.1.0...v1.1.1) (2020-03-18)
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
# [1.1.0](https://github.com/ServeRest/ServeRest/compare/v1.0.3...v1.1.0) (2020-03-18)
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
### Features
|
|
1176
|
-
|
|
1177
|
-
* alteração do timeout do token de segundos para milissegundos ([a0bfd83](https://github.com/ServeRest/ServeRest/commit/a0bfd83ba1831271bd7a8dbbc64c6d02155154f3))
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
## [1.0.3](https://github.com/ServeRest/ServeRest/compare/v1.0.2...v1.0.3) (2020-03-17)
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
### Bug Fixes
|
|
1185
|
-
|
|
1186
|
-
* **ServeRest:** ajustado caminho do diretorio /data/db.json ([38aed48](https://github.com/ServeRest/ServeRest/commit/38aed48fa8c3a28426de4a7ddeeb723689378a13))
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
## [1.0.2](https://github.com/ServeRest/ServeRest/compare/v1.0.1...v1.0.2) (2020-03-17)
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
## [1.0.1](https://github.com/ServeRest/ServeRest/compare/a6571f5e9e0f7a8e80c6b8400acf08063810c8b0...v1.0.1) (2020-03-17)
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
### Bug Fixes
|
|
1198
|
-
|
|
1199
|
-
* ajustado forma de acesso aos arquivos em /data ([11eea2d](https://github.com/ServeRest/ServeRest/commit/11eea2dc6f891c502a999689e1bc867e6cfca65b))
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
### Features
|
|
1203
|
-
|
|
1204
|
-
* implement CLI conf, rewrite doc and update images ([a6571f5](https://github.com/ServeRest/ServeRest/commit/a6571f5e9e0f7a8e80c6b8400acf08063810c8b0))
|