tom-microservice 3.2.14 → 3.2.18

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "tom-microservice",
3
3
  "description": "Tom creates customers, subscriptions plans & send notifications.",
4
4
  "homepage": "https://tom.js.org",
5
- "version": "3.2.14",
5
+ "version": "3.2.18",
6
6
  "main": "src",
7
7
  "bin": {
8
8
  "tom": "bin/index.js"
@@ -40,35 +40,35 @@
40
40
  ],
41
41
  "dependencies": {
42
42
  "acho": "~4.0.6",
43
- "beauty-error": "~1.2.8",
43
+ "beauty-error": "~1.2.9",
44
44
  "body-parser": "~1.19.0",
45
45
  "compression": "~1.7.4",
46
46
  "cors": "~2.8.5",
47
- "cosmiconfig": "~7.0.1",
48
47
  "country-vat": "~1.0.0",
49
48
  "emittery": "~0.10.0",
50
49
  "express": "~4.17.1",
51
- "got": "~11.8.2",
50
+ "got": "~11.8.3",
52
51
  "helmet": "~4.6.0",
53
52
  "import-modules": "~2.1.0",
54
53
  "is-buffer": "~2.0.5",
55
54
  "is-european": "~1.0.3",
55
+ "joycon": "~3.1.1",
56
56
  "jsendp": "~2.1.0",
57
57
  "lodash": "~4.17.21",
58
- "mailgen": "~2.0.15",
58
+ "mailgen": "~2.0.16",
59
59
  "map-values-deep": "~1.0.2",
60
60
  "meow": "~9.0.0",
61
61
  "morgan": "~1.10.0",
62
- "nodemailer": "~6.7.0",
63
- "ow": "~0.28.0",
62
+ "nodemailer": "~6.7.1",
63
+ "ow": "~0.28.1",
64
64
  "p-reflect": "~2.1.0",
65
65
  "p-retry": "~4.6.1",
66
66
  "p-waterfall": "~2.1.1",
67
- "picocolors": "~0.2.1",
67
+ "picocolors": "~1.0.0",
68
68
  "pretty-ms": "~7.0.1",
69
69
  "req-country": "~1.2.2",
70
70
  "request-ip": "~2.1.3",
71
- "stripe": "^8.174.0",
71
+ "stripe": "^8.191.0",
72
72
  "time-span": "~4.0.0",
73
73
  "to-query": "~1.6.1",
74
74
  "twit": "~2.2.11",
@@ -94,8 +94,7 @@
94
94
  "gulp-cssnano": "latest",
95
95
  "gulp-strip-css-comments": "latest",
96
96
  "gulp-uglify": "latest",
97
- "imagemin-lint-staged": "latest",
98
- "lint-staged": "latest",
97
+ "nano-staged": "latest",
99
98
  "npm-check-updates": "latest",
100
99
  "nyc": "latest",
101
100
  "prettier-standard": "latest",
@@ -145,23 +144,20 @@
145
144
  "@commitlint/config-conventional"
146
145
  ]
147
146
  },
