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