carlin 0.21.3 → 0.21.4

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.
@@ -64,7 +64,7 @@ const getRepositoryImageBuilder = () => ({
64
64
  Name: 'DOCKERFILE',
65
65
  Value: {
66
66
  'Fn::Sub': [
67
- 'FROM public.ecr.aws/ubuntu/ubuntu:latest',
67
+ 'FROM public.ecr.aws/ubuntu/ubuntu:20.04_stable',
68
68
  // https://stackoverflow.com/a/59693182/8786986
69
69
  'ENV DEBIAN_FRONTEND noninteractive',
70
70
  // Make sure apt is up to date
@@ -29,7 +29,10 @@ const getClosedPrCommands = ({ branch }) => [
29
29
  'git pull origin main',
30
30
  'git rev-parse HEAD',
31
31
  `export CARLIN_BRANCH=${branch}`,
32
- `[ -f "${(0, exports.getCommandFileDir)('closed-pr')}" ] && sh ${(0, exports.getCommandFileDir)('closed-pr')}`,
32
+ /**
33
+ * Exit without error if `closed-pr` does not exist.
34
+ */
35
+ `[ -f "${(0, exports.getCommandFileDir)('closed-pr')}" ] && sh ${(0, exports.getCommandFileDir)('closed-pr')} || echo 'closed-pr command not found'; exit 0`,
33
36
  ];
34
37
  exports.getClosedPrCommands = getClosedPrCommands;
35
38
  const getMainCommands = () => [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "carlin",
3
- "version": "0.21.3",
3
+ "version": "0.21.4",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/CHANGELOG.md DELETED
@@ -1,517 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [0.21.3](https://github.com/ttoss/carlin/compare/v0.21.2...v0.21.3) (2022-04-27)
7
-
8
- ### Bug Fixes
9
-
10
- - update nodejs version ([#49](https://github.com/ttoss/carlin/issues/49)) ([0c053b9](https://github.com/ttoss/carlin/commit/0c053b96b166fc8664d957c974310bc9503ab9fa))
11
-
12
- ## [0.21.2](https://github.com/ttoss/carlin/compare/v0.21.1...v0.21.2) (2022-03-10)
13
-
14
- **Note:** Version bump only for package carlin
15
-
16
- ## [0.21.1](https://github.com/ttoss/carlin/compare/v0.21.0...v0.21.1) (2022-03-10)
17
-
18
- ### Bug Fixes
19
-
20
- - closed-pr pipeline commands ([#47](https://github.com/ttoss/carlin/issues/47)) ([3eec7f1](https://github.com/ttoss/carlin/commit/3eec7f1ef81e5972c551f793cc4d5ab0b399b200))
21
-
22
- # [0.21.0](https://github.com/ttoss/carlin/compare/v0.20.5...v0.21.0) (2022-03-09)
23
-
24
- ### Features
25
-
26
- - add repository image updater ([#45](https://github.com/ttoss/carlin/issues/45)) ([cbcbdea](https://github.com/ttoss/carlin/commit/cbcbdea7f08885dcfe833c637612472236d93b38))
27
-
28
- ## [0.20.5](https://github.com/ttoss/carlin/compare/v0.20.4...v0.20.5) (2022-02-24)
29
-
30
- ### Bug Fixes
31
-
32
- - case error ([#43](https://github.com/ttoss/carlin/issues/43)) ([95be09c](https://github.com/ttoss/carlin/commit/95be09cfe3e0f15b6b22dc37267cb43b1f58e9a0))
33
-
34
- ## [0.20.4](https://github.com/ttoss/carlin/compare/v0.20.3...v0.20.4) (2022-02-24)
35
-
36
- **Note:** Version bump only for package carlin
37
-
38
- ## [0.20.3](https://github.com/ttoss/carlin/compare/v0.20.2...v0.20.3) (2022-02-23)
39
-
40
- ### Bug Fixes
41
-
42
- - remove Date.now mock ([9661fae](https://github.com/ttoss/carlin/commit/9661fae404dbcd00f5827228d98138bc4d6747c3))
43
- - remove Lambda@Edge" ([#38](https://github.com/ttoss/carlin/issues/38)) ([12a0e8c](https://github.com/ttoss/carlin/commit/12a0e8c6690feb73bea3ae561d0837d95242e58d))
44
- - tests fs mocks ([a00350a](https://github.com/ttoss/carlin/commit/a00350a68886236f9f438968b871ec6f784c189a))
45
-
46
- ## [0.20.2](https://github.com/ttoss/carlin/compare/v0.20.1...v0.20.2) (2022-02-01)
47
-
48
- ### Bug Fixes
49
-
50
- - update actions iam ([0fe5300](https://github.com/ttoss/carlin/commit/0fe53000c541d56e9d410853551bacbcb326a92c))
51
-
52
- ## [0.20.1](https://github.com/ttoss/carlin/compare/v0.20.0...v0.20.1) (2022-02-01)
53
-
54
- ### Bug Fixes
55
-
56
- - update actions iam ([4ff073f](https://github.com/ttoss/carlin/commit/4ff073f6067ca20994c9af892d0c4aa62c2c2b90))
57
- - update actions iam ([b5dd158](https://github.com/ttoss/carlin/commit/b5dd158ec992720e33b1c98baff495962a9e3481))
58
-
59
- # [0.20.0](https://github.com/ttoss/carlin/compare/v0.19.17...v0.20.0) (2022-02-01)
60
-
61
- ### Bug Fixes
62
-
63
- - update cloudfront protocol ([13678cd](https://github.com/ttoss/carlin/commit/13678cd3551924aa47d72ec322ea3d8c0e0502bc))
64
-
65
- ### Features
66
-
67
- - add tags to ecs report ([d0bf69d](https://github.com/ttoss/carlin/commit/d0bf69d82a737053a539356d8ba7afba966dacc3))
68
-
69
- ## [0.19.17](https://github.com/ttoss/carlin/compare/v0.19.16...v0.19.17) (2022-01-24)
70
-
71
- ### Bug Fixes
72
-
73
- - pipelines commands ([1c01d40](https://github.com/ttoss/carlin/commit/1c01d4077ae6fc9fc1ab6a565c0d08b50a575664))
74
-
75
- ## [0.19.16](https://github.com/ttoss/carlin/compare/v0.19.15...v0.19.16) (2022-01-04)
76
-
77
- ### Bug Fixes
78
-
79
- - add set -e to cicd pipelines ([95ba9a7](https://github.com/ttoss/carlin/commit/95ba9a7317e02a8e60b579a6f50132ef7629c1f8))
80
-
81
- ## [0.19.15](https://github.com/ttoss/carlin/compare/v0.19.14...v0.19.15) (2021-12-23)
82
-
83
- ### Bug Fixes
84
-
85
- - improve cicd docs ([3265dbc](https://github.com/ttoss/carlin/commit/3265dbc9a353cdd176aa6d79b2adb638db30931a))
86
-
87
- ## [0.19.14](https://github.com/ttoss/carlin/compare/v0.19.9...v0.19.14) (2021-12-09)
88
-
89
- ### Bug Fixes
90
-
91
- - issue [#34](https://github.com/ttoss/carlin/issues/34) cloudfront default root object ([#33](https://github.com/ttoss/carlin/issues/33)) ([33b9fbb](https://github.com/ttoss/carlin/commit/33b9fbb08b2a4814e8fc2a36b442533eb96019c9))
92
- - issue [#35](https://github.com/ttoss/carlin/issues/35) ([#36](https://github.com/ttoss/carlin/issues/36)) ([4386ad0](https://github.com/ttoss/carlin/commit/4386ad08120c6f1b995d9cbe70ed8d605b6ca895)), closes [#34](https://github.com/ttoss/carlin/issues/34)
93
-
94
- ## [0.19.9](https://github.com/ttoss/carlin/compare/v0.19.8...v0.19.9) (2021-09-28)
95
-
96
- ### Bug Fixes
97
-
98
- - website deploy configuration ([b46c373](https://github.com/ttoss/carlin/commit/b46c3730b41d7cd37d9051534db5e959cf045418))
99
-
100
- ## [0.19.8](https://github.com/ttoss/carlin/compare/v0.19.7...v0.19.8) (2021-09-24)
101
-
102
- ### Bug Fixes
103
-
104
- - pipelines ([0b266c4](https://github.com/ttoss/carlin/commit/0b266c4553aa6b921fdbc83273321005e4439b77))
105
-
106
- ## [0.19.7](https://github.com/ttoss/carlin/compare/v0.19.6...v0.19.7) (2021-09-23)
107
-
108
- ### Bug Fixes
109
-
110
- - github pipelines ([#30](https://github.com/ttoss/carlin/issues/30)) ([f112b63](https://github.com/ttoss/carlin/commit/f112b631995b38ea193af269eb2436d3d54eb8d3))
111
-
112
- ## [0.19.6](https://github.com/ttoss/carlin/compare/v0.19.5...v0.19.6) (2021-09-18)
113
-
114
- ### Bug Fixes
115
-
116
- - pipeline bucket object duplication ([3090748](https://github.com/ttoss/carlin/commit/3090748258818af3c5ca8a38a1c65c0fc1b21760))
117
-
118
- ## [0.19.5](https://github.com/ttoss/carlin/compare/v0.19.4...v0.19.5) (2021-09-17)
119
-
120
- ### Bug Fixes
121
-
122
- - logs url ([0651cf8](https://github.com/ttoss/carlin/commit/0651cf860067c3563031008bff1afb912b8f65be))
123
-
124
- ## [0.19.4](https://github.com/ttoss/carlin/compare/v0.19.3...v0.19.4) (2021-09-16)
125
-
126
- ### Bug Fixes
127
-
128
- - main tag report ([2a47c1c](https://github.com/ttoss/carlin/commit/2a47c1c03e4b60f59141e032b6dc083a9b019b06))
129
-
130
- ## [0.19.3](https://github.com/ttoss/carlin/compare/v0.19.2...v0.19.3) (2021-09-16)
131
-
132
- ### Bug Fixes
133
-
134
- - main pipeline loop ([0fa7b44](https://github.com/ttoss/carlin/commit/0fa7b44504248904f570ed2aa1eb3e6e09bf062f))
135
- - stop main if tag found ([cd5d4b7](https://github.com/ttoss/carlin/commit/cd5d4b7e986716313a714544e1aa2c5c682560ec))
136
-
137
- ## [0.19.2](https://github.com/ttoss/carlin/compare/v0.19.1...v0.19.2) (2021-09-16)
138
-
139
- **Note:** Version bump only for package carlin
140
-
141
- ## [0.19.1](https://github.com/ttoss/carlin/compare/v0.19.0...v0.19.1) (2021-09-16)
142
-
143
- **Note:** Version bump only for package carlin
144
-
145
- # [0.19.0](https://github.com/ttoss/carlin/compare/v0.18.0...v0.19.0) (2021-09-16)
146
-
147
- ### Bug Fixes
148
-
149
- - repository update ([303344d](https://github.com/ttoss/carlin/commit/303344d0c2aba2291c624d8c3fd1e7ca07fbf3b6))
150
-
151
- ### Features
152
-
153
- - change slack message ([d27285c](https://github.com/ttoss/carlin/commit/d27285c939b33f6f1cd5e99142c39d34a93fd278))
154
- - slack first integration ([e00b061](https://github.com/ttoss/carlin/commit/e00b061b52d70c9249bf53bd8d6bdf023410a41d))
155
- - update commands pattern ([88b0444](https://github.com/ttoss/carlin/commit/88b0444d6455a1ad1e1b1749320070087edac1dc))
156
- - update slack message ([dcc4f8a](https://github.com/ttoss/carlin/commit/dcc4f8af35820dea8b9e5eb38176d7f67079a6e1))
157
- - update slack message ([905c07e](https://github.com/ttoss/carlin/commit/905c07e58d18035bb81ce78e3c7d91e61a3351bd))
158
-
159
- # [0.18.0](https://github.com/ttoss/carlin/compare/v0.17.4...v0.18.0) (2021-08-13)
160
-
161
- ### Features
162
-
163
- - add csp false ([#29](https://github.com/ttoss/carlin/issues/29)) ([5635347](https://github.com/ttoss/carlin/commit/563534753e27f3fe98c6c3fa1f55bda9def88ff4))
164
-
165
- ## [0.17.4](https://github.com/ttoss/carlin/compare/v0.17.3...v0.17.4) (2021-06-15)
166
-
167
- ### Bug Fixes
168
-
169
- - tests with CARLIN_ENVIRONMENT ([a7979ef](https://github.com/ttoss/carlin/commit/a7979ef17256042adf7fab373f8968ef87ff1c3e))
170
-
171
- ## [0.17.3](https://github.com/ttoss/carlin/compare/v0.17.2...v0.17.3) (2021-06-15)
172
-
173
- ### Bug Fixes
174
-
175
- - aws reregion ([647770c](https://github.com/ttoss/carlin/commit/647770c271e9d707c98c182c48d3f5fcc2302d78))
176
-
177
- ## [0.17.2](https://github.com/ttoss/carlin/compare/v0.17.1...v0.17.2) (2021-06-15)
178
-
179
- ### Bug Fixes
180
-
181
- - update dockerfile commands ([547ff16](https://github.com/ttoss/carlin/commit/547ff1626d5d070f23b326629e07cd74f145d323))
182
-
183
- ## [0.17.1](https://github.com/ttoss/carlin/compare/v0.17.0...v0.17.1) (2021-06-14)
184
-
185
- **Note:** Version bump only for package carlin
186
-
187
- # [0.17.0](https://github.com/ttoss/carlin/compare/v0.16.2...v0.17.0) (2021-06-14)
188
-
189
- ### Bug Fixes
190
-
191
- - update jest ([4fd8b40](https://github.com/ttoss/carlin/commit/4fd8b4099193e07c4da4ba859cd5e28e90b3e568))
192
-
193
- ### Features
194
-
195
- - add skip flag ([215dba1](https://github.com/ttoss/carlin/commit/215dba1f9990fad0484b41ca12ad679b661ceb3c))
196
-
197
- ## [0.16.2](https://github.com/ttoss/carlin/compare/v0.16.1...v0.16.2) (2021-05-22)
198
-
199
- **Note:** Version bump only for package carlin
200
-
201
- ## [0.16.1](https://github.com/ttoss/carlin/compare/v0.16.0...v0.16.1) (2021-05-20)
202
-
203
- ### Bug Fixes
204
-
205
- - ecs logs url ([afd2eaa](https://github.com/ttoss/carlin/commit/afd2eaa91b6d3bbc556514b38f7cabf42ffaec4a))
206
-
207
- # [0.16.0](https://github.com/ttoss/carlin/compare/v0.15.6...v0.16.0) (2021-05-20)
208
-
209
- ### Features
210
-
211
- - ecs task report working ([e268483](https://github.com/ttoss/carlin/commit/e26848367ca307fe84fbc1b9e69f3116c5ea45c7))
212
- - upgrade cicd ([a070754](https://github.com/ttoss/carlin/commit/a070754bc8d89d43addf42e92fe72169a71ff274))
213
-
214
- ## [0.15.6](https://github.com/ttoss/carlin/compare/v0.15.5...v0.15.6) (2021-05-19)
215
-
216
- ### Bug Fixes
217
-
218
- - build website ([60787d7](https://github.com/ttoss/carlin/commit/60787d7fd0c59a5c0bda56be5e32485c9376d246))
219
-
220
- ## [0.15.5](https://github.com/ttoss/carlin/compare/v0.15.4...v0.15.5) (2021-05-19)
221
-
222
- ### Bug Fixes
223
-
224
- - add deep merge to environments config ([102dc7f](https://github.com/ttoss/carlin/commit/102dc7f64369335e4f407bd5666a2eaf81b23500))
225
-
226
- ### Features
227
-
228
- - add tags to ecs containers ([9288397](https://github.com/ttoss/carlin/commit/92883978079f3fe7423d673580df465c08a6b068))
229
- - improve cicd feedback ([809f488](https://github.com/ttoss/carlin/commit/809f488593e9d5ad115d6ca0697a415649ff41a8))
230
-
231
- ## [0.15.4](https://github.com/ttoss/carlin/compare/v0.15.3...v0.15.4) (2021-05-14)
232
-
233
- ### Bug Fixes
234
-
235
- - pipelines commands. Update CICD docs ([a22ab66](https://github.com/ttoss/carlin/commit/a22ab6623fde12c910428ebf09df8b0ced2d2f56))
236
-
237
- ## [0.15.3](https://github.com/ttoss/carlin/compare/v0.15.2...v0.15.3) (2021-05-13)
238
-
239
- ### Bug Fixes
240
-
241
- - npmrc ([f92367a](https://github.com/ttoss/carlin/commit/f92367a630a872b276f22d0acb87792e222f0024))
242
-
243
- ## [0.15.2](https://github.com/ttoss/carlin/compare/v0.15.1...v0.15.2) (2021-05-13)
244
-
245
- ### Bug Fixes
246
-
247
- - website carlin.ts cicd config ([de1113e](https://github.com/ttoss/carlin/commit/de1113ea0337433ec7e9b072805d9dc7235f294e))
248
-
249
- ## [0.15.1](https://github.com/ttoss/carlin/compare/v0.15.0...v0.15.1) (2021-05-13)
250
-
251
- ### Features
252
-
253
- - add task environment ([4711e0c](https://github.com/ttoss/carlin/commit/4711e0c55e60b4d095d96667bab85c7a110d19c6))
254
-
255
- # [0.15.0](https://github.com/ttoss/carlin/compare/v0.14.2...v0.15.0) (2021-05-13)
256
-
257
- ### Features
258
-
259
- - finished tag pipeline ([a096529](https://github.com/ttoss/carlin/commit/a0965298ffb3617d27caa5b7fcba1d66fe9f99a2))
260
-
261
- ## [0.14.2](https://github.com/ttoss/carlin/compare/v0.14.0...v0.14.2) (2021-05-12)
262
-
263
- ### Bug Fixes
264
-
265
- - cicd commands ([6b33a38](https://github.com/ttoss/carlin/commit/6b33a38cbb60b2e45fba831f9c0cd1d4664fc945))
266
- - tests ([38e7ee4](https://github.com/ttoss/carlin/commit/38e7ee44fd6b333773eb2c6fb5a436fa5a04c8c0))
267
-
268
- ### Features
269
-
270
- - cicd ([#27](https://github.com/ttoss/carlin/issues/27)) ([acc4039](https://github.com/ttoss/carlin/commit/acc40396f8267126fd860893f800fa63a8c882cc))
271
- - creating tag pipeline ([6908e72](https://github.com/ttoss/carlin/commit/6908e725e088185e86ed86e19ce2a47745272206))
272
- - ignore draft pr ([7f08e38](https://github.com/ttoss/carlin/commit/7f08e388f1c4305c8ec6aa90cdbf39b7d13a930e))
273
- - improve tests ([961b0f7](https://github.com/ttoss/carlin/commit/961b0f7cd9af6e14d816c22b60de0f7676992ced))
274
- - update packages ([74fa500](https://github.com/ttoss/carlin/commit/74fa50082f61596e5cae62c89c5678fe789e09c3))
275
- - update staging commands ([7a6b553](https://github.com/ttoss/carlin/commit/7a6b553590f958b8e17957cdddfcccef3cd4f321))
276
-
277
- ## [0.14.1](https://github.com/ttoss/carlin/compare/v0.14.0...v0.14.1) (2021-05-12)
278
-
279
- ### Bug Fixes
280
-
281
- - cicd commands ([6b33a38](https://github.com/ttoss/carlin/commit/6b33a38cbb60b2e45fba831f9c0cd1d4664fc945))
282
- - tests ([38e7ee4](https://github.com/ttoss/carlin/commit/38e7ee44fd6b333773eb2c6fb5a436fa5a04c8c0))
283
-
284
- ### Features
285
-
286
- - cicd ([#27](https://github.com/ttoss/carlin/issues/27)) ([acc4039](https://github.com/ttoss/carlin/commit/acc40396f8267126fd860893f800fa63a8c882cc))
287
- - creating tag pipeline ([6908e72](https://github.com/ttoss/carlin/commit/6908e725e088185e86ed86e19ce2a47745272206))
288
- - ignore draft pr ([7f08e38](https://github.com/ttoss/carlin/commit/7f08e388f1c4305c8ec6aa90cdbf39b7d13a930e))
289
- - improve tests ([961b0f7](https://github.com/ttoss/carlin/commit/961b0f7cd9af6e14d816c22b60de0f7676992ced))
290
- - update staging commands ([7a6b553](https://github.com/ttoss/carlin/commit/7a6b553590f958b8e17957cdddfcccef3cd4f321))
291
-
292
- # [0.14.0](https://github.com/ttoss/carlin/compare/v0.13.4...v0.14.0) (2021-04-08)
293
-
294
- ### Features
295
-
296
- - deploy lambda image first implementation ([27702e1](https://github.com/ttoss/carlin/commit/27702e1253b83d6d794713bd4603b73304cd121d))
297
- - first implementation of lambda image done, but not finished yet ([81562ea](https://github.com/ttoss/carlin/commit/81562ea795f217de4d4221a843e308755b9c7c96))
298
-
299
- ## [0.13.4](https://github.com/ttoss/carlin/compare/v0.13.3...v0.13.4) (2021-03-22)
300
-
301
- ### Bug Fixes
302
-
303
- - remove noEnv and add typescript to dependencies ([aacde98](https://github.com/ttoss/carlin/commit/aacde989037a82dff7b951cfc9e71fbb4ae890b1))
304
-
305
- ## [0.13.3](https://github.com/ttoss/carlin/compare/v0.13.2...v0.13.3) (2021-03-07)
306
-
307
- ### Bug Fixes
308
-
309
- - deploy static-app lambdaedge function limit ([db03725](https://github.com/ttoss/carlin/commit/db03725705858fbc6edbfad3106b752b1f4a55c8))
310
-
311
- ## [0.13.2](https://github.com/ttoss/carlin/compare/v0.13.1...v0.13.2) (2021-03-04)
312
-
313
- ### Bug Fixes
314
-
315
- - s3 windows upload ([86f785f](https://github.com/ttoss/carlin/commit/86f785f4a609689e7683678ff815971351ec51aa))
316
-
317
- ## [0.13.1](https://github.com/ttoss/carlin/compare/v0.13.0...v0.13.1) (2021-03-01)
318
-
319
- ### Bug Fixes
320
-
321
- - fixes [#26](https://github.com/ttoss/carlin/issues/26) ([c04ec9d](https://github.com/ttoss/carlin/commit/c04ec9da731ed22aa9ad63c7601c0141d5e98237))
322
-
323
- # [0.13.0](https://github.com/ttoss/carlin/compare/v0.12.6...v0.13.0) (2021-03-01)
324
-
325
- ### Features
326
-
327
- - add lambda layer ([#25](https://github.com/ttoss/carlin/issues/25)) ([d5f68ea](https://github.com/ttoss/carlin/commit/d5f68eaec44b9f7b4f7ae4a2d854c1d27b31588e))
328
-
329
- ## [0.12.6](https://github.com/ttoss/carlin/compare/v0.12.5...v0.12.6) (2021-02-26)
330
-
331
- ### Features
332
-
333
- - add headers to lambda@edge request origin only ([477a278](https://github.com/ttoss/carlin/commit/477a278a706134e3d6fe502c9674001570e0a348))
334
-
335
- ## [0.12.5](https://github.com/ttoss/carlin/compare/v0.12.4...v0.12.5) (2021-02-25)
336
-
337
- ### Bug Fixes
338
-
339
- - add prettier ([e4d13f5](https://github.com/ttoss/carlin/commit/e4d13f508d3703fffa4cc42dab30bda3c6a8dae7))
340
-
341
- ## [0.12.4](https://github.com/ttoss/carlin/compare/v0.12.3...v0.12.4) (2021-02-24)
342
-
343
- ### Bug Fixes
344
-
345
- - fixes [#24](https://github.com/ttoss/carlin/issues/24) ([cb076f9](https://github.com/ttoss/carlin/commit/cb076f9a667bbc69382930a76884234c33e3f26c))
346
-
347
- ## [0.12.3](https://github.com/ttoss/carlin/compare/v0.12.2...v0.12.3) (2021-02-22)
348
-
349
- ### Bug Fixes
350
-
351
- - fixes [#23](https://github.com/ttoss/carlin/issues/23) ([b49e39e](https://github.com/ttoss/carlin/commit/b49e39e3f3b8ad41f835bbe8188cffd39471bd2d))
352
-
353
- ## [0.12.2](https://github.com/ttoss/carlin/compare/v0.12.1...v0.12.2) (2021-02-22)
354
-
355
- ### Bug Fixes
356
-
357
- - fixes [#22](https://github.com/ttoss/carlin/issues/22) ([bfad6e1](https://github.com/ttoss/carlin/commit/bfad6e1e6a2a2117baf61cfac34bc05be5d19d7f))
358
-
359
- ## [0.12.1](https://github.com/ttoss/carlin/compare/v0.12.0...v0.12.1) (2021-02-11)
360
-
361
- ### Bug Fixes
362
-
363
- - tests ([77875b9](https://github.com/ttoss/carlin/commit/77875b956dfa461fb8920c6168e4916d2314102e))
364
-
365
- # [0.12.0](https://github.com/ttoss/carlin/compare/v0.11.7...v0.12.0) (2021-02-11)
366
-
367
- ### Features
368
-
369
- - static app improvements and docs ([#21](https://github.com/ttoss/carlin/issues/21)) ([5723688](https://github.com/ttoss/carlin/commit/572368840758ee35e3256847b830dcabc4de327f)), closes [#16](https://github.com/ttoss/carlin/issues/16) [#17](https://github.com/ttoss/carlin/issues/17) [#18](https://github.com/ttoss/carlin/issues/18) [#19](https://github.com/ttoss/carlin/issues/19) [#20](https://github.com/ttoss/carlin/issues/20)
370
-
371
- ## [0.11.7](https://github.com/ttoss/carlin/compare/v0.11.6...v0.11.7) (2021-02-04)
372
-
373
- **Note:** Version bump only for package carlin
374
-
375
- ## [0.11.6](https://github.com/ttoss/carlin/compare/v0.11.5...v0.11.6) (2021-02-04)
376
-
377
- **Note:** Version bump only for package carlin
378
-
379
- ## [0.11.5](https://github.com/ttoss/carlin/compare/v0.11.4...v0.11.5) (2021-02-03)
380
-
381
- ### Bug Fixes
382
-
383
- - stack name tests ([b7b9464](https://github.com/ttoss/carlin/commit/b7b9464fc8d72c513d996ecffc6f7a7da842832e))
384
-
385
- ## [0.11.4](https://github.com/ttoss/carlin/compare/v0.11.3...v0.11.4) (2021-02-02)
386
-
387
- ### Bug Fixes
388
-
389
- - issue [#13](https://github.com/ttoss/carlin/issues/13) ([#14](https://github.com/ttoss/carlin/issues/14)) ([f7e6f72](https://github.com/ttoss/carlin/commit/f7e6f72ca2e785f358a447b3c16fdadc80123ab3))
390
-
391
- ## [0.11.3](https://github.com/ttoss/carlin/compare/v0.11.2...v0.11.3) (2021-02-01)
392
-
393
- ### Bug Fixes
394
-
395
- - issues 10 and 11 ([#12](https://github.com/ttoss/carlin/issues/12)) ([62cda51](https://github.com/ttoss/carlin/commit/62cda5167aa4c67be38b71fa0ec15797ebf8c7ae))
396
-
397
- ## [0.11.2](https://github.com/ttoss/carlin/compare/v0.11.1...v0.11.2) (2021-01-19)
398
-
399
- ### Bug Fixes
400
-
401
- - issue [#8](https://github.com/ttoss/carlin/issues/8) ([#9](https://github.com/ttoss/carlin/issues/9)) ([217ff41](https://github.com/ttoss/carlin/commit/217ff41e555702732803f30f23621e6befe5344b))
402
-
403
- ## [0.11.1](https://github.com/ttoss/carlin/compare/v0.11.0...v0.11.1) (2020-12-22)
404
-
405
- ### Features
406
-
407
- - add GTM to all pages ([#7](https://github.com/ttoss/carlin/issues/7)) ([4e8e945](https://github.com/ttoss/carlin/commit/4e8e945095c0c42a28209a248d7d6bc23bd65413))
408
-
409
- # [0.11.0](https://github.com/ttoss/carlin/compare/v0.10.3...v0.11.0) (2020-12-20)
410
-
411
- **Note:** Version bump only for package carlin
412
-
413
- ## [0.10.3](https://github.com/ttoss/carlin/compare/v0.10.2...v0.10.3) (2020-12-11)
414
-
415
- **Note:** Version bump only for package carlin
416
-
417
- ## [0.10.2](https://github.com/ttoss/carlin/compare/v0.10.1...v0.10.2) (2020-12-08)
418
-
419
- ### Bug Fixes
420
-
421
- - remove parcel-bundler ([a33d609](https://github.com/ttoss/carlin/commit/a33d6099c26484720abe6c29e6f6576c70a92638))
422
-
423
- ## [0.10.1](https://github.com/ttoss/carlin/compare/v0.10.0...v0.10.1) (2020-12-08)
424
-
425
- ### Bug Fixes
426
-
427
- - typescript lambda build error ([68707a7](https://github.com/ttoss/carlin/commit/68707a776319a5c286bc196b4ffae760e78516e1))
428
-
429
- # [0.10.0](https://github.com/ttoss/carlin/compare/v0.9.0...v0.10.0) (2020-12-06)
430
-
431
- ### Features
432
-
433
- - add versions to static app deployments ([33f9032](https://github.com/ttoss/carlin/commit/33f903277fbe3054ba45d7165e09765e68fcb488))
434
- - remove retention limit from Lambda logs ([881ae21](https://github.com/ttoss/carlin/commit/881ae212ced29b9cdb014745f12b1bb576480a3e))
435
-
436
- # [0.9.0](https://github.com/ttoss/carlin/compare/v0.8.0...v0.9.0) (2020-11-15)
437
-
438
- ### Features
439
-
440
- - improve acm and ttls ([19671da](https://github.com/ttoss/carlin/commit/19671daed5c093c4e42af640a9c8c95912fcf4e5))
441
-
442
- # [0.8.0](https://github.com/ttoss/carlin/compare/v0.7.3...v0.8.0) (2020-11-13)
443
-
444
- ### Bug Fixes
445
-
446
- - error message ([17a9ab3](https://github.com/ttoss/carlin/commit/17a9ab384d30c0e7b3294308ee93addcbc671f3b))
447
-
448
- ### Features
449
-
450
- - add destroy lambda layer ([2f19610](https://github.com/ttoss/carlin/commit/2f19610c9c2dbb068916cf5c6700a7c3ce0157d2))
451
- - adding lambda layer documentation ([c8dafe7](https://github.com/ttoss/carlin/commit/c8dafe724972ae3e441aaf3113fe5baf21d4e24c))
452
- - deploy lambda layer ([278048a](https://github.com/ttoss/carlin/commit/278048aa3db1fc13c4344503f4b9a2710fdf66a3))
453
- - termination protection ([7e2dcc8](https://github.com/ttoss/carlin/commit/7e2dcc840812858d0b033250a993a77d4cc2a15c))
454
- - upload group of files on s3 ([ea7eaf8](https://github.com/ttoss/carlin/commit/ea7eaf8993467d111211b281f59b152c13028c12))
455
-
456
- ## [0.7.3](https://github.com/ttoss/carlin/compare/v0.7.2...v0.7.3) (2020-10-18)
457
-
458
- ### Bug Fixes
459
-
460
- - move ts-node register inside ts if statement ([4d6607b](https://github.com/ttoss/carlin/commit/4d6607b8312d5c449e55a3fbcf47d8b94641df6d))
461
-
462
- ## [0.7.2](https://github.com/ttoss/carlin/compare/v0.7.1...v0.7.2) (2020-10-18)
463
-
464
- ### Bug Fixes
465
-
466
- - ts import and deployCloudformation method ([88752a5](https://github.com/ttoss/carlin/commit/88752a52d2874b1718233e589a00bf25d3c05680))
467
-
468
- ## [0.7.1](https://github.com/ttoss/carlin/compare/v0.7.0...v0.7.1) (2020-10-18)
469
-
470
- **Note:** Version bump only for package carlin
471
-
472
- # [0.7.0](https://github.com/ttoss/carlin/compare/v0.6.1...v0.7.0) (2020-10-18)
473
-
474
- ### Bug Fixes
475
-
476
- - allow deploy without init git ([f8e719e](https://github.com/ttoss/carlin/commit/f8e719ea3cc478b234c6c3b50adb21660adea41d))
477
- - remove tags with empty values ([2c057e2](https://github.com/ttoss/carlin/commit/2c057e2dc5cf27da1c9beca5b357bcf71205187c))
478
-
479
- ### Features
480
-
481
- - allow js, ts, json, yml and yaml cloudformation template extensions ([e671daa](https://github.com/ttoss/carlin/commit/e671daa2b6fc2508a52db28d4cb1f90a49d04166))
482
-
483
- ## [0.6.1](https://github.com/ttoss/carlin/compare/v0.6.0...v0.6.1) (2020-10-05)
484
-
485
- ### Bug Fixes
486
-
487
- - automatically assign cloudfront to true if some options are true ([85e0d35](https://github.com/ttoss/carlin/commit/85e0d35a38a4a86b4ae453dcc1c51c2e9c4fe399))
488
- - update eslint rules ([989e9f9](https://github.com/ttoss/carlin/commit/989e9f9e10c1c864b2b341103e973d0acf543d1c))
489
-
490
- # [0.6.0](https://github.com/ttoss/carlin/compare/v0.5.1...v0.6.0) (2020-09-16)
491
-
492
- ### Features
493
-
494
- - add scp to deploy static-app ([f382e1d](https://github.com/ttoss/carlin/commit/f382e1d4a1e9f64e8cd90ce3fe8d79b00915544d))
495
-
496
- ## [0.5.1](https://github.com/ttoss/carlin/compare/v0.5.0...v0.5.1) (2020-09-10)
497
-
498
- ### Bug Fixes
499
-
500
- - commitling.config.js dir. woff files deploy ([da63b02](https://github.com/ttoss/carlin/commit/da63b026b466e454509273d07e5a9d7e8286f424))
501
-
502
- # [0.5.0](https://github.com/ttoss/carlin/compare/v0.4.0...v0.5.0) (2020-09-09)
503
-
504
- ### Features
505
-
506
- - add theme ui. Remove tailwindcss ([7a1c5a2](https://github.com/ttoss/carlin/commit/7a1c5a27d8bc2d43a98b28b1512a6ca783485f75))
507
- - carlin website deploy ([139eb82](https://github.com/ttoss/carlin/commit/139eb82337286c12e6d0717914905538ea5c34a0))
508
- - deploy static app edge working ([da5a284](https://github.com/ttoss/carlin/commit/da5a284731d47e3b12f90e45abe9be90933a4c88))
509
- - docs improvements ([829e9d6](https://github.com/ttoss/carlin/commit/829e9d6ad48111a35be6350f44e09fcfc06837c5))
510
- - more documentation ([abcb6da](https://github.com/ttoss/carlin/commit/abcb6da79afed0989214741c152e3e4264b406bd))
511
-
512
- # [0.4.0](https://github.com/ttoss/carlin/compare/v0.3.3...v0.4.0) (2020-08-18)
513
-
514
- ### Features
515
-
516
- - creating new docs ([3691167](https://github.com/ttoss/carlin/commit/36911673ecb104d23875253651a11780a04c0bf2))
517
- - templates ([3bfb81c](https://github.com/ttoss/carlin/commit/3bfb81c5f4e5613765429ccadd0cecc128c16d74))