148
- "lint-staged": {
149
- "package.json": [
150
- "finepack --sort-ignore-object-at ava"
151
- ],
147
+ "nano-staged": {
152
148
  "*.js,!*.min.js": [
153
149
  "prettier-standard"
154
150
  ],
155
151
  "*.md": [
156
152
  "standard-markdown"
157
153
  ],
158
- "*.{png,jpeg,jpg,gif,svg}": [
159
- "imagemin-lint-staged"
154
+ "package.json": [
155
+ "finepack --sort-ignore-object-at ava"
160
156
  ]
161
157
  },
162
158
  "simple-git-hooks": {
163
159
  "commit-msg": "npx commitlint --edit",
164
- "pre-commit": "npx lint-staged"
160
+ "pre-commit": "npx nano-staged"
165
161
  },
166
162
  "standard": {
167
163
  "env": [
@@ -1,8 +1,13 @@
1
1
  'use strict'
2
2
 
3
- const cosmiconfig = require('cosmiconfig').cosmiconfig('tom')
3
+ const JoyCon = require('joycon')
4
+
5
+ const joycon = new JoyCon({
6
+ packageKey: 'tom',
7
+ files: ['package.json', '.tomrc', '.tomrc.json', '.tomrc.js', 'tom.config.js']
8
+ })
4
9
 
5
10
  module.exports = async (cwd = process.cwd()) => {
6
- const { config } = (await cosmiconfig.search(cwd)) || {}
11
+ const { data: config } = await joycon.load()
7
12
  return config
8
13
  }
package/CHANGELOG.md DELETED
@@ -1,1100 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
-
5
- ### 3.2.14 (2021-10-13)
6
-
7
- ### 3.2.13 (2021-10-12)
8
-
9
- ### 3.2.12 (2021-09-23)
10
-
11
- ### 3.2.11 (2021-09-13)
12
-
13
- ### [3.2.10](https://github.com/kikobeats/tom-microservice/compare/v3.2.9...v3.2.10) (2021-07-19)
14
-
15
- ### 3.2.9 (2021-07-05)
16
-
17
- ### 3.2.8 (2021-07-05)
18
-
19
- ### 3.2.7 (2021-07-05)
20
-
21
- ### [3.2.6](https://github.com/kikobeats/tom-microservice/compare/v3.2.5...v3.2.6) (2021-06-25)
22
-
23
- ### [3.2.5](https://github.com/kikobeats/tom-microservice/compare/v3.2.4...v3.2.5) (2021-05-31)
24
-
25
- ### [3.2.4](https://github.com/kikobeats/tom-microservice/compare/v3.2.3...v3.2.4) (2021-05-18)
26
-
27
- ### [3.2.3](https://github.com/kikobeats/tom-microservice/compare/v3.2.2...v3.2.3) (2021-04-15)
28
-
29
- ### [3.2.2](https://github.com/kikobeats/tom-microservice/compare/v3.2.1...v3.2.2) (2021-03-29)
30
-
31
- ### [3.2.1](https://github.com/kikobeats/tom-microservice/compare/v3.2.0...v3.2.1) (2021-03-08)
32
-
33
- ## [3.2.0](https://github.com/kikobeats/tom-microservice/compare/v3.1.21...v3.2.0) (2021-03-05)
34
-
35
-
36
- ### Features
37
-
38
- * avoid to use geolocation api ([0d93af1](https://github.com/kikobeats/tom-microservice/commit/0d93af1e66182c08ba806a71cf781b28b0e31050))
39
-
40
-
41
- ### Bug Fixes
42
-
43
- * wait promise ([ec6ca46](https://github.com/kikobeats/tom-microservice/commit/ec6ca46452cca14ca9a3f5131699070c52bffb06))
44
-
45
- ### [3.1.21](https://github.com/kikobeats/tom-microservice/compare/v3.1.20...v3.1.21) (2021-02-26)
46
-
47
- ### [3.1.20](https://github.com/kikobeats/tom-microservice/compare/v3.1.19...v3.1.20) (2021-02-16)
48
-
49
- ### [3.1.19](https://github.com/kikobeats/tom-microservice/compare/v3.1.18...v3.1.19) (2021-01-25)
50
-
51
- ### [3.1.18](https://github.com/kikobeats/tom-microservice/compare/v3.1.17...v3.1.18) (2021-01-18)
52
-
53
- ### [3.1.17](https://github.com/kikobeats/tom-microservice/compare/v3.1.16...v3.1.17) (2021-01-04)
54
-
55
-
56
- ### Bug Fixes
57
-
58
- * ensure to set the new credit card as default ([122ad3c](https://github.com/kikobeats/tom-microservice/commit/122ad3c58ae6cdadec7abc1bd0eceb757d3aaff0))
59
-
60
- ### [3.1.16](https://github.com/kikobeats/tom-microservice/compare/v3.1.15...v3.1.16) (2021-01-04)
61
-
62
- ### [3.1.15](https://github.com/kikobeats/tom-microservice/compare/v3.1.14...v3.1.15) (2020-12-30)
63
-
64
- ### [3.1.14](https://github.com/kikobeats/tom-microservice/compare/v3.1.13...v3.1.14) (2020-12-28)
65
-
66
- ### [3.1.13](https://github.com/kikobeats/tom-microservice/compare/v3.1.12...v3.1.13) (2020-12-25)
67
-
68
- ### [3.1.12](https://github.com/kikobeats/tom-microservice/compare/v3.1.11...v3.1.12) (2020-12-19)
69
-
70
- ### [3.1.11](https://github.com/kikobeats/tom-microservice/compare/v3.1.10...v3.1.11) (2020-12-14)
71
-
72
- ### [3.1.10](https://github.com/kikobeats/tom-microservice/compare/v3.1.9...v3.1.10) (2020-11-30)
73
-
74
- ### [3.1.9](https://github.com/kikobeats/tom-microservice/compare/v3.1.8...v3.1.9) (2020-11-27)
75
-
76
- ### [3.1.8](https://github.com/kikobeats/tom-microservice/compare/v3.1.7...v3.1.8) (2020-11-02)
77
-
78
- ### [3.1.7](https://github.com/kikobeats/tom-microservice/compare/v3.1.6...v3.1.7) (2020-10-31)
79
-
80
- ### [3.1.6](https://github.com/kikobeats/tom-microservice/compare/v3.1.5...v3.1.6) (2020-10-30)
81
-
82
- ### [3.1.5](https://github.com/kikobeats/tom-microservice/compare/v3.1.4...v3.1.5) (2020-10-30)
83
-
84
- ### [3.1.4](https://github.com/kikobeats/tom-microservice/compare/v3.1.3...v3.1.4) (2020-10-25)
85
-
86
-
87
- ### Bug Fixes
88
-
89
- * ensure to compile template properly ([0ad169b](https://github.com/kikobeats/tom-microservice/commit/0ad169bd9fd5605b5950cc3876af0f5672b10011))
90
-
91
- ### [3.1.3](https://github.com/kikobeats/tom-microservice/compare/v3.1.2...v3.1.3) (2020-10-25)
92
-
93
- ### [3.1.2](https://github.com/kikobeats/tom-microservice/compare/v3.1.1...v3.1.2) (2020-10-22)
94
-
95
-
96
- ### Bug Fixes
97
-
98
- * remove condition ([cdf23fe](https://github.com/kikobeats/tom-microservice/commit/cdf23fedb69c5f1450f692cd249f4d479cf418ce))
99
-
100
- ### [3.1.1](https://github.com/kikobeats/tom-microservice/compare/v3.1.0...v3.1.1) (2020-10-21)
101
-
102
- ## [3.1.0](https://github.com/kikobeats/tom-microservice/compare/v3.0.1...v3.1.0) (2020-10-09)
103
-
104
-
105
- ### Features
106
-
107
- * support taxes strategies ([231e2c9](https://github.com/kikobeats/tom-microservice/commit/231e2c966e7507654733b8de01342336385a62f1))
108
-
109
- ### [3.0.1](https://github.com/kikobeats/tom-microservice/compare/v3.0.0...v3.0.1) (2020-10-03)
110
-
111
-
112
- ### Bug Fixes
113
-
114
- * ensure to collect plan id from session ([614ff4c](https://github.com/kikobeats/tom-microservice/commit/614ff4cee7725d640d0182acfd150b60ed24bf88))
115
-
116
- ## [3.0.0](https://github.com/kikobeats/tom-microservice/compare/v2.11.0...v3.0.0) (2020-10-01)
117
-
118
- ## [2.11.0](https://github.com/kikobeats/tom-microservice/compare/v2.10.0...v2.11.0) (2020-09-30)
119
-
120
-
121
- ### Features
122
-
123
- * associate a tax rate with subscriptions ([0c04eff](https://github.com/kikobeats/tom-microservice/commit/0c04eff7509ac191c5b8d96035c0a16b96e79b9a))
124
-
125
-
126
- ### Bug Fixes
127
-
128
- * apply tax rate if is possible ([e600bad](https://github.com/kikobeats/tom-microservice/commit/e600bad606be0061c026783cd3d2277f8a5655a0))
129
-
130
- ## [2.10.0](https://github.com/kikobeats/tom-microservice/compare/v2.9.37...v2.10.0) (2020-09-30)
131
-
132
-
133
- ### Features
134
-
135
- * update stripe version to 2020-08-27 ([d92dd7d](https://github.com/kikobeats/tom-microservice/commit/d92dd7d255a129dab94dfeba29627f97f94db5f0))
136
-
137
- ### [2.9.37](https://github.com/kikobeats/tom-microservice/compare/v2.9.36...v2.9.37) (2020-09-30)
138
-
139
- ### [2.9.36](https://github.com/kikobeats/tom-microservice/compare/v2.9.35...v2.9.36) (2020-09-28)
140
-
141
- ### [2.9.35](https://github.com/kikobeats/tom-microservice/compare/v2.9.34...v2.9.35) (2020-09-20)
142
-
143
- ### [2.9.34](https://github.com/kikobeats/tom-microservice/compare/v2.9.33...v2.9.34) (2020-09-06)
144
-
145
- ### [2.9.33](https://github.com/kikobeats/tom-microservice/compare/v2.9.32...v2.9.33) (2020-08-17)
146
-
147
- ### [2.9.32](https://github.com/kikobeats/tom-microservice/compare/v2.9.31...v2.9.32) (2020-08-11)
148
-
149
- ### [2.9.31](https://github.com/kikobeats/tom-microservice/compare/v2.9.30...v2.9.31) (2020-08-08)
150
-
151
- ### [2.9.30](https://github.com/kikobeats/tom-microservice/compare/v2.9.29...v2.9.30) (2020-08-02)
152
-
153
- ### [2.9.29](https://github.com/kikobeats/tom-microservice/compare/v2.9.28...v2.9.29) (2020-07-17)
154
-
155
- ### [2.9.28](https://github.com/kikobeats/tom-microservice/compare/v2.9.27...v2.9.28) (2020-07-08)
156
-
157
- ### [2.9.27](https://github.com/kikobeats/tom-microservice/compare/v2.9.26...v2.9.27) (2020-06-15)
158
-
159
- ### [2.9.26](https://github.com/kikobeats/tom-microservice/compare/v2.9.25...v2.9.26) (2020-06-09)
160
-
161
- ### [2.9.25](https://github.com/kikobeats/tom-microservice/compare/v2.9.24...v2.9.25) (2020-06-08)
162
-
163
- ### [2.9.24](https://github.com/kikobeats/tom-microservice/compare/v2.9.23...v2.9.24) (2020-06-01)
164
-
165
- ### [2.9.23](https://github.com/kikobeats/tom-microservice/compare/v2.9.22...v2.9.23) (2020-05-19)
166
-
167
- ### [2.9.22](https://github.com/kikobeats/tom-microservice/compare/v2.9.21...v2.9.22) (2020-05-18)
168
-
169
- ### [2.9.21](https://github.com/kikobeats/tom-microservice/compare/v2.9.20...v2.9.21) (2020-05-12)
170
-
171
- ### [2.9.20](https://github.com/kikobeats/tom-microservice/compare/v2.9.19...v2.9.20) (2020-05-07)
172
-
173
- ### [2.9.19](https://github.com/kikobeats/tom-microservice/compare/v2.9.18...v2.9.19) (2020-05-04)
174
-
175
- ### [2.9.18](https://github.com/kikobeats/tom-microservice/compare/v2.9.17...v2.9.18) (2020-04-28)
176
-
177
- ### [2.9.17](https://github.com/kikobeats/tom-microservice/compare/v2.9.16...v2.9.17) (2020-04-21)
178
-
179
- ### [2.9.16](https://github.com/kikobeats/tom-microservice/compare/v2.9.15...v2.9.16) (2020-04-13)
180
-
181
- ### [2.9.15](https://github.com/kikobeats/tom-microservice/compare/v2.9.14...v2.9.15) (2020-04-13)
182
-
183
- ### [2.9.14](https://github.com/kikobeats/tom-microservice/compare/v2.9.13...v2.9.14) (2020-04-03)
184
-
185
- ### [2.9.13](https://github.com/kikobeats/tom-microservice/compare/v2.9.12...v2.9.13) (2020-04-02)
186
-
187
- ### [2.9.12](https://github.com/kikobeats/tom-microservice/compare/v2.9.11...v2.9.12) (2020-03-27)
188
-
189
- ### [2.9.11](https://github.com/kikobeats/tom-microservice/compare/v2.9.10...v2.9.11) (2020-03-25)
190
-
191
- ### [2.9.10](https://github.com/kikobeats/tom-microservice/compare/v2.9.9...v2.9.10) (2020-03-20)
192
-
193
- ### [2.9.9](https://github.com/kikobeats/tom-microservice/compare/v2.9.8...v2.9.9) (2020-03-12)
194
-
195
- ### [2.9.8](https://github.com/kikobeats/tom-microservice/compare/v2.9.7...v2.9.8) (2020-03-11)
196
-
197
- ### [2.9.7](https://github.com/kikobeats/tom-microservice/compare/v2.9.6...v2.9.7) (2020-02-24)
198
-
199
- ### [2.9.6](https://github.com/kikobeats/tom-microservice/compare/v2.9.5...v2.9.6) (2020-02-22)
200
-
201
- ### [2.9.5](https://github.com/kikobeats/tom-microservice/compare/v2.9.4...v2.9.5) (2020-02-21)
202
-
203
- ### [2.9.4](https://github.com/kikobeats/tom-microservice/compare/v2.9.3...v2.9.4) (2020-02-18)
204
-
205
- ### [2.9.3](https://github.com/kikobeats/tom-microservice/compare/v2.9.2...v2.9.3) (2020-02-14)
206
-
207
- ### [2.9.2](https://github.com/kikobeats/tom-microservice/compare/v2.9.1...v2.9.2) (2020-02-13)
208
-
209
- ### [2.9.1](https://github.com/kikobeats/tom-microservice/compare/v2.9.0...v2.9.1) (2020-02-07)
210
-
211
- ## [2.9.0](https://github.com/kikobeats/tom-microservice/compare/v2.8.0...v2.9.0) (2020-01-31)
212
-
213
-
214
- ### Features
215
-
216
- * update dependencies ([ec22701](https://github.com/kikobeats/tom-microservice/commit/ec227015b36a26d466c767cc88a7b73b25d28395))
217
-
218
- ## [2.8.0](https://github.com/kikobeats/tom-microservice/compare/v2.7.14...v2.8.0) (2020-01-21)
219
-
220
- ### [2.7.14](https://github.com/kikobeats/tom-microservice/compare/v2.7.13...v2.7.14) (2019-09-23)
221
-
222
-
223
- ### Bug Fixes
224
-
225
- * get customer under best effort ([36b3a38](https://github.com/kikobeats/tom-microservice/commit/36b3a38))
226
-
227
- ### [2.7.13](https://github.com/kikobeats/tom-microservice/compare/v2.7.12...v2.7.13) (2019-09-23)
228
-
229
- ### [2.7.12](https://github.com/kikobeats/tom-microservice/compare/v2.7.11...v2.7.12) (2019-09-10)
230
-
231
- ### [2.7.11](https://github.com/kikobeats/tom-microservice/compare/v2.7.10...v2.7.11) (2019-09-07)
232
-
233
- ### [2.7.10](https://github.com/kikobeats/tom-microservice/compare/v2.7.9...v2.7.10) (2019-09-05)
234
-
235
-
236
- ### Bug Fixes
237
-
238
- * ensure resolve values ([7e87cbd](https://github.com/kikobeats/tom-microservice/commit/7e87cbd))
239
-
240
- ### [2.7.9](https://github.com/kikobeats/tom-microservice/compare/v2.7.8...v2.7.9) (2019-09-05)
241
-
242
- ### [2.7.8](https://github.com/kikobeats/tom-microservice/compare/v2.7.7...v2.7.8) (2019-09-05)
243
-
244
- ### [2.7.7](https://github.com/kikobeats/tom-microservice/compare/v2.7.6...v2.7.7) (2019-09-04)
245
-
246
- ### [2.7.6](https://github.com/kikobeats/tom-microservice/compare/v2.7.5...v2.7.6) (2019-09-04)
247
-
248
- ### [2.7.5](https://github.com/kikobeats/tom-microservice/compare/v2.7.4...v2.7.5) (2019-09-04)
249
-
250
- ### [2.7.4](https://github.com/kikobeats/tom-microservice/compare/v2.7.3...v2.7.4) (2019-09-02)
251
-
252
-
253
- ### Bug Fixes
254
-
255
- * linter ([40e9638](https://github.com/kikobeats/tom-microservice/commit/40e9638))
256
-
257
- ### [2.7.3](https://github.com/kikobeats/tom-microservice/compare/v2.7.1...v2.7.3) (2019-09-02)
258
-
259
-
260
- ### Bug Fixes
261
-
262
- * typo ([06e8c1d](https://github.com/kikobeats/tom-microservice/commit/06e8c1d))
263
- * typo ([#82](https://github.com/kikobeats/tom-microservice/issues/82)) ([b7b6542](https://github.com/kikobeats/tom-microservice/commit/b7b6542))
264
-
265
- ### [2.7.2](https://github.com/kikobeats/tom-microservice/compare/v2.7.1...v2.7.2) (2019-08-31)
266
-
267
- ### [2.7.1](https://github.com/kikobeats/tom-microservice/compare/v2.7.0...v2.7.1) (2019-08-31)
268
-
269
- ## [2.7.0](https://github.com/kikobeats/tom-microservice/compare/v2.6.0...v2.7.0) (2019-08-31)
270
-
271
-
272
- ### Bug Fixes
273
-
274
- * access plan id ([22da53e](https://github.com/kikobeats/tom-microservice/commit/22da53e))
275
- * better adapter interface ([31163c1](https://github.com/kikobeats/tom-microservice/commit/31163c1))
276
- * simple key/value ([54db2c0](https://github.com/kikobeats/tom-microservice/commit/54db2c0))
277
- * template should be optional ([fd06efc](https://github.com/kikobeats/tom-microservice/commit/fd06efc))
278
-
279
-
280
- ### Features
281
-
282
- * add payment/session endpoint ([ee7ef2f](https://github.com/kikobeats/tom-microservice/commit/ee7ef2f))
283
- * add stripe webhook support ([cbd7942](https://github.com/kikobeats/tom-microservice/commit/cbd7942))
284
-
285
- ## [2.6.0](https://github.com/kikobeats/tom-microservice/compare/v2.5.9...v2.6.0) (2019-08-27)
286
-
287
-
288
- ### Features
289
-
290
- * fill customer metadata ([#80](https://github.com/kikobeats/tom-microservice/issues/80)) ([2c16a4c](https://github.com/kikobeats/tom-microservice/commit/2c16a4c))
291
- * fill user metadata ([bfdf997](https://github.com/kikobeats/tom-microservice/commit/bfdf997))
292
-
293
- ### [2.5.9](https://github.com/kikobeats/tom-microservice/compare/v2.5.8...v2.5.9) (2019-08-27)
294
-
295
- ### [2.5.8](https://github.com/kikobeats/tom-microservice/compare/v2.5.7...v2.5.8) (2019-08-24)
296
-
297
- ### [2.5.7](https://github.com/kikobeats/tom-microservice/compare/v2.5.6...v2.5.7) (2019-08-21)
298
-
299
- ### [2.5.6](https://github.com/kikobeats/tom-microservice/compare/v2.5.5...v2.5.6) (2019-08-19)
300
-
301
-
302
- ### Bug Fixes
303
-
304
- * linter ([d3fadee](https://github.com/kikobeats/tom-microservice/commit/d3fadee))
305
-
306
- ### [2.5.5](https://github.com/kikobeats/tom-microservice/compare/v2.5.4...v2.5.5) (2019-08-15)
307
-
308
- ### [2.5.4](https://github.com/kikobeats/tom-microservice/compare/v2.5.3...v2.5.4) (2019-08-15)
309
-
310
-
311
- ### Bug Fixes
312
-
313
- * typo ([d7a0f46](https://github.com/kikobeats/tom-microservice/commit/d7a0f46))
314
-
315
- ### [2.5.3](https://github.com/kikobeats/tom-microservice/compare/v2.5.2...v2.5.3) (2019-08-14)
316
-
317
-
318
- ### Bug Fixes
319
-
320
- * wait server is ready ([4df4910](https://github.com/kikobeats/tom-microservice/commit/4df4910))
321
-
322
- ### [2.5.2](https://github.com/kikobeats/tom-microservice/compare/v2.5.1...v2.5.2) (2019-08-11)
323
-
324
- ### [2.5.1](https://github.com/kikobeats/tom-microservice/compare/v2.5.0...v2.5.1) (2019-07-30)
325
-
326
- ## [2.5.0](https://github.com/kikobeats/tom-microservice/compare/v2.3.37...v2.5.0) (2019-06-19)
327
-
328
-
329
- ### Bug Fixes
330
-
331
- * typo ([de0c2d3](https://github.com/kikobeats/tom-microservice/commit/de0c2d3))
332
-
333
-
334
- ### Build System
335
-
336
- * update dependencies ([cbdadf9](https://github.com/kikobeats/tom-microservice/commit/cbdadf9))
337
- * update dependencies ([c81ede2](https://github.com/kikobeats/tom-microservice/commit/c81ede2))
338
- * update travis ([4a5eac4](https://github.com/kikobeats/tom-microservice/commit/4a5eac4))
339
-
340
-
341
- ### Features
342
-
343
- * remove deep-map dependency ([15b6ab9](https://github.com/kikobeats/tom-microservice/commit/15b6ab9))
344
-
345
-
346
- ### Tests
347
-
348
- * rename helper ([9c0fbfc](https://github.com/kikobeats/tom-microservice/commit/9c0fbfc))
349
-
350
-
351
-
352
- ## [2.4.0](https://github.com/kikobeats/tom-microservice/compare/v2.3.37...v2.4.0) (2019-06-04)
353
-
354
-
355
- ### Build System
356
-
357
- * update dependencies ([cbdadf9](https://github.com/kikobeats/tom-microservice/commit/cbdadf9))
358
- * update dependencies ([c81ede2](https://github.com/kikobeats/tom-microservice/commit/c81ede2))
359
-
360
-
361
- ### Features
362
-
363
- * remove deep-map dependency ([15b6ab9](https://github.com/kikobeats/tom-microservice/commit/15b6ab9))
364
-
365
-
366
- ### Tests
367
-
368
- * rename helper ([9c0fbfc](https://github.com/kikobeats/tom-microservice/commit/9c0fbfc))
369
-
370
-
371
-
372
- ### [2.3.37](https://github.com/kikobeats/tom-microservice/compare/v2.3.36...v2.3.37) (2019-05-28)
373
-
374
-
375
- ### Bug Fixes
376
-
377
- * **package:** update beauty-error to version 1.2.0 ([77d0b47](https://github.com/kikobeats/tom-microservice/commit/77d0b47))
378
-
379
-
380
-
381
- ### [2.3.36](https://github.com/kikobeats/tom-microservice/compare/v2.3.35...v2.3.36) (2019-05-26)
382
-
383
-
384
- ### Bug Fixes
385
-
386
- * **package:** update to-query to version 1.4.0 ([c193a8a](https://github.com/kikobeats/tom-microservice/commit/c193a8a))
387
-
388
-
389
-
390
- ### [2.3.35](https://github.com/kikobeats/tom-microservice/compare/v2.3.34...v2.3.35) (2019-05-25)
391
-
392
-
393
- ### Bug Fixes
394
-
395
- * **package:** update to-query to version 1.3.0 ([a57b7b2](https://github.com/kikobeats/tom-microservice/commit/a57b7b2))
396
-
397
-
398
-
399
- ### [2.3.34](https://github.com/kikobeats/tom-microservice/compare/v2.3.33...v2.3.34) (2019-05-24)
400
-
401
-
402
- ### Bug Fixes
403
-
404
- * **package:** update to-query to version 1.2.1 ([664d79d](https://github.com/kikobeats/tom-microservice/commit/664d79d))
405
-
406
-
407
-
408
- ### [2.3.33](https://github.com/kikobeats/tom-microservice/compare/v2.3.32...v2.3.33) (2019-05-23)
409
-
410
-
411
- ### Bug Fixes
412
-
413
- * **package:** update to-query to version 1.1.0 ([05f10a0](https://github.com/kikobeats/tom-microservice/commit/05f10a0))
414
-
415
-
416
-
417
- ### [2.3.32](https://github.com/kikobeats/tom-microservice/compare/v2.3.31...v2.3.32) (2019-05-23)
418
-
419
-
420
- ### Build System
421
-
422
- * update dependencies ([a59ae1f](https://github.com/kikobeats/tom-microservice/commit/a59ae1f))
423
- * use to-query dependency ([3943f38](https://github.com/kikobeats/tom-microservice/commit/3943f38))
424
-
425
-
426
-
427
- ### [2.3.31](https://github.com/kikobeats/tom-microservice/compare/v2.3.30...v2.3.31) (2019-05-20)
428
-
429
-
430
- ### Build System
431
-
432
- * change git-authors-cli position ([05a1eab](https://github.com/kikobeats/tom-microservice/commit/05a1eab))
433
-
434
-
435
-
436
- ### [2.3.30](https://github.com/kikobeats/tom-microservice/compare/v2.3.29...v2.3.30) (2019-05-17)
437
-
438
-
439
- ### Bug Fixes
440
-
441
- * **package:** update express to version 4.17.0 ([d7e0715](https://github.com/kikobeats/tom-microservice/commit/d7e0715))
442
-
443
-
444
-
445
- ### [2.3.29](https://github.com/kikobeats/tom-microservice/compare/v2.3.28...v2.3.29) (2019-05-15)
446
-
447
-
448
- ### Bug Fixes
449
-
450
- * **package:** update stripe to version 7.0.0 ([91f0188](https://github.com/kikobeats/tom-microservice/commit/91f0188))
451
-
452
-
453
-
454
- ### [2.3.28](https://github.com/kikobeats/tom-microservice/compare/v2.3.26...v2.3.28) (2019-05-12)
455
-
456
-
457
- ### Bug Fixes
458
-
459
- * **package:** update update-notifier to version 2.6.0 ([008e246](https://github.com/kikobeats/tom-microservice/commit/008e246))
460
- * linter ([4876baf](https://github.com/kikobeats/tom-microservice/commit/4876baf))
461
-
462
-
463
- ### Build System
464
-
465
- * update dependencies ([252c026](https://github.com/kikobeats/tom-microservice/commit/252c026))
466
-
467
-
468
-
469
- ### [2.3.27](https://github.com/kikobeats/tom-microservice/compare/v2.3.26...v2.3.27) (2019-05-12)
470
-
471
-
472
- ### Bug Fixes
473
-
474
- * **package:** update update-notifier to version 2.6.0 ([008e246](https://github.com/kikobeats/tom-microservice/commit/008e246))
475
-
476
-
477
- ### Build System
478
-
479
- * update dependencies ([252c026](https://github.com/kikobeats/tom-microservice/commit/252c026))
480
-
481
-
482
-
483
- ### [2.3.26](https://github.com/kikobeats/tom-microservice/compare/v2.3.25...v2.3.26) (2019-05-05)
484
-
485
-
486
- ### Bug Fixes
487
-
488
- * **package:** update helmet to version 3.18.0 ([80b3051](https://github.com/kikobeats/tom-microservice/commit/80b3051))
489
-
490
-
491
-
492
- ## [2.3.25](https://github.com/kikobeats/tom-microservice/compare/v2.3.24...v2.3.25) (2019-05-03)
493
-
494
-
495
- ### Bug Fixes
496
-
497
- * **package:** update helmet to version 3.17.0 ([4af12bc](https://github.com/kikobeats/tom-microservice/commit/4af12bc))
498
-
499
-
500
-
501
- ## [2.3.24](https://github.com/kikobeats/tom-microservice/compare/v2.3.23...v2.3.24) (2019-04-30)
502
-
503
-
504
- ### Bug Fixes
505
-
506
- * **package:** update pupa to version 2.0.0 ([6e0ac0b](https://github.com/kikobeats/tom-microservice/commit/6e0ac0b))
507
-
508
-
509
-
510
- ## [2.3.23](https://github.com/kikobeats/tom-microservice/compare/v2.3.22...v2.3.23) (2019-04-26)
511
-
512
-
513
- ### Bug Fixes
514
-
515
- * **package:** update body-parser to version 1.19.0 ([6720974](https://github.com/kikobeats/tom-microservice/commit/6720974))
516
-
517
-
518
-
519
- ## [2.3.22](https://github.com/kikobeats/tom-microservice/compare/v2.3.21...v2.3.22) (2019-04-24)
520
-
521
-
522
- ### Bug Fixes
523
-
524
- * **package:** update auto-parse to version 1.7.0 ([c68539a](https://github.com/kikobeats/tom-microservice/commit/c68539a))
525
- * **package:** update pretty-ms to version 5.0.0 ([f952899](https://github.com/kikobeats/tom-microservice/commit/f952899))
526
-
527
-
528
-
529
- ## [2.3.21](https://github.com/kikobeats/tom-microservice/compare/v2.3.20...v2.3.21) (2019-04-18)
530
-
531
-
532
- ### Bug Fixes
533
-
534
- * **package:** update time-span to version 3.1.0 ([2f4789e](https://github.com/kikobeats/tom-microservice/commit/2f4789e))
535
-
536
-
537
-
538
- <a name="2.3.20"></a>
539
- ## [2.3.20](https://github.com/kikobeats/tom-microservice/compare/v2.3.19...v2.3.20) (2019-04-06)
540
-
541
-
542
- ### Bug Fixes
543
-
544
- * **package:** update nodemailer to version 6.1.0 ([bd4edd6](https://github.com/kikobeats/tom-microservice/commit/bd4edd6))
545
-
546
-
547
-
548
- <a name="2.3.19"></a>
549
- ## [2.3.19](https://github.com/kikobeats/tom-microservice/compare/v2.3.18...v2.3.19) (2019-04-03)
550
-
551
-
552
- ### Bug Fixes
553
-
554
- * **package:** update p-reflect to version 2.1.0 ([a9ba9f7](https://github.com/kikobeats/tom-microservice/commit/a9ba9f7))
555
- * **package:** update p-waterfall to version 2.1.0 ([81eb730](https://github.com/kikobeats/tom-microservice/commit/81eb730))
556
-
557
-
558
-
559
- <a name="2.3.18"></a>
560
- ## [2.3.18](https://github.com/kikobeats/tom-microservice/compare/v2.3.17...v2.3.18) (2019-03-31)
561
-
562
-
563
- ### Bug Fixes
564
-
565
- * **package:** update p-retry to version 4.1.0 ([379d249](https://github.com/kikobeats/tom-microservice/commit/379d249))
566
-
567
-
568
-
569
- <a name="2.3.17"></a>
570
- ## [2.3.17](https://github.com/kikobeats/tom-microservice/compare/v2.3.16...v2.3.17) (2019-03-25)
571
-
572
-
573
- ### Bug Fixes
574
-
575
- * **package:** update nodemailer to version 6.0.0 ([1008729](https://github.com/kikobeats/tom-microservice/commit/1008729))
576
-
577
-
578
-
579
- <a name="2.3.16"></a>
580
- ## [2.3.16](https://github.com/kikobeats/tom-microservice/compare/v2.3.14...v2.3.16) (2019-03-24)
581
-
582
-
583
- ### Bug Fixes
584
-
585
- * **package:** update cosmiconfig to version 5.2.0 ([af15009](https://github.com/kikobeats/tom-microservice/commit/af15009))
586
- * **package:** update p-reflect to version 2.0.0 ([e968244](https://github.com/kikobeats/tom-microservice/commit/e968244))
587
- * **package:** update p-waterfall to version 2.0.0 ([111931f](https://github.com/kikobeats/tom-microservice/commit/111931f))
588
-
589
-
590
-
591
- <a name="2.3.15"></a>
592
- ## [2.3.15](https://github.com/kikobeats/tom-microservice/compare/v2.3.14...v2.3.15) (2019-03-18)
593
-
594
-
595
- ### Bug Fixes
596
-
597
- * **package:** update p-reflect to version 2.0.0 ([e968244](https://github.com/kikobeats/tom-microservice/commit/e968244))
598
- * **package:** update p-waterfall to version 2.0.0 ([111931f](https://github.com/kikobeats/tom-microservice/commit/111931f))
599
-
600
-
601
-
602
- <a name="2.3.14"></a>
603
- ## [2.3.14](https://github.com/kikobeats/tom-microservice/compare/v2.3.13...v2.3.14) (2019-03-11)
604
-
605
-
606
- ### Bug Fixes
607
-
608
- * **package:** update p-retry to version 4.0.0 ([4bd66df](https://github.com/kikobeats/tom-microservice/commit/4bd66df))
609
-
610
-
611
-
612
- <a name="2.3.13"></a>
613
- ## [2.3.13](https://github.com/kikobeats/tom-microservice/compare/v2.3.12...v2.3.13) (2019-03-10)
614
-
615
-
616
- ### Bug Fixes
617
-
618
- * **package:** update helmet to version 3.16.0 ([5497418](https://github.com/kikobeats/tom-microservice/commit/5497418))
619
-
620
-
621
-
622
- <a name="2.3.12"></a>
623
- ## [2.3.12](https://github.com/kikobeats/tom-microservice/compare/v2.3.11...v2.3.12) (2019-03-08)
624
-
625
-
626
- ### Bug Fixes
627
-
628
- * **package:** update time-span to version 3.0.0 ([b9d191d](https://github.com/kikobeats/tom-microservice/commit/b9d191d))
629
-
630
-
631
-
632
- <a name="2.3.11"></a>
633
- ## [2.3.11](https://github.com/kikobeats/tom-microservice/compare/v2.3.10...v2.3.11) (2019-02-18)
634
-
635
-
636
-
637
- <a name="2.3.10"></a>
638
- ## [2.3.10](https://github.com/kikobeats/tom-microservice/compare/v2.3.8...v2.3.10) (2019-01-17)
639
-
640
-
641
- ### Bug Fixes
642
-
643
- * **package:** update got to version 9.6.0 ([738882b](https://github.com/kikobeats/tom-microservice/commit/738882b))
644
- * **package:** update ow to version 0.10.0 ([dddd906](https://github.com/kikobeats/tom-microservice/commit/dddd906))
645
- * **package:** update ow to version 0.9.0 ([151165b](https://github.com/kikobeats/tom-microservice/commit/151165b))
646
-
647
-
648
-
649
- <a name="2.3.9"></a>
650
- ## [2.3.9](https://github.com/kikobeats/tom-microservice/compare/v2.3.8...v2.3.9) (2019-01-15)
651
-
652
-
653
- ### Bug Fixes
654
-
655
- * **package:** update ow to version 0.10.0 ([dddd906](https://github.com/kikobeats/tom-microservice/commit/dddd906))
656
- * **package:** update ow to version 0.9.0 ([151165b](https://github.com/kikobeats/tom-microservice/commit/151165b))
657
-
658
-
659
-
660
- <a name="2.3.8"></a>
661
- ## [2.3.8](https://github.com/kikobeats/tom-microservice/compare/v2.3.7...v2.3.8) (2019-01-09)
662
-
663
-
664
- ### Bug Fixes
665
-
666
- * **package:** update nodemailer to version 5.1.0 ([df0769e](https://github.com/kikobeats/tom-microservice/commit/df0769e))
667
-
668
-
669
-
670
- <a name="2.3.7"></a>
671
- ## [2.3.7](https://github.com/kikobeats/tom-microservice/compare/v2.3.6...v2.3.7) (2018-12-28)
672
-
673
-
674
- ### Bug Fixes
675
-
676
- * **package:** update nodemailer to version 5.0.0 ([edc8b33](https://github.com/kikobeats/tom-microservice/commit/edc8b33))
677
-
678
-
679
-
680
- <a name="2.3.6"></a>
681
- ## [2.3.6](https://github.com/kikobeats/tom-microservice/compare/v2.3.5...v2.3.6) (2018-12-19)
682
-
683
-
684
- ### Bug Fixes
685
-
686
- * **package:** update jsendp to version 2.1.0 ([93ec870](https://github.com/kikobeats/tom-microservice/commit/93ec870))
687
-
688
-
689
-
690
- <a name="2.3.5"></a>
691
- ## [2.3.5](https://github.com/kikobeats/tom-microservice/compare/v2.3.4...v2.3.5) (2018-12-19)
692
-
693
-
694
- ### Bug Fixes
695
-
696
- * **package:** update got to version 9.5.0 ([0e13b20](https://github.com/kikobeats/tom-microservice/commit/0e13b20))
697
-
698
-
699
-
700
- <a name="2.3.4"></a>
701
- ## [2.3.4](https://github.com/kikobeats/tom-microservice/compare/v2.3.3...v2.3.4) (2018-12-12)
702
-
703
-
704
- ### Bug Fixes
705
-
706
- * **package:** update p-retry to version 3.0.0 ([2587c8d](https://github.com/kikobeats/tom-microservice/commit/2587c8d))
707
-
708
-
709
-
710
- <a name="2.3.3"></a>
711
- ## [2.3.3](https://github.com/kikobeats/tom-microservice/compare/v2.3.2...v2.3.3) (2018-12-11)
712
-
713
-
714
- ### Bug Fixes
715
-
716
- * **package:** update got to version 9.4.0 ([d436f42](https://github.com/kikobeats/tom-microservice/commit/d436f42))
717
-
718
-
719
-
720
- <a name="2.3.2"></a>
721
- ## [2.3.2](https://github.com/kikobeats/tom-microservice/compare/v2.3.1...v2.3.2) (2018-12-03)
722
-
723
-
724
- ### Bug Fixes
725
-
726
- * **package:** update auto-parse to version 1.6.0 ([82915fb](https://github.com/kikobeats/tom-microservice/commit/82915fb))
727
-
728
-
729
-
730
- <a name="2.3.1"></a>
731
- ## [2.3.1](https://github.com/kikobeats/tom-microservice/compare/v2.3.0...v2.3.1) (2018-11-27)
732
-
733
-
734
- ### Bug Fixes
735
-
736
- * **package:** update stripe to version 6.16.0 ([a1cc119](https://github.com/kikobeats/tom-microservice/commit/a1cc119))
737
-
738
-
739
-
740
- <a name="2.3.0"></a>
741
- # [2.3.0](https://github.com/kikobeats/tom-microservice/compare/v2.2.10...v2.3.0) (2018-11-26)
742
-
743
-
744
- ### Features
745
-
746
- * better logging errors ([151b611](https://github.com/kikobeats/tom-microservice/commit/151b611))
747
-
748
-
749
-
750
- <a name="2.2.10"></a>
751
- ## [2.2.10](https://github.com/kikobeats/tom-microservice/compare/v2.2.9...v2.2.10) (2018-11-19)
752
-
753
-
754
- ### Bug Fixes
755
-
756
- * **package:** update nodemailer to version 4.7.0 ([0b40d67](https://github.com/kikobeats/tom-microservice/commit/0b40d67))
757
-
758
-
759
-
760
- <a name="2.2.9"></a>
761
- ## [2.2.9](https://github.com/kikobeats/tom-microservice/compare/v2.2.8...v2.2.9) (2018-11-12)
762
-
763
-
764
- ### Bug Fixes
765
-
766
- * **package:** update stripe to version 6.15.0 ([7fc8e39](https://github.com/kikobeats/tom-microservice/commit/7fc8e39))
767
-
768
-
769
-
770
- <a name="2.2.8"></a>
771
- ## [2.2.8](https://github.com/kikobeats/tom-microservice/compare/v2.2.7...v2.2.8) (2018-11-12)
772
-
773
-
774
- ### Bug Fixes
775
-
776
- * error message ([8aa2392](https://github.com/kikobeats/tom-microservice/commit/8aa2392))
777
-
778
-
779
-
780
- <a name="2.2.7"></a>
781
- ## [2.2.7](https://github.com/kikobeats/tom-microservice/compare/v2.2.6...v2.2.7) (2018-11-12)
782
-
783
-
784
- ### Bug Fixes
785
-
786
- * call method ([a3b0bb1](https://github.com/kikobeats/tom-microservice/commit/a3b0bb1))
787
-
788
-
789
-
790
- <a name="2.2.6"></a>
791
- ## [2.2.6](https://github.com/kikobeats/tom-microservice/compare/v2.2.5...v2.2.6) (2018-11-09)
792
-
793
-
794
- ### Bug Fixes
795
-
796
- * **package:** update stripe to version 6.14.0 ([ee1a28c](https://github.com/kikobeats/tom-microservice/commit/ee1a28c))
797
-
798
-
799
-
800
- <a name="2.2.5"></a>
801
- ## [2.2.5](https://github.com/kikobeats/tom-microservice/compare/v2.2.4...v2.2.5) (2018-11-07)
802
-
803
-
804
- ### Bug Fixes
805
-
806
- * **package:** update helmet to version 3.15.0 ([38be890](https://github.com/kikobeats/tom-microservice/commit/38be890))
807
-
808
-
809
-
810
- <a name="2.2.4"></a>
811
- ## [2.2.4](https://github.com/kikobeats/tom-microservice/compare/v2.2.3...v2.2.4) (2018-10-30)
812
-
813
-
814
- ### Bug Fixes
815
-
816
- * **package:** update stripe to version 6.13.0 ([69d42c7](https://github.com/kikobeats/tom-microservice/commit/69d42c7))
817
-
818
-
819
-
820
- <a name="2.2.3"></a>
821
- ## [2.2.3](https://github.com/kikobeats/tom-microservice/compare/v2.2.2...v2.2.3) (2018-10-30)
822
-
823
-
824
- ### Bug Fixes
825
-
826
- * **package:** update got to version 9.3.0 ([d5494fa](https://github.com/kikobeats/tom-microservice/commit/d5494fa))
827
-
828
-
829
-
830
- <a name="2.2.2"></a>
831
- ## [2.2.2](https://github.com/kikobeats/tom-microservice/compare/v2.2.1...v2.2.2) (2018-10-30)
832
-
833
-
834
- ### Bug Fixes
835
-
836
- * **package:** update clean-stack to version 2.0.0 ([d033a94](https://github.com/kikobeats/tom-microservice/commit/d033a94))
837
-
838
-
839
-
840
- <a name="2.2.1"></a>
841
- ## 2.2.1 (2018-10-16)
842
-
843
-
844
- ### Bug Fixes
845
-
846
- * **package:** update ow to version 0.8.0 ([20b7f6b](https://github.com/kikobeats/tom-microservice/commit/20b7f6b))
847
-
848
-
849
-
850
- <a name="2.2.0"></a>
851
- # 2.2.0 (2018-08-28)
852
-
853
-
854
-
855
- <a name="2.1.2"></a>
856
- ## 2.1.2 (2018-08-23)
857
-
858
-
859
-
860
- <a name="2.1.1"></a>
861
- ## 2.1.1 (2018-08-22)
862
-
863
-
864
-
865
- <a name="2.1.0"></a>
866
- # 2.1.0 (2018-08-21)
867
-
868
-
869
-
870
- <a name="2.0.0"></a>
871
- # 2.0.0 (2018-07-29)
872
-
873
-
874
-
875
- <a name="1.1.3"></a>
876
- ## 1.1.3 (2018-05-11)
877
-
878
-
879
-
880
- <a name="1.1.2"></a>
881
- ## 1.1.2 (2018-05-10)
882
-
883
-
884
-
885
- <a name="1.1.1"></a>
886
- ## 1.1.1 (2018-03-24)
887
-
888
-
889
-
890
- <a name="1.1.0"></a>
891
- # 1.1.0 (2018-03-23)
892
-
893
-
894
-
895
- <a name="1.0.5"></a>
896
- ## 1.0.5 (2018-01-08)
897
-
898
-
899
-
900
- <a name="1.0.4"></a>
901
- ## 1.0.4 (2018-01-07)
902
-
903
-
904
-
905
- <a name="1.0.3"></a>
906
- ## 1.0.3 (2018-01-05)
907
-
908
-
909
-
910
- <a name="1.0.2"></a>
911
- ## 1.0.2 (2018-01-05)
912
-
913
-
914
-
915
- <a name="1.0.1"></a>
916
- ## 1.0.1 (2018-01-05)
917
-
918
-
919
-
920
- <a name="1.0.0"></a>
921
- # 1.0.0 (2018-01-05)
922
-
923
-
924
-
925
- <a name="2.2.0"></a>
926
- # 2.2.0 (2018-08-28)
927
-
928
- * Add Twitter integration ([4665a46](https://github.com/kikobeats/tom-microservice/commit/4665a46)), closes [#15](https://github.com/kikobeats/tom-microservice/issues/15)
929
- * Add Twitter integration ([1f8e9cc](https://github.com/kikobeats/tom-microservice/commit/1f8e9cc)), closes [#15](https://github.com/kikobeats/tom-microservice/issues/15)
930
- * Add Twitter integration ([d06cac6](https://github.com/kikobeats/tom-microservice/commit/d06cac6)), closes [#15](https://github.com/kikobeats/tom-microservice/issues/15)
931
-
932
-
933
-
934
- <a name="2.1.2"></a>
935
- ## 2.1.2 (2018-08-23)
936
-
937
- * Fix default cors ([c941aa5](https://github.com/kikobeats/tom-microservice/commit/c941aa5))
938
-
939
-
940
-
941
- <a name="2.1.1"></a>
942
- ## 2.1.1 (2018-08-22)
943
-
944
- * Pass previous props in batch series ([c3faf8d](https://github.com/kikobeats/tom-microservice/commit/c3faf8d))
945
- * Unify notification responses ([269309f](https://github.com/kikobeats/tom-microservice/commit/269309f))
946
-
947
-
948
-
949
- <a name="2.1.0"></a>
950
- # 2.1.0 (2018-08-21)
951
-
952
- * Attach payload to response ([3f90d4c](https://github.com/kikobeats/tom-microservice/commit/3f90d4c))
953
- * Update ([1a3f106](https://github.com/kikobeats/tom-microservice/commit/1a3f106))
954
- * Update ([6001985](https://github.com/kikobeats/tom-microservice/commit/6001985))
955
- * Update lint ([986e37f](https://github.com/kikobeats/tom-microservice/commit/986e37f))
956
- * Update plan id for resting ([206de9f](https://github.com/kikobeats/tom-microservice/commit/206de9f))
957
-
958
-
959
-
960
- <a name="2.0.0"></a>
961
- # 2.0.0 (2018-07-29)
962
-
963
- * Add /notifications/slack to the README ([cad1cc5](https://github.com/kikobeats/tom-microservice/commit/cad1cc5))
964
- * Add batch command ([ad5d2fc](https://github.com/kikobeats/tom-microservice/commit/ad5d2fc)), closes [#12](https://github.com/kikobeats/tom-microservice/issues/12)
965
- * Add coveralls ([9174cde](https://github.com/kikobeats/tom-microservice/commit/9174cde))
966
- * Add documentation for /notification/telegram ([65bb49c](https://github.com/kikobeats/tom-microservice/commit/65bb49c))
967
- * Add event emitter system ([7f60516](https://github.com/kikobeats/tom-microservice/commit/7f60516))
968
- * Add retry for commands ([162a32a](https://github.com/kikobeats/tom-microservice/commit/162a32a)), closes [#8](https://github.com/kikobeats/tom-microservice/issues/8)
969
- * Add slack integration ([8db5c97](https://github.com/kikobeats/tom-microservice/commit/8db5c97))
970
- * Add telegram notification command ([759f5e4](https://github.com/kikobeats/tom-microservice/commit/759f5e4))
971
- * Add template support for slack notifications ([21fa811](https://github.com/kikobeats/tom-microservice/commit/21fa811))
972
- * Adjust menu ([b9ccbf1](https://github.com/kikobeats/tom-microservice/commit/b9ccbf1)), closes [#5](https://github.com/kikobeats/tom-microservice/issues/5)
973
- * Adjust style for block codes ([8c10545](https://github.com/kikobeats/tom-microservice/commit/8c10545)), closes [#4](https://github.com/kikobeats/tom-microservice/issues/4)
974
- * Don't access template directly ([64a08a8](https://github.com/kikobeats/tom-microservice/commit/64a08a8))
975
- * Ensure required config value are present ([d0e5b60](https://github.com/kikobeats/tom-microservice/commit/d0e5b60))
976
- * Fix event multiple events ([99e0a7f](https://github.com/kikobeats/tom-microservice/commit/99e0a7f))
977
- * Fix resolve compilation with non template ([b6bd194](https://github.com/kikobeats/tom-microservice/commit/b6bd194))
978
- * Fix tests ([dfbf28d](https://github.com/kikobeats/tom-microservice/commit/dfbf28d))
979
- * Fix typo ([530ef40](https://github.com/kikobeats/tom-microservice/commit/530ef40))
980
- * Move credential error inside commands ([d5658fa](https://github.com/kikobeats/tom-microservice/commit/d5658fa))
981
- * Prefix environment variables ([a993fb5](https://github.com/kikobeats/tom-microservice/commit/a993fb5))
982
- * Redesign docs ([ec279bb](https://github.com/kikobeats/tom-microservice/commit/ec279bb))
983
- * Refactor tests ([a3e50ad](https://github.com/kikobeats/tom-microservice/commit/a3e50ad))
984
- * Remove telebot and use a simple request instead ([0475b80](https://github.com/kikobeats/tom-microservice/commit/0475b80))
985
- * Remove unused dependencies ([598da6e](https://github.com/kikobeats/tom-microservice/commit/598da6e))
986
- * Rename chat_id to chatId ([5196572](https://github.com/kikobeats/tom-microservice/commit/5196572))
987
- * Tweaks ([7d061ba](https://github.com/kikobeats/tom-microservice/commit/7d061ba))
988
- * Tweaks ([1dee0f2](https://github.com/kikobeats/tom-microservice/commit/1dee0f2))
989
- * Tweaks ([c081909](https://github.com/kikobeats/tom-microservice/commit/c081909))
990
- * Unify naming ([51edb69](https://github.com/kikobeats/tom-microservice/commit/51edb69))
991
- * Unify normalization ([537e705](https://github.com/kikobeats/tom-microservice/commit/537e705))
992
- * Unify template support ([c1f13a9](https://github.com/kikobeats/tom-microservice/commit/c1f13a9))
993
- * Update ([44d01a5](https://github.com/kikobeats/tom-microservice/commit/44d01a5))
994
- * Update ([a0ec320](https://github.com/kikobeats/tom-microservice/commit/a0ec320))
995
- * Update docs ([f65d97b](https://github.com/kikobeats/tom-microservice/commit/f65d97b))
996
- * Update docs ([51f6dce](https://github.com/kikobeats/tom-microservice/commit/51f6dce))
997
- * Update docs ([6e9d5a1](https://github.com/kikobeats/tom-microservice/commit/6e9d5a1))
998
- * Update index.html ([25a3d1c](https://github.com/kikobeats/tom-microservice/commit/25a3d1c))
999
- * Update index.html ([0d8f661](https://github.com/kikobeats/tom-microservice/commit/0d8f661))
1000
- * Update payment commands ([717035d](https://github.com/kikobeats/tom-microservice/commit/717035d))
1001
- * Update README.md ([2d72903](https://github.com/kikobeats/tom-microservice/commit/2d72903))
1002
- * Update README.md ([be00ef1](https://github.com/kikobeats/tom-microservice/commit/be00ef1))
1003
- * Update style.css ([2315e9c](https://github.com/kikobeats/tom-microservice/commit/2315e9c))
1004
- * Update tests ([e340307](https://github.com/kikobeats/tom-microservice/commit/e340307))
1005
- * Use got instead of node-fetch ([e751d4d](https://github.com/kikobeats/tom-microservice/commit/e751d4d))
1006
-
1007
-
1008
-
1009
- <a name="1.1.3"></a>
1010
- ## 1.1.3 (2018-05-11)
1011
-
1012
- * Style tweaks ([37c9ac4](https://github.com/kikobeats/tom-microservice/commit/37c9ac4))
1013
-
1014
-
1015
-
1016
- <a name="1.1.2"></a>
1017
- ## 1.1.2 (2018-05-10)
1018
-
1019
- * Add copy clipboard button ([2183058](https://github.com/kikobeats/tom-microservice/commit/2183058))
1020
- * Add list space ([471716f](https://github.com/kikobeats/tom-microservice/commit/471716f))
1021
- * Update ([f64c266](https://github.com/kikobeats/tom-microservice/commit/f64c266))
1022
- * Update deps ([220b946](https://github.com/kikobeats/tom-microservice/commit/220b946))
1023
-
1024
-
1025
-
1026
- <a name="1.1.1"></a>
1027
- ## 1.1.1 (2018-03-24)
1028
-
1029
- * Adjust doc style ([e9d6fbf](https://github.com/kikobeats/tom-microservice/commit/e9d6fbf))
1030
- * Improve branding ([e5f6dc6](https://github.com/kikobeats/tom-microservice/commit/e5f6dc6))
1031
- * Update README.md ([f876872](https://github.com/kikobeats/tom-microservice/commit/f876872))
1032
-
1033
-
1034
-
1035
- <a name="1.1.0"></a>
1036
- # 1.1.0 (2018-03-23)
1037
-
1038
- * Add update payment support ([f2b02ef](https://github.com/kikobeats/tom-microservice/commit/f2b02ef))
1039
- * Auto generate commands based on scaffold ([1bd7bdf](https://github.com/kikobeats/tom-microservice/commit/1bd7bdf))
1040
- * Tweaks ([eb4d684](https://github.com/kikobeats/tom-microservice/commit/eb4d684))
1041
- * Update deps ([35c16f6](https://github.com/kikobeats/tom-microservice/commit/35c16f6))
1042
-
1043
-
1044
-
1045
- <a name="1.0.5"></a>
1046
- ## 1.0.5 (2018-01-08)
1047
-
1048
- * Send 204 status code instead of 200 and empty content ([00b5b67](https://github.com/kikobeats/tom-microservice/commit/00b5b67))
1049
- * Update copy ([0144477](https://github.com/kikobeats/tom-microservice/commit/0144477))
1050
-
1051
-
1052
-
1053
- <a name="1.0.4"></a>
1054
- ## 1.0.4 (2018-01-07)
1055
-
1056
- * Improve email support ([6912046](https://github.com/kikobeats/tom-microservice/commit/6912046))
1057
- * Update README.md ([ed31c70](https://github.com/kikobeats/tom-microservice/commit/ed31c70))
1058
-
1059
-
1060
-
1061
- <a name="1.0.3"></a>
1062
- ## 1.0.3 (2018-01-05)
1063
-
1064
- * Avoid authenticate ping requests ([ca4100e](https://github.com/kikobeats/tom-microservice/commit/ca4100e))
1065
-
1066
-
1067
-
1068
- <a name="1.0.2"></a>
1069
- ## 1.0.2 (2018-01-05)
1070
-
1071
- * Avoid load update-notifier on production scenarios ([13c0e68](https://github.com/kikobeats/tom-microservice/commit/13c0e68))
1072
-
1073
-
1074
-
1075
- <a name="1.0.1"></a>
1076
- ## 1.0.1 (2018-01-05)
1077
-
1078
- * Update README.md ([b583ad5](https://github.com/kikobeats/tom-microservice/commit/b583ad5))
1079
- * Update website ([1fdbbc0](https://github.com/kikobeats/tom-microservice/commit/1fdbbc0))
1080
-
1081
-
1082
-
1083
- <a name="1.0.0"></a>
1084
- # 1.0.0 (2018-01-05)
1085
-
1086
- * Add CNAME ([3fa5cac](https://github.com/kikobeats/tom-microservice/commit/3fa5cac))
1087
- * Add docs ([0eae9d5](https://github.com/kikobeats/tom-microservice/commit/0eae9d5))
1088
- * Add extra break line ([1b0cea4](https://github.com/kikobeats/tom-microservice/commit/1b0cea4))
1089
- * Add missing dependencies ([6599464](https://github.com/kikobeats/tom-microservice/commit/6599464))
1090
- * Adjust style ([20e04e5](https://github.com/kikobeats/tom-microservice/commit/20e04e5))
1091
- * Adjust style ([bd4a21b](https://github.com/kikobeats/tom-microservice/commit/bd4a21b))
1092
- * Be possible send notification after payment ([4fe0cb6](https://github.com/kikobeats/tom-microservice/commit/4fe0cb6))
1093
- * Ensure all body keys are camel case ([e2d4677](https://github.com/kikobeats/tom-microservice/commit/e2d4677))
1094
- * First commit ([1e08e4d](https://github.com/kikobeats/tom-microservice/commit/1e08e4d))
1095
- * Remove process exit ([a67aba4](https://github.com/kikobeats/tom-microservice/commit/a67aba4))
1096
- * Remove unnecessary log ([53ad996](https://github.com/kikobeats/tom-microservice/commit/53ad996))
1097
- * Tweaks ([18b9ef8](https://github.com/kikobeats/tom-microservice/commit/18b9ef8))
1098
- * Update logo ([c294841](https://github.com/kikobeats/tom-microservice/commit/c294841))
1099
- * Update meta ([ad0cc38](https://github.com/kikobeats/tom-microservice/commit/ad0cc38))
1100
- * Update README.md ([82fb0ba](https://github.com/kikobeats/tom-microservice/commit/82fb0ba))