oc 0.50.48 → 0.50.50

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.
Files changed (51) hide show
  1. package/.turbo/turbo-build.log +18 -0
  2. package/.turbo/turbo-lint.log +5 -0
  3. package/.turbo/turbo-test-silent.log +43 -0
  4. package/.turbo/turbo-test.log +1612 -0
  5. package/CHANGELOG.md +391 -13
  6. package/README.md +4 -4
  7. package/dist/cli/domain/registry.js +5 -5
  8. package/dist/cli/facade/dev.js +1 -1
  9. package/dist/cli/facade/publish.js +1 -1
  10. package/dist/components/oc-client/_package/package.json +4 -4
  11. package/dist/components/oc-client/_package/server.js +1 -1
  12. package/dist/components/oc-client/_package/src/oc-client.js +7 -133
  13. package/dist/components/oc-client/_package/src/oc-client.min.js +1 -15
  14. package/dist/components/oc-client/_package/src/oc-client.min.map +1 -1
  15. package/dist/components/oc-client/package.json +1 -1
  16. package/dist/components/oc-client/src/oc-client.js +7 -133
  17. package/dist/components/oc-client/src/oc-client.min.js +1 -15
  18. package/dist/components/oc-client/src/oc-client.min.map +1 -1
  19. package/dist/registry/domain/components-details.js +44 -10
  20. package/dist/registry/domain/nested-renderer.js +1 -1
  21. package/dist/registry/domain/repository.js +19 -6
  22. package/dist/registry/domain/url-builder.js +1 -1
  23. package/dist/registry/domain/validators/registry-configuration.js +3 -4
  24. package/dist/registry/routes/component-info.js +1 -1
  25. package/dist/registry/routes/helpers/format-error-stack.js +0 -31
  26. package/dist/registry/routes/helpers/get-component.js +37 -26
  27. package/dist/registry/routes/index.js +1 -1
  28. package/dist/registry/routes/validate.js +1 -1
  29. package/dist/registry/views/partials/components-list.js +1 -1
  30. package/dist/registry/views/static/index.d.ts +1 -1
  31. package/dist/registry/views/static/index.js +39 -5
  32. package/dist/registry/views/static/style.d.ts +1 -1
  33. package/dist/registry/views/static/style.js +20 -16
  34. package/dist/utils/clean-require.js +1 -1
  35. package/dist/utils/module-exists.js +1 -1
  36. package/package.json +121 -128
  37. package/tsconfig.json +33 -33
  38. package/.editorconfig +0 -9
  39. package/.github/ISSUE_TEMPLATE.md +0 -29
  40. package/.github/PULL_REQUEST_TEMPLATE.md +0 -21
  41. package/.github/workflows/node.js.yml +0 -29
  42. package/.nvmrc +0 -1
  43. package/.prettierrc +0 -8
  44. package/.yarnrc.yml +0 -1
  45. package/AGENTS.md +0 -58
  46. package/CONTRIBUTING.md +0 -68
  47. package/LICENSE +0 -20
  48. package/biome.json +0 -52
  49. package/lefthook.yml +0 -5
  50. package/logo-type.png +0 -0
  51. package/logo.png +0 -0
package/CHANGELOG.md CHANGED
@@ -1,62 +1,92 @@
1
1
  ## Change Log
2
2
 
3
+ ## 0.50.50
4
+
5
+ ### Patch Changes
6
+
7
+ - Refresh component details on background after publish to not delay response to client
8
+
9
+ ## 0.50.48
10
+
11
+ ### Patch Changes
12
+
13
+ - add cache on get component details
14
+
3
15
  ### v0.50.47
16
+
4
17
  - [#1471](https://github.com/opencomponents/oc/pull/1471) update handlebars cve
5
18
 
6
19
  ### v0.50.45
20
+
7
21
  - [#1470](https://github.com/opencomponents/oc/pull/1470) Fix absolute require for ESM modules
8
22
 
9
23
  ### v0.50.44
24
+
10
25
  - [#1468](https://github.com/opencomponents/oc/pull/1468) fix fallback
11
26
 
12
27
  ### v0.50.43
28
+
13
29
  - [#1467](https://github.com/opencomponents/oc/pull/1467) dont assume errors on fallback registry calls might have a body
14
30
 
15
31
  ### v0.50.42
32
+
16
33
  - [#1466](https://github.com/opencomponents/oc/pull/1466) add component-published event
17
34
 
18
35
  ### v0.50.41
36
+
19
37
  - [#1462](https://github.com/opencomponents/oc/pull/1462) pass imports on preview
20
38
 
21
39
  ### v0.50.40
40
+
22
41
  - [#1461](https://github.com/opencomponents/oc/pull/1461) add no robots option
23
42
 
24
43
  ### v0.50.39
44
+
25
45
  - [#1460](https://github.com/opencomponents/oc/pull/1460) pass error instance
26
46
 
27
47
  ### v0.50.38
48
+
28
49
  - [#1459](https://github.com/opencomponents/oc/pull/1459) add support for importmap in oc.json for oc dev
29
50
 
30
51
  ### v0.50.37
52
+
31
53
  - [#1457](https://github.com/opencomponents/oc/pull/1457) update client to allow signals on fetch
32
54
 
33
55
  ### v0.50.36
56
+
34
57
  - [#1456](https://github.com/opencomponents/oc/pull/1456) add envs to process.env
35
58
  - [#1455](https://github.com/opencomponents/oc/pull/1455) Fix: Remove millisecond-to-microsecond conversion in response times
36
59
 
37
60
  ### v0.50.35
61
+
38
62
  - [#1453](https://github.com/opencomponents/oc/pull/1453) Fix: Update iframe selector to use 'preview-iframe' class
39
63
  - [#1451](https://github.com/opencomponents/oc/pull/1451) update client to fix oc:rendered event
40
64
 
41
65
  ### v0.50.34
66
+
42
67
  - [#1450](https://github.com/opencomponents/oc/pull/1450) revert yargs for now
43
68
 
44
69
  ### v0.50.33
70
+
45
71
  - [#1449](https://github.com/opencomponents/oc/pull/1449) allow token pass
46
72
  - [#1448](https://github.com/opencomponents/oc/pull/1448) add ability for custom meta query
47
73
  - [#1447](https://github.com/opencomponents/oc/pull/1447) Revamp UI + Preview server
48
74
 
49
75
  ### v0.50.32
76
+
50
77
  - [#1446](https://github.com/opencomponents/oc/pull/1446) update oc-client-browser
51
78
 
52
79
  ### v0.50.31
80
+
53
81
  - [#1445](https://github.com/opencomponents/oc/pull/1445) update oc client. allow lazy load rendering
54
82
  - [#1444](https://github.com/opencomponents/oc/pull/1444) update client to work with nonces
55
83
 
56
84
  ### v0.50.30
85
+
57
86
  - [#1443](https://github.com/opencomponents/oc/pull/1443) typo
58
87
 
59
88
  ### v0.50.28
89
+
60
90
  - [#1442](https://github.com/opencomponents/oc/pull/1442) add routes option in oc.json
61
91
  - [#1441](https://github.com/opencomponents/oc/pull/1441) add preload option
62
92
  - [#1440](https://github.com/opencomponents/oc/pull/1440) validate command
@@ -65,41 +95,53 @@
65
95
  - [#1438](https://github.com/opencomponents/oc/pull/1438) feat: add setCookie functionality to component context
66
96
 
67
97
  ### v0.50.27
98
+
68
99
  - [#1435](https://github.com/opencomponents/oc/pull/1435) Fix loading info correctly
69
100
 
70
101
  ### v0.50.26
102
+
71
103
  - [#1434](https://github.com/opencomponents/oc/pull/1434) add fallback client option and new oc.json section for dev
72
104
 
73
105
  ### v0.50.25
106
+
74
107
  - [#1433](https://github.com/opencomponents/oc/pull/1433) update oc client browser
75
108
 
76
109
  ### v0.50.24
110
+
77
111
  - [#1432](https://github.com/opencomponents/oc/pull/1432) add author
78
112
 
79
113
  ### v0.50.23
114
+
80
115
  - [#1431](https://github.com/opencomponents/oc/pull/1431) add a toggle to hide api discovery too
81
116
 
82
117
  ### v0.50.22
118
+
83
119
  - [#1430](https://github.com/opencomponents/oc/pull/1430) Add keywords
84
120
 
85
121
  ### v0.50.21
122
+
86
123
  - [#1429](https://github.com/opencomponents/oc/pull/1429) add meta query for components
87
124
  - [#1427](https://github.com/opencomponents/oc/pull/1427) add enum prop for params
88
125
 
89
126
  ### v0.50.20
127
+
90
128
  - [#1426](https://github.com/opencomponents/oc/pull/1426) plugins with context
91
129
 
92
130
  ### v0.50.18
131
+
93
132
  - [#1425](https://github.com/opencomponents/oc/pull/1425) hide log calls
94
133
  - [#1424](https://github.com/opencomponents/oc/pull/1424) add publisher field
95
134
 
96
135
  ### v0.50.17
136
+
97
137
  - [#1423](https://github.com/opencomponents/oc/pull/1423) extend discovery options, add a way to filter states (experimental/deprecated), and also a way to hide experiments from api even
98
138
 
99
139
  ### v0.50.16
140
+
100
141
  - [#1422](https://github.com/opencomponents/oc/pull/1422) Fix splat path on local static redirector
101
142
 
102
143
  ### v0.50.15
144
+
103
145
  - [#1421](https://github.com/opencomponents/oc/pull/1421) express 5 migration
104
146
  - [#1387](https://github.com/opencomponents/oc/pull/1387) [Snyk] Security upgrade cross-spawn from 7.0.3 to 7.0.5
105
147
  - [#1389](https://github.com/opencomponents/oc/pull/1389) [Snyk] Security upgrade undici from 6.19.8 to 6.21.1
@@ -107,186 +149,242 @@
107
149
  - [#1418](https://github.com/opencomponents/oc/pull/1418) Leave preview open without discovery
108
150
 
109
151
  ### v0.50.14
152
+
110
153
  - [#1417](https://github.com/opencomponents/oc/pull/1417) add infinite scrolling to history
111
154
 
112
155
  ### v0.50.13
156
+
113
157
  - [#1416](https://github.com/opencomponents/oc/pull/1416) Add history endpoint and lazy load it on the UI
114
158
 
115
159
  ### v0.50.12
160
+
116
161
  - [#1415](https://github.com/opencomponents/oc/pull/1415) Move to JSX and Restyle
117
162
  - [#1413](https://github.com/opencomponents/oc/pull/1413) Fix error message on publish when is a string
118
163
  - [#1412](https://github.com/opencomponents/oc/pull/1412) Document options
119
164
 
120
165
  ### v0.50.11
166
+
121
167
  - [#1411](https://github.com/opencomponents/oc/pull/1411) update client
122
168
 
123
169
  ### v0.50.10
170
+
124
171
  - [#1409](https://github.com/opencomponents/oc/pull/1409) update client to support unmounting
125
172
 
126
173
  ### v0.50.9
174
+
127
175
  - [#1408](https://github.com/opencomponents/oc/pull/1408) update client (fix regression bug with events listeners not getting the type on first parameter)
128
176
 
129
177
  ### v0.50.8
178
+
130
179
  - [#1407](https://github.com/opencomponents/oc/pull/1407) Esm template
131
180
 
132
181
  ### v0.50.7
182
+
133
183
  - [#1406](https://github.com/opencomponents/oc/pull/1406) add traceparent
134
184
 
135
185
  ### v0.50.6
186
+
136
187
  - [#1405](https://github.com/opencomponents/oc/pull/1405) fix template type
137
188
 
138
189
  ### v0.50.5
190
+
139
191
  - [#1404](https://github.com/opencomponents/oc/pull/1404) Multiple logins
140
192
 
141
193
  ### v0.50.4
194
+
142
195
  - [#1403](https://github.com/opencomponents/oc/pull/1403) pass id when doing ssr
143
196
 
144
197
  ### v0.50.3
198
+
145
199
  - [#1400](https://github.com/opencomponents/oc/pull/1400) add crypto and url globals
146
200
 
147
201
  ### v0.50.2
202
+
148
203
  - [#1399](https://github.com/opencomponents/oc/pull/1399) fix content-type header
149
204
 
150
205
  ### v0.50.1
206
+
151
207
  - [#1397](https://github.com/opencomponents/oc/pull/1397) update client
152
208
 
153
209
  ### v0.50.0
210
+
154
211
  - [#1396](https://github.com/opencomponents/oc/pull/1396) [v0.50.0] [BREAKING] Switch compile client default to true
155
212
  - [#1395](https://github.com/opencomponents/oc/pull/1395) Support stream
156
213
  - [#1394](https://github.com/opencomponents/oc/pull/1394) add a min oc version checker for templates if defined
157
214
 
158
215
  ### v0.49.67
216
+
159
217
  - [#1393](https://github.com/opencomponents/oc/pull/1393) oc-client-browser@1.95 [ALLOW EMPTY ACTIONS]
160
218
 
161
219
  ### v0.49.66
220
+
162
221
  - [#1392](https://github.com/opencomponents/oc/pull/1392) add actions endpoint
163
222
 
164
223
  ### v0.49.65
224
+
165
225
  - [#1391](https://github.com/opencomponents/oc/pull/1391) udpate legacy compilers
166
226
 
167
227
  ### v0.49.64
228
+
168
229
  - [#1390](https://github.com/opencomponents/oc/pull/1390) update packages
169
230
 
170
231
  ### v0.49.63
232
+
171
233
  - [#1385](https://github.com/opencomponents/oc/pull/1385) update client
172
234
 
173
235
  ### v0.49.62
236
+
174
237
  - [#1384](https://github.com/opencomponents/oc/pull/1384) update client-browser
175
238
 
176
239
  ### v0.49.61
240
+
177
241
  - [#1383](https://github.com/opencomponents/oc/pull/1383) update oc-client to get element on model
178
242
 
179
243
  ### v0.49.60
244
+
180
245
  - [#1381](https://github.com/opencomponents/oc/pull/1381) fix put response
181
246
 
182
247
  ### v0.49.59
248
+
183
249
  - [#1380](https://github.com/opencomponents/oc/pull/1380) update oc-client-browser
184
250
  - [#1377](https://github.com/opencomponents/oc/pull/1377) remove got, replace with undici
185
251
  - [#1376](https://github.com/opencomponents/oc/pull/1376) Remove lodash
186
252
 
187
253
  ### v0.49.58
254
+
188
255
  - [#1375](https://github.com/opencomponents/oc/pull/1375) compress compiled client
189
256
 
190
257
  ### v0.49.57
258
+
191
259
  - [#1374](https://github.com/opencomponents/oc/pull/1374) serve client dev
192
260
 
193
261
  ### v0.49.56
262
+
194
263
  - [#1372](https://github.com/opencomponents/oc/pull/1372) npm install after oc init
195
264
  - [#1371](https://github.com/opencomponents/oc/pull/1371) dont install when packaging at all
196
265
 
197
266
  ### v0.49.55
267
+
198
268
  - [#1369](https://github.com/opencomponents/oc/pull/1369) add AbortController to the globals
199
269
 
200
270
  ### v0.49.54
271
+
201
272
  - [#1368](https://github.com/opencomponents/oc/pull/1368) update adapters
202
273
 
203
274
  ### v0.49.53
275
+
204
276
  - [#1365](https://github.com/opencomponents/oc/pull/1365) update oc-client to 1.7.12
205
277
 
206
278
  ### v0.49.52
279
+
207
280
  - [#1364](https://github.com/opencomponents/oc/pull/1364) Move to Biome
208
281
 
209
282
  ### v0.49.51
283
+
210
284
  - [#1363](https://github.com/opencomponents/oc/pull/1363) calculate sizes on packaging and show in registry UI if available
211
285
 
212
286
  ### v0.49.50
287
+
213
288
  - [#1362](https://github.com/opencomponents/oc/pull/1362) update oc client to fix a bug with externals
214
289
 
215
290
  ### v0.49.49
291
+
216
292
  - [#1360](https://github.com/opencomponents/oc/pull/1360) [Snyk] Security upgrade express from 4.18.2 to 4.19.2
217
293
  - [#1361](https://github.com/opencomponents/oc/pull/1361) update packages
218
294
 
219
295
  ### v0.49.48
296
+
220
297
  - [#1359](https://github.com/opencomponents/oc/pull/1359) add postRequestPayloadSize on dev and fix type
221
298
 
222
299
  ### v0.49.47
300
+
223
301
  - [#1358](https://github.com/opencomponents/oc/pull/1358) move to p-limit await import. node 18 and improve plugin type
224
302
 
225
303
  ### v0.49.46
304
+
226
305
  - [#1357](https://github.com/opencomponents/oc/pull/1357) ban eval from ocs
227
306
 
228
307
  ### v0.49.45
308
+
229
309
  - [#1356](https://github.com/opencomponents/oc/pull/1356) infer storage type and export config type
230
310
  - [#1355](https://github.com/opencomponents/oc/pull/1355) add retry options to compiled client
231
311
 
232
312
  ### v0.49.44
313
+
233
314
  - [#1354](https://github.com/opencomponents/oc/pull/1354) update client browser
234
315
 
235
316
  ### v0.49.43
317
+
236
318
  - [#1353](https://github.com/opencomponents/oc/pull/1353) always compile client on dev
237
319
 
238
320
  ### v0.49.42
321
+
239
322
  - [#1352](https://github.com/opencomponents/oc/pull/1352) Add a compileClient option
240
323
 
241
324
  ### v0.49.41
325
+
242
326
  - [#1351](https://github.com/opencomponents/oc/pull/1351) update oc client browser to 1.7.3
243
327
 
244
328
  ### v0.49.40
329
+
245
330
  - [#1350](https://github.com/opencomponents/oc/pull/1350) fix not adding oc-client on dev mode multiple times
246
331
 
247
332
  ### v0.49.36
333
+
248
334
  - [#1346](https://github.com/opencomponents/oc/pull/1346) Add support for Actions
249
335
 
250
336
  ### v0.49.34
337
+
251
338
  - [#1342](https://github.com/opencomponents/oc/pull/1342) [Snyk] Security upgrade semver from 7.4.0 to 7.5.2
252
339
  - [#1344](https://github.com/opencomponents/oc/pull/1344) Bump word-wrap from 1.2.3 to 1.2.4
253
340
 
254
341
  ### v0.49.30
342
+
255
343
  - [#1339](https://github.com/opencomponents/oc/pull/1339) add dryrun on CLI and Registry
256
344
  - [#1334](https://github.com/opencomponents/oc/pull/1334) [Snyk] Security upgrade oc-template-es6-compiler from 2.1.0 to 3.0.0
257
345
 
258
346
  ### v0.49.29
347
+
259
348
  - [#1327](https://github.com/opencomponents/oc/pull/1327) showing all error when publishing fails
260
349
 
261
350
  ### v0.49.28
351
+
262
352
  - [#1337](https://github.com/opencomponents/oc/pull/1337) send data-provider-error event
263
353
 
264
354
  ### v0.49.27
355
+
265
356
  - [#1336](https://github.com/opencomponents/oc/pull/1336) add support for global fetch on components
266
357
  - [#1324](https://github.com/opencomponents/oc/pull/1324) Bump http-cache-semantics from 4.1.0 to 4.1.1
267
358
  - [#1332](https://github.com/opencomponents/oc/pull/1332) Bump webpack from 5.64.4 to 5.77.0
268
359
 
269
360
  ### v0.49.24
361
+
270
362
  - [#1329](https://github.com/opencomponents/oc/pull/1329) check for exports data too
271
363
 
272
364
  ### v0.49.23
365
+
273
366
  - [#1320](https://github.com/opencomponents/oc/pull/1320) make npmignore applied only to root folders
274
367
 
275
368
  ### v0.49.22
369
+
276
370
  - [#1319](https://github.com/opencomponents/oc/pull/1319) Check unverified packages after start/publishing
277
371
 
278
372
  ### v0.49.21
373
+
279
374
  - [#1303](https://github.com/opencomponents/oc/pull/1303) add ability to retreieve environment variables from an env file
280
375
  - [#1312](https://github.com/opencomponents/oc/pull/1312) Upgrade project default Node.js version to 16
281
376
  - [#1317](https://github.com/opencomponents/oc/pull/1317) Bump loader-utils from 1.4.0 to 1.4.2
282
377
 
283
378
  ### v0.49.19
379
+
284
380
  - [#1315](https://github.com/opencomponents/oc/pull/1315) include the entire console api in the production stub
285
381
 
286
382
  ### v0.49.16
383
+
287
384
  - [#1313](https://github.com/opencomponents/oc/pull/1313) remove some any types
288
385
 
289
386
  ### v0.49.14
387
+
290
388
  - [#1308](https://github.com/opencomponents/oc/pull/1308) Update project to Node.js 14.x
291
389
  - [#1310](https://github.com/opencomponents/oc/pull/1310) Add Node.js v18 to CI
292
390
  - [#1306](https://github.com/opencomponents/oc/pull/1306) Align the Node.js nvm version with the one in package.json
@@ -300,9 +398,11 @@
300
398
  - [#1296](https://github.com/opencomponents/oc/pull/1296) removing express-promise-router
301
399
 
302
400
  ### v0.49.12
401
+
303
402
  - [#1295](https://github.com/opencomponents/oc/pull/1295) add option to send custom status code back to the registry
304
403
 
305
404
  ### v0.49.8
405
+
306
406
  - [#1292](https://github.com/opencomponents/oc/pull/1292) dont watch files on temp folder from templates
307
407
  - [#1289](https://github.com/opencomponents/oc/pull/1289) use polling on watch
308
408
  - [#1288](https://github.com/opencomponents/oc/pull/1288) Update README documentation link
@@ -325,16 +425,20 @@
325
425
  - [#1241](https://github.com/opencomponents/oc/pull/1241) Start moving callback based functions to promises
326
426
 
327
427
  ### v0.49.7
428
+
328
429
  - [#1283](https://github.com/opencomponents/oc/pull/1283) add "open" link to component preview page
329
430
  - [#1279](https://github.com/opencomponents/oc/pull/1279) improve auth flexibility allowing to pass any library on type field
330
431
 
331
432
  ### v0.49.6
433
+
332
434
  - [#1282](https://github.com/opencomponents/oc/pull/1282) Minor logging improvements
333
435
 
334
436
  ### v0.49.5
437
+
335
438
  - [#1280](https://github.com/opencomponents/oc/pull/1280) [INTERNAL] Allow for non-number port (i.e. pipe)
336
439
 
337
440
  ### v0.49.4
441
+
338
442
  - [#1277](https://github.com/opencomponents/oc/pull/1277) [CLI-FEATURE] add registries options for oc publish
339
443
  - [#1276](https://github.com/opencomponents/oc/pull/1276) [CLI-FEATURE] filter components to run when running oc dev
340
444
  - [#1270](https://github.com/opencomponents/oc/pull/1270) [INTERNAL] remove code about module.paths pushing on authentication
@@ -342,7 +446,7 @@
342
446
  - [#1271](https://github.com/opencomponents/oc/pull/1271) [TYPE IMPROVEMENT] remove global callback and dictionary types
343
447
  - [#1268](https://github.com/opencomponents/oc/pull/1268) [IMPROVEMENT] Improve typings of events in events handler
344
448
  - [#1264](https://github.com/opencomponents/oc/pull/1264) [INTERNAL] Replace lodash type checkers with typeof
345
- - [#1263](https://github.com/opencomponents/oc/pull/1263) [INTERNAL] Replace usage of lodash _.extend with Object.assign
449
+ - [#1263](https://github.com/opencomponents/oc/pull/1263) [INTERNAL] Replace usage of lodash \_.extend with Object.assign
346
450
  - [#1261](https://github.com/opencomponents/oc/pull/1261) [INTERNAL] type cleanRequire better
347
451
  - [#1256](https://github.com/opencomponents/oc/pull/1256) [INTERNAL] enable noUnusedParameters and noImplicitReturns rules. fix problems
348
452
  - [#1260](https://github.com/opencomponents/oc/pull/1260) [INTERNAL] Remove pad-zero util
@@ -350,12 +454,14 @@
350
454
  - [#1253](https://github.com/opencomponents/oc/pull/1253) [INTERNAL] Simplify log parameter names for newline
351
455
 
352
456
  ### v0.49.3
457
+
353
458
  - [#1262](https://github.com/opencomponents/oc/pull/1262) [BUGFIX] Add back --prefix when installing dependencies
354
459
 
355
460
  ### v0.49.2
461
+
356
462
  - [#1259](https://github.com/opencomponents/oc/pull/1259) [BUGFIX] remove prefix command on npm
357
463
  - [#1248](https://github.com/opencomponents/oc/pull/1248) Type better baseUrlFunc and discoveryFunc
358
- - [#1249](https://github.com/opencomponents/oc/pull/1249) use internal body-parser from express >=4.16
464
+ - [#1249](https://github.com/opencomponents/oc/pull/1249) use internal body-parser from express >=4.16
359
465
  - [#1250](https://github.com/opencomponents/oc/pull/1250) reduce lodash functions where they are easy replaceable
360
466
  - [#1251](https://github.com/opencomponents/oc/pull/1251) [INTERNAL] remove cjs export from facade, deal with it on cli/index
361
467
  - [#1252](https://github.com/opencomponents/oc/pull/1252) [INTERNAL] reduce usage of null assertions
@@ -390,11 +496,13 @@
390
496
  - [#1210](https://github.com/opencomponents/oc/pull/1210) remove new references on non-classes
391
497
 
392
498
  ### v0.49.1
499
+
393
500
  - [#1215](https://github.com/opencomponents/oc/pull/1215) add default empty object for object keys
394
501
  - [#1213](https://github.com/opencomponents/oc/pull/1213) replace _.keys and _.values with their Object methods
395
502
  - [#1212](https://github.com/opencomponents/oc/pull/1212) add request ip to the context obj
396
503
 
397
504
  ### v0.49.0
505
+
398
506
  - [#1207](https://github.com/opencomponents/oc/pull/1207) [BREAKING] Update oc-client-browser to 1.5.3
399
507
  - [#1205](https://github.com/opencomponents/oc/pull/1205) update packages
400
508
  - [#1206](https://github.com/opencomponents/oc/pull/1206) remove stringformat
@@ -404,9 +512,11 @@
404
512
  - [#1203](https://github.com/opencomponents/oc/pull/1203) Drop support for Node 8/10
405
513
 
406
514
  ### v0.48.22
515
+
407
516
  - [#1200](https://github.com/opencomponents/oc/pull/1200) upgrade oc-client to have es6 template by default
408
517
 
409
518
  ### v0.48.21
519
+
410
520
  - [#1199](https://github.com/opencomponents/oc/pull/1199) Publish new version
411
521
  - [#1198](https://github.com/opencomponents/oc/pull/1198) Upgrade oc client browser
412
522
  - [#1194](https://github.com/opencomponents/oc/pull/1194) Available plugins
@@ -417,28 +527,36 @@
417
527
  - [#1189](https://github.com/opencomponents/oc/pull/1189) Fix tests for windows
418
528
 
419
529
  ### v0.48.19
530
+
420
531
  - [#1185](https://github.com/opencomponents/oc/pull/1185) update oc-client-browser package
421
532
 
422
533
  ### v0.48.18
534
+
423
535
  - [#1184](https://github.com/opencomponents/oc/pull/1184) Add support for custom keepAliveTimeout config
424
536
 
425
537
  ### v0.48.17
538
+
426
539
  - [#1181](https://github.com/opencomponents/oc/pull/1181) Handle scoped packages when removing version
427
540
 
428
541
  ### v0.48.16
542
+
429
543
  - [#1180](https://github.com/opencomponents/oc/pull/1180) Respect cdn.maxConcurrentRequests in components-list
430
544
  - [#1177](https://github.com/opencomponents/oc/pull/1177) Remove unsupported email address
431
545
 
432
546
  ### v0.48.15
547
+
433
548
  - [#1174](https://github.com/opencomponents/oc/pull/1174) Handlebars OC Upgrade
434
549
 
435
550
  ### v0.48.14
551
+
436
552
  - [#1173](https://github.com/opencomponents/oc/pull/1173) [SFX-2153] - Upgraded Handlebars Compiler
437
553
 
438
554
  ### v0.48.12
555
+
439
556
  - [#1172](https://github.com/opencomponents/oc/pull/1172) [Snyk] Security upgrade oc-client from 3.2.10 to 3.2.11
440
557
 
441
558
  ### v0.48.9
559
+
442
560
  - [#1170](https://github.com/opencomponents/oc/pull/1170) [SFX-2153] - Upgrading Handlerbars render to latest version
443
561
  - [#1158](https://github.com/opencomponents/oc/pull/1158) Update mocha in package.json from 6.2.2 to 7.0.1
444
562
  - [#1157](https://github.com/opencomponents/oc/pull/1157) Update async in package.json from 3.1.0 to 3.1.1
@@ -449,12 +567,15 @@
449
567
  - [#1119](https://github.com/opencomponents/oc/pull/1119) Update cross-spawn in package.json from 7.0.0 to 7.0.1
450
568
 
451
569
  ### v0.48.6
570
+
452
571
  - [#1123](https://github.com/opencomponents/oc/pull/1123) update travis.yml for node version 12
453
572
 
454
573
  ### v0.48.5
574
+
455
575
  - [#1124](https://github.com/opencomponents/oc/pull/1124) Rollback handlebars
456
576
 
457
577
  ### v0.48.4
578
+
458
579
  - [#1114](https://github.com/opencomponents/oc/pull/1114) Update oc-template-es6-compiler in package.json from 1.1.7 to 1.1.8
459
580
  - [#1117](https://github.com/opencomponents/oc/pull/1117) Update oc-template-jade-compiler in package.json from 7.0.0 to 7.0.1
460
581
  - [#1118](https://github.com/opencomponents/oc/pull/1118) Update various dependencies
@@ -469,9 +590,11 @@
469
590
  - [#1103](https://github.com/opencomponents/oc/pull/1103) Update livereload in package.json from 0.8.0 to 0.8.1
470
591
 
471
592
  ### v0.48.3
593
+
472
594
  - [#1102](https://github.com/opencomponents/oc/pull/1102) add off method (like EventListener.off)
473
595
 
474
596
  ### v0.48.2
597
+
475
598
  - [#1101](https://github.com/opencomponents/oc/pull/1101) Update cross-spawn in package.json from ^6.0.3 to 7.0.0
476
599
  - [#1100](https://github.com/opencomponents/oc/pull/1100) Update sinon in package.json from 7.4.1 to 7.4.2
477
600
  - [#1099](https://github.com/opencomponents/oc/pull/1099) Update husky in package.json from 3.0.4 to 3.0.5
@@ -504,6 +627,7 @@
504
627
  - [#1060](https://github.com/opencomponents/oc/pull/1060) Update oc-client in package.json from 3.2.6 to 3.2.7
505
628
 
506
629
  ### v0.48.1
630
+
507
631
  - [#1056](https://github.com/opencomponents/oc/pull/1056) Added the support for changing the post request payload size
508
632
  - [#1055](https://github.com/opencomponents/oc/pull/1055) Update husky in package.json from 2.4.0 to 2.4.1
509
633
  - [#1057](https://github.com/opencomponents/oc/pull/1057) Update lint-staged in package.json from 8.2.0 to 8.2.1
@@ -511,11 +635,13 @@
511
635
  - [#1052](https://github.com/opencomponents/oc/pull/1052) Update husky in package.json from 2.3.0 to 2.4.0
512
636
 
513
637
  ### v0.48.0
638
+
514
639
  - [#1051](https://github.com/opencomponents/oc/pull/1051) Update oc-template-jade-compiler in package.json from 6.2.7 to 7.0.0
515
640
  - [#1050](https://github.com/opencomponents/oc/pull/1050) Update oc-template-jade in package.json from 6.0.13 to 7.0.0
516
641
  - [#1049](https://github.com/opencomponents/oc/pull/1049) Update oc-template-es6-compiler in package.json from 1.1.6 to 1.1.7
517
642
 
518
643
  ### v0.47.1
644
+
519
645
  - [#1048](https://github.com/opencomponents/oc/pull/1048) Update semver in package.json from 6.1.0 to 6.1.1
520
646
  - [#1047](https://github.com/opencomponents/oc/pull/1047) Update oc-template-jade-compiler in package.json from 6.2.6 to 6.2.7
521
647
  - [#1045](https://github.com/opencomponents/oc/pull/1045) Update oc-client in package.json from 3.2.5 to 3.2.6
@@ -533,6 +659,7 @@
533
659
  - [#1029](https://github.com/opencomponents/oc/pull/1029) Update husky in package.json from 2.1.0 to 2.2.0
534
660
 
535
661
  ### v0.47.0
662
+
536
663
  - [#1024](https://github.com/opencomponents/oc/pull/1024) set headers for getComponents
537
664
  - [#1028](https://github.com/opencomponents/oc/pull/1028) Update body-parser in package.json from 1.18.3 to 1.19.0
538
665
  - [#1027](https://github.com/opencomponents/oc/pull/1027) Update husky in package.json from 1.3.1 to 2.1.0
@@ -546,6 +673,7 @@
546
673
  - [#1015](https://github.com/opencomponents/oc/pull/1015) Update sinon in package.json from 7.3.0 to 7.3.1
547
674
 
548
675
  ### v0.46.0
676
+
549
677
  - [#1013](https://github.com/opencomponents/oc/pull/1013) Update oc-client in package.json from 3.2.4 to 3.2.5
550
678
  - [#1012](https://github.com/opencomponents/oc/pull/1012) Remove support for node 6
551
679
  - [#1010](https://github.com/opencomponents/oc/pull/1010) Update serialize-error in package.json from 3.0.0 to 4.0.0
@@ -560,9 +688,11 @@
560
688
  - [#1002](https://github.com/opencomponents/oc/pull/1002) Update mocha in package.json from 6.0.0 to 6.0.1
561
689
 
562
690
  ### v0.45.4
691
+
563
692
  - [#1001](https://github.com/opencomponents/oc/pull/1001) [Snyk] Fix for 1 vulnerable dependencies
564
693
 
565
694
  ### v0.45.3
695
+
566
696
  - [#1000](https://github.com/opencomponents/oc/pull/1000) [Snyk] Fix for 1 vulnerable dependencies
567
697
  - [#997](https://github.com/opencomponents/oc/pull/997) Update yargs in package.json from 13.2.0 to 13.2.1
568
698
  - [#999](https://github.com/opencomponents/oc/pull/999) Update sinon in package.json from 7.2.3 to 7.2.4
@@ -578,6 +708,7 @@
578
708
  - [#986](https://github.com/opencomponents/oc/pull/986) Update husky in package.json from 1.3.0 to 1.3.1
579
709
 
580
710
  ### v0.45.2
711
+
581
712
  - [#983](https://github.com/opencomponents/oc/pull/983) Update oc-template-handlebars-compiler in package.json from 6.2.4 to 6.2.6
582
713
  - [#985](https://github.com/opencomponents/oc/pull/985) Update oc-template-jade-compiler in package.json from 6.2.4 to 6.2.6
583
714
  - [#984](https://github.com/opencomponents/oc/pull/984) Update oc-template-es6-compiler in package.json from 1.1.3 to 1.1.5
@@ -589,6 +720,7 @@
589
720
  - [#973](https://github.com/opencomponents/oc/pull/973) Update colors in package.json from 1.3.2 to 1.3.3
590
721
 
591
722
  ### v0.45.1
723
+
592
724
  - [#971](https://github.com/opencomponents/oc/pull/971) oc package now is able to reuse modules in component path
593
725
  - [#951](https://github.com/opencomponents/oc/pull/951) Update form-data in package.json from 2.3.2 to 2.3.3
594
726
  - [#970](https://github.com/opencomponents/oc/pull/970) Update lint-staged in package.json from 8.0.5 to 8.1.0
@@ -608,6 +740,7 @@
608
740
  - [#947](https://github.com/opencomponents/oc/pull/947) Update express in package.json from 4.16.3 to 4.16.4
609
741
 
610
742
  ### v0.45.0
743
+
611
744
  - [#941](https://github.com/opencomponents/oc/pull/941) [Suggestion] Handling relative path when initiating component
612
745
  - [#944](https://github.com/opencomponents/oc/pull/944) Update sinon in package.json from 6.3.4 to 6.3.5
613
746
  - [#945](https://github.com/opencomponents/oc/pull/945) Update husky in package.json from 1.0.1 to 1.1.1
@@ -616,6 +749,7 @@
616
749
  - [#939](https://github.com/opencomponents/oc/pull/939) Update chai in package.json from 4.1.2 to 4.2.0
617
750
 
618
751
  ### v0.44.13
752
+
619
753
  - [#933](https://github.com/opencomponents/oc/pull/933) Update morgan in package.json from 1.9.0 to 1.9.1
620
754
  - [#926](https://github.com/opencomponents/oc/pull/926) Update dependency-graph in package.json from 0.7.1 to 0.7.2
621
755
  - [#937](https://github.com/opencomponents/oc/pull/937) Update opn in package.json from 5.3.0 to 5.4.0
@@ -631,6 +765,7 @@
631
765
  - [#916](https://github.com/opencomponents/oc/pull/916) Update oc-s3-storage-adapter in package.json from 1.1.2 to 1.1.3
632
766
 
633
767
  ### v0.44.12
768
+
634
769
  - [#915](https://github.com/opencomponents/oc/pull/915) Update oc-storage-adapters-utils in package.json from 1.0.2 to 1.0.3
635
770
  - [#914](https://github.com/opencomponents/oc/pull/914) Update sinon in package.json from 6.1.0 to 6.1.3
636
771
  - [#910](https://github.com/opencomponents/oc/pull/910) Update yargs in package.json from ^11.0.0 to 12.0.1
@@ -640,9 +775,11 @@
640
775
  - [#905](https://github.com/opencomponents/oc/pull/905) Update sinon in package.json from ^5.0.10 to 6.0.0
641
776
 
642
777
  ### v0.44.11
778
+
643
779
  - [#904](https://github.com/opencomponents/oc/pull/904) Upgrade deps
644
780
 
645
781
  ### v0.44.10
782
+
646
783
  - [#902](https://github.com/opencomponents/oc/pull/902) Update oc-client in package.json from 3.2.0 to 3.2.1
647
784
  - [#895](https://github.com/opencomponents/oc/pull/895) Update chai in package.json from 3.5.0 to 4.1.2
648
785
  - [#903](https://github.com/opencomponents/oc/pull/903) Update oc-client-browser in package.json from 1.3.2 to 1.3.3
@@ -651,9 +788,11 @@
651
788
  - [#900](https://github.com/opencomponents/oc/pull/900) Update oc-client in package.json from 3.1.0 to 3.2.0
652
789
 
653
790
  ### v0.44.9
791
+
654
792
  - [#897](https://github.com/opencomponents/oc/pull/897) [DX-515] Async waterfall was calling the wrong callback
655
793
 
656
794
  ### v0.44.8
795
+
657
796
  - [#896](https://github.com/opencomponents/oc/pull/896) Update compilers
658
797
  - [#891](https://github.com/opencomponents/oc/pull/891) Update oc-client-browser in package.json from 1.3.1 to 1.3.2
659
798
  - [#890](https://github.com/opencomponents/oc/pull/890) Update fs-extra in package.json from 6.0.0 to 6.0.1
@@ -661,12 +800,15 @@
661
800
  - [#888](https://github.com/opencomponents/oc/pull/888) Switch from Greenkeeper to dependencies.io
662
801
 
663
802
  ### v0.44.7
803
+
664
804
  - [#885](https://github.com/opencomponents/oc/pull/885) Add .idea/ in files patterns to ignore
665
805
 
666
806
  ### v0.44.6
807
+
667
808
  - [#886](https://github.com/opencomponents/oc/pull/886) Lock broken version of es6-compiler
668
809
 
669
810
  ### v0.44.5
811
+
670
812
  - [#881](https://github.com/opencomponents/oc/pull/881) chore(package): update sinon to version 5.0.10
671
813
  - [#884](https://github.com/opencomponents/oc/pull/884) ensuring trailing slash to the registry url before removing
672
814
  - [#882](https://github.com/opencomponents/oc/pull/882) Update builtin-modules to the latest version 🚀
@@ -675,32 +817,39 @@
675
817
  - [#877](https://github.com/opencomponents/oc/pull/877) UI bugfix
676
818
 
677
819
  ### v0.44.4
820
+
678
821
  - [#875](https://github.com/opencomponents/oc/pull/875) [DX-502] Add templates info into OC UI
679
822
  - [#874](https://github.com/opencomponents/oc/pull/874) Update body-parser to the latest version 🚀
680
823
 
681
824
  ### v0.44.3
825
+
682
826
  - [#872](https://github.com/opencomponents/oc/pull/872) [DX-497] OC Clean
683
827
  - [#871](https://github.com/opencomponents/oc/pull/871) [DX-467] Legacy cleanup Part I
684
828
  - [#869](https://github.com/opencomponents/oc/pull/869) [DX-496] Fix port allocation for liveReload
685
829
  - [#870](https://github.com/opencomponents/oc/pull/870) Update fs-extra to the latest version 🚀
686
830
 
687
831
  ### v0.44.2
832
+
688
833
  - [#868](https://github.com/opencomponents/oc/pull/868) Live reload to work in dev only when hotReloading flag is on
689
834
  - [#867](https://github.com/opencomponents/oc/pull/867) Fix git script
690
835
 
691
836
  ### v0.44.1
837
+
692
838
  - [#864](https://github.com/opencomponents/oc/pull/864) [DX-467] Remove Pug dependency from the UI
693
839
  - [#865](https://github.com/opencomponents/oc/pull/865) Integrate CI to modern node versions
694
840
  - [#866](https://github.com/opencomponents/oc/pull/866) Update colors to the latest version 🚀
695
841
 
696
842
  ### v0.44.0
843
+
697
844
  - [#862](https://github.com/opencomponents/oc/pull/862) [DX-467] Add ES6 template as default core template
698
845
  - [#863](https://github.com/opencomponents/oc/pull/863) Update oc-client to the latest version 🚀
699
846
 
700
847
  ### v0.43.2
848
+
701
849
  - [#861](https://github.com/opencomponents/oc/pull/861) Housekeeping
702
850
 
703
851
  ### v0.43.0
852
+
704
853
  - [#852](https://github.com/opencomponents/oc/pull/852) [DX-412] Empty response setter on context
705
854
  - [#860](https://github.com/opencomponents/oc/pull/860) Housekeeping
706
855
  - [#859](https://github.com/opencomponents/oc/pull/859) Update oc-client to the latest version 🚀
@@ -729,22 +878,27 @@
729
878
  - [#830](https://github.com/opencomponents/oc/pull/830) Update form-data to the latest version 🚀
730
879
 
731
880
  ### v0.42.26
881
+
732
882
  - [#829](https://github.com/opencomponents/oc/pull/829) Added author to components list view and author filter
733
883
 
734
884
  ### v0.42.25
885
+
735
886
  - [#828](https://github.com/opencomponents/oc/pull/828) Update oc-client to the latest version 🚀
736
887
  - [#827](https://github.com/opencomponents/oc/pull/827) Update oc-client-browser to the latest version 🚀
737
888
  - [#826](https://github.com/opencomponents/oc/pull/826) Update oc-client to the latest version 🚀
738
889
 
739
890
  ### v0.42.24
891
+
740
892
  - [#825](https://github.com/opencomponents/oc/pull/825) [DX-385] Add sourcemaps to server.js during dev, add path to node's vm
741
893
 
742
894
  ### v0.42.21
895
+
743
896
  - [#823](https://github.com/opencomponents/oc/pull/823) [DX-390] Fix protocol sanitization
744
897
  - [#822](https://github.com/opencomponents/oc/pull/822) logo-type
745
898
  - [#821](https://github.com/opencomponents/oc/pull/821) Node builds matrix
746
899
 
747
900
  ### v0.42.20
901
+
748
902
  - [#820](https://github.com/opencomponents/oc/pull/820) [DX-353] Serialize exception
749
903
  - [#818](https://github.com/opencomponents/oc/pull/818) Update oc-s3-storage-adapter to the latest version 🚀
750
904
  - [#816](https://github.com/opencomponents/oc/pull/816) updated logo asset
@@ -752,13 +906,16 @@
752
906
  - [#814](https://github.com/opencomponents/oc/pull/814) Update dependencies to enable Greenkeeper 🌴
753
907
 
754
908
  ### v0.42.19
755
- - [#813](https://github.com/opencomponents/oc/pull/813) [DX-366] Allow usage of protocol in storage.options.path
909
+
910
+ - [#813](https://github.com/opencomponents/oc/pull/813) [DX-366] Allow usage of protocol in storage.options.path
756
911
  - [#812](https://github.com/opencomponents/oc/pull/812) Update oc-s3-storage-adapter to the latest version 🚀
757
912
 
758
913
  ### v0.42.18
914
+
759
915
  - [#811](https://github.com/opencomponents/oc/pull/811) [DX-363] Registry conf.env sanitizer
760
916
 
761
917
  ### v0.42.17
918
+
762
919
  - [#810](https://github.com/opencomponents/oc/pull/810) [DX-270] Async update
763
920
  - [#809](https://github.com/opencomponents/oc/pull/809) fix(package): update cross-spawn to version 6.0.3
764
921
  - [#806](https://github.com/opencomponents/oc/pull/806) Update minimal-request to the latest version 🚀
@@ -768,16 +925,20 @@
768
925
  - [#801](https://github.com/opencomponents/oc/pull/801) Update opn to the latest version 🚀
769
926
 
770
927
  ### v0.42.16
928
+
771
929
  - [#792](https://github.com/opencomponents/oc/pull/792) Add test for issue #789 showing error message [Object object]
772
930
 
773
931
  ### v0.42.15
932
+
774
933
  - [#798](https://github.com/opencomponents/oc/pull/798) Update oc-client to the latest version 🚀
775
934
  - [#797](https://github.com/opencomponents/oc/pull/797) Update oc-client-browser to the latest version 🚀
776
935
 
777
936
  ### v0.42.14
778
- - [#795](https://github.com/opencomponents/oc/pull/795) [DX-324] full async plugins initialisation
937
+
938
+ - [#795](https://github.com/opencomponents/oc/pull/795) [DX-324] full async plugins initialisation
779
939
 
780
940
  ### v0.42.13
941
+
781
942
  - [#794](https://github.com/opencomponents/oc/pull/794) [DX-296] Mocks can have the same signature as real plugins
782
943
  - [#793](https://github.com/opencomponents/oc/pull/793) Update oc-s3-storage-adapter to the latest version 🚀
783
944
  - [#790](https://github.com/opencomponents/oc/pull/790) Update oc-template-jade-compiler to the latest version 🚀
@@ -785,6 +946,7 @@
785
946
  - [#788](https://github.com/opencomponents/oc/pull/788) Update fs-extra to the latest version 🚀
786
947
 
787
948
  ### v0.42.12
949
+
788
950
  - [#786](https://github.com/opencomponents/oc/pull/786) Update oc-template-handlebars-compiler to the latest version 🚀
789
951
  - [#787](https://github.com/opencomponents/oc/pull/787) Update oc-template-jade-compiler to the latest version 🚀
790
952
  - [#785](https://github.com/opencomponents/oc/pull/785) Update oc-client to the latest version 🚀
@@ -794,34 +956,42 @@
794
956
  - [#781](https://github.com/opencomponents/oc/pull/781) Update fs-extra to the latest version 🚀
795
957
 
796
958
  ### v0.42.10
959
+
797
960
  - [#775](https://github.com/opencomponents/oc/pull/775) Add github issue/PR templates
798
961
  - [#780](https://github.com/opencomponents/oc/pull/780) Update oc-client to the latest version 🚀
799
962
  - [#779](https://github.com/opencomponents/oc/pull/779) Update oc-client-browser to the latest version 🚀
800
963
  - [#776](https://github.com/opencomponents/oc/pull/776) Update lint-staged to the latest version 🚀
801
964
 
802
965
  ### v0.42.7
966
+
803
967
  - [#778](https://github.com/opencomponents/oc/pull/778) Update oc-client to the latest version 🚀
804
968
  - [#777](https://github.com/opencomponents/oc/pull/777) Update oc-client-browser to the latest version 🚀
805
969
 
806
970
  ### v0.42.6
971
+
807
972
  - [#774](https://github.com/opencomponents/oc/pull/774) logger.fail bugfix
808
973
 
809
974
  ### v0.42.5
975
+
810
976
  - [#773](https://github.com/opencomponents/oc/pull/773) [DX-283] Dependencies handler on packaging
811
977
 
812
978
  ### v0.42.4
979
+
813
980
  - [#772](https://github.com/opencomponents/oc/pull/772) Update oc-client to the latest version 🚀
814
981
  - [#771](https://github.com/opencomponents/oc/pull/771) [DX-277] Pass the templates down to the client via the registry
815
982
  - [#770](https://github.com/opencomponents/oc/pull/770) Update oc-client-browser to the latest version 🚀
816
983
 
817
984
  ### v0.42.3
985
+
818
986
  - [#768](https://github.com/opencomponents/oc/pull/768) [DX-247] dev/publish cli mode - prevent some deps to run in an infinite loop
819
987
 
820
988
  ### v0.42.2
989
+
821
990
  - [#757](https://github.com/opencomponents/oc/pull/757) [DX-260] s3 storage adapter
822
991
  - [#767](https://github.com/opencomponents/oc/pull/767) Update oc-client to the latest version 🚀
823
992
 
824
993
  ### v0.42.1
994
+
825
995
  - [#765](https://github.com/opencomponents/oc/pull/765) Update oc-template-handlebars-compiler to the latest version 🚀
826
996
  - [#766](https://github.com/opencomponents/oc/pull/766) Update oc-template-jade-compiler to the latest version 🚀
827
997
  - [#763](https://github.com/opencomponents/oc/pull/763) passing prefix option to dev cmd
@@ -842,6 +1012,7 @@
842
1012
  - [#746](https://github.com/opencomponents/oc/pull/746) Update oc-template-handlebars to the latest version 🚀
843
1013
 
844
1014
  ### v0.42.0
1015
+
845
1016
  - [#745](https://github.com/opencomponents/oc/pull/745) Update oc-client to the latest version 🚀
846
1017
  - [#744](https://github.com/opencomponents/oc/pull/744) Update oc-template-handlebars to the latest version 🚀
847
1018
  - [#743](https://github.com/opencomponents/oc/pull/743) Update aws-sdk to the latest version 🚀
@@ -853,19 +1024,23 @@
853
1024
  - [#734](https://github.com/opencomponents/oc/pull/734) Update aws-sdk to the latest version 🚀
854
1025
 
855
1026
  ### v0.41.16
1027
+
856
1028
  - [#733](https://github.com/opencomponents/oc/pull/733) Repackage all components when file is outside component dir
857
- - [#732](https://github.com/opencomponents/oc/pull/732) Prettify all the things
1029
+ - [#732](https://github.com/opencomponents/oc/pull/732) Prettify all the things
858
1030
  - [#731](https://github.com/opencomponents/oc/pull/731) this-less cleanup
859
1031
  - [#729](https://github.com/opencomponents/oc/pull/729) Update aws-sdk to the latest version 🚀
860
1032
 
861
1033
  ### v0.41.15
862
- - [#710](https://github.com/opencomponents/oc/pull/710) [DX-185] install compiler inside each components' dir
1034
+
1035
+ - [#710](https://github.com/opencomponents/oc/pull/710) [DX-185] install compiler inside each components' dir
863
1036
 
864
1037
  ### v0.41.14
1038
+
865
1039
  - [#728](https://github.com/opencomponents/oc/pull/728) [DX-226] ]Minimal css for the preview view
866
1040
  - [#727](https://github.com/opencomponents/oc/pull/727) Update aws-sdk to the latest version 🚀
867
1041
 
868
1042
  ### v0.41.13
1043
+
869
1044
  - [#725](https://github.com/opencomponents/oc/pull/725) [DX-221] Removing two clones
870
1045
  - [#724](https://github.com/opencomponents/oc/pull/724) Update aws-sdk to the latest version 🚀
871
1046
  - [#723](https://github.com/opencomponents/oc/pull/723) Update aws-sdk to the latest version 🚀
@@ -884,6 +1059,7 @@
884
1059
  - [#709](https://github.com/opencomponents/oc/pull/709) Update aws-sdk to the latest version 🚀
885
1060
 
886
1061
  ### v0.41.12
1062
+
887
1063
  - [#708](https://github.com/opencomponents/oc/pull/708) Update oc-client to the latest version 🚀
888
1064
  - [#707](https://github.com/opencomponents/oc/pull/707) Update oc-client-browser to the latest version 🚀
889
1065
  - [#706](https://github.com/opencomponents/oc/pull/706) Update oc-client-browser to the latest version 🚀
@@ -892,21 +1068,25 @@
892
1068
  - [#659](https://github.com/opencomponents/oc/pull/659) Issue #464: Replaces Grunt with NPM scripts
893
1069
 
894
1070
  ### v0.41.11
1071
+
895
1072
  - [#703](https://github.com/opencomponents/oc/pull/703) Infinite npm i loop fix
896
1073
  - [#702](https://github.com/opencomponents/oc/pull/702) Update dependency-graph to the latest version 🚀
897
1074
  - [#701](https://github.com/opencomponents/oc/pull/701) Update aws-sdk to the latest version 🚀
898
1075
 
899
1076
  ### v0.41.10
1077
+
900
1078
  - [#700](https://github.com/opencomponents/oc/pull/700) Error publish
901
1079
  - [#699](https://github.com/opencomponents/oc/pull/699) Meaningful error shown when publish fails due to a generic API error
902
1080
  - [#695](https://github.com/opencomponents/oc/pull/695) Update aws-sdk to the latest version 🚀
903
1081
  - [#688](https://github.com/opencomponents/oc/pull/688) Decouple s3
904
1082
 
905
1083
  ### v0.41.9
1084
+
906
1085
  - [#693](https://github.com/opencomponents/oc/pull/693) [DX-198] Watch .github.io folders
907
1086
  - [#694](https://github.com/opencomponents/oc/pull/694) Npm install for new module bugfix
908
1087
 
909
1088
  ### v0.41.8
1089
+
910
1090
  - [#692](https://github.com/opencomponents/oc/pull/692) [DX-197] Watcher bugfix
911
1091
  - [#690](https://github.com/opencomponents/oc/pull/690) Update aws-sdk to the latest version 🚀
912
1092
  - [#689](https://github.com/opencomponents/oc/pull/689) ignoring lock files
@@ -917,6 +1097,7 @@
917
1097
  - [#684](https://github.com/opencomponents/oc/pull/684) Update mocha to the latest version 🚀
918
1098
 
919
1099
  ### v0.41.7
1100
+
920
1101
  - [#679](https://github.com/opencomponents/oc/pull/679) [Snyk Update] New fixes for 2 vulnerable dependency paths
921
1102
  - [#678](https://github.com/opencomponents/oc/pull/678) Update aws-sdk to the latest version 🚀
922
1103
  - [#677](https://github.com/opencomponents/oc/pull/677) Update aws-sdk to the latest version 🚀
@@ -926,6 +1107,7 @@
926
1107
  - [#676](https://github.com/opencomponents/oc/pull/676) Update oc-template-jade to the latest version 🚀
927
1108
 
928
1109
  ### v0.41.6
1110
+
929
1111
  - [#672](https://github.com/opencomponents/oc/pull/672) Update oc-client to the latest version 🚀
930
1112
  - [#670](https://github.com/opencomponents/oc/pull/670) Update morgan to the latest version 🚀
931
1113
  - [#671](https://github.com/opencomponents/oc/pull/671) Update oc-template-jade to the latest version 🚀
@@ -938,6 +1120,7 @@
938
1120
  - [#661](https://github.com/opencomponents/oc/pull/661) Update aws-sdk to the latest version 🚀
939
1121
 
940
1122
  ### v0.41.5
1123
+
941
1124
  - [#658](https://github.com/opencomponents/oc/pull/658) Update aws-sdk to the latest version 🚀
942
1125
  - [#655](https://github.com/opencomponents/oc/pull/655) fix(package): update oc-template-jade-compiler to version 6.1.1
943
1126
  - [#656](https://github.com/opencomponents/oc/pull/656) fix(package): update oc-template-handlebars-compiler to version 6.1.1
@@ -953,6 +1136,7 @@
953
1136
  - [#643](https://github.com/opencomponents/oc/pull/643) Update oc-client to the latest version 🚀
954
1137
 
955
1138
  ### v0.41.4
1139
+
956
1140
  - [#632](https://github.com/opencomponents/oc/pull/632) Improve watching for Dev registry
957
1141
  - [#641](https://github.com/opencomponents/oc/pull/641) Update aws-sdk to the latest version 🚀
958
1142
  - [#635](https://github.com/opencomponents/oc/pull/635) liveReload
@@ -961,6 +1145,7 @@
961
1145
  - [#638](https://github.com/opencomponents/oc/pull/638) Update aws-sdk to the latest version 🚀
962
1146
 
963
1147
  ### v0.41.3
1148
+
964
1149
  - [#640](https://github.com/opencomponents/oc/pull/640) Update oc-client to the latest version 🚀
965
1150
  - [#636](https://github.com/opencomponents/oc/pull/636) Update aws-sdk to the latest version 🚀
966
1151
  - [#634](https://github.com/opencomponents/oc/pull/634) Update body-parser to the latest version 🚀
@@ -971,29 +1156,36 @@
971
1156
  - [#628](https://github.com/opencomponents/oc/pull/628) Update aws-sdk to the latest version 🚀
972
1157
 
973
1158
  ### v0.41.2
1159
+
974
1160
  - [#626](https://github.com/opencomponents/oc/pull/626) Update oc-client
975
1161
  - [#625](https://github.com/opencomponents/oc/pull/625) Update oc-client-browser
976
1162
  - [#624](https://github.com/opencomponents/oc/pull/624) inititalzie the dev registry with the dynamic require templatee
977
1163
 
978
1164
  ### v0.41.1
1165
+
979
1166
  - [#619](https://github.com/opencomponents/oc/pull/619) Issue #618 : Accessing s3 bucket over a proxy from oc-registry
980
1167
  - [#621](https://github.com/opencomponents/oc/pull/621) Update aws-sdk to the latest version 🚀
981
1168
  - [#620](https://github.com/opencomponents/oc/pull/620) Update dependencies to enable Greenkeeper 🌴
982
1169
 
983
1170
  ### v0.41.0
1171
+
984
1172
  - [#617](https://github.com/opencomponents/oc/pull/617) [OC-140] Declarative templates initialisation on a registry level
985
1173
  - [#613](https://github.com/opencomponents/oc/pull/613) Pass option to the compiler for targeting specific build process
986
1174
 
987
1175
  ### v0.40.10
1176
+
988
1177
  - [#616](https://github.com/opencomponents/oc/pull/616) [OC-93] Update oc-client
989
1178
 
990
1179
  ### v0.40.9
1180
+
991
1181
  - [#615](https://github.com/opencomponents/oc/pull/615) [OC-93] Update oc-client
992
1182
 
993
1183
  ### v0.40.8
1184
+
994
1185
  - [#612](https://github.com/opencomponents/oc/pull/612) [OC-127] Fix templates breaking change
995
1186
 
996
1187
  ### v0.40.7
1188
+
997
1189
  - [#605](https://github.com/opencomponents/oc/pull/605) [OC-102] Return rendered version if client doesn't support
998
1190
  - [#610](https://github.com/opencomponents/oc/pull/610) Update oc-client to the latest version 🚀
999
1191
  - [#608](https://github.com/opencomponents/oc/pull/608) Update oc-template-handlebars-compiler to the latest version 🚀
@@ -1003,27 +1195,33 @@
1003
1195
  - [#606](https://github.com/opencomponents/oc/pull/606) Update aws-sdk to the latest version 🚀
1004
1196
 
1005
1197
  ### v0.40.6
1198
+
1006
1199
  - [#595](https://github.com/opencomponents/oc/pull/595) Add ability to disable watching on local dev registry
1007
1200
  - [#603](https://github.com/opencomponents/oc/pull/603) Update aws-sdk to the latest version 🚀
1008
1201
  - [#597](https://github.com/opencomponents/oc/pull/597) [OC-120] Registry webUI: preview route/view bug
1009
1202
 
1010
1203
  ### v0.40.5
1204
+
1011
1205
  - [#601](https://github.com/opencomponents/oc/pull/601) Update aws-sdk to the latest version 🚀
1012
1206
 
1013
1207
  ### v0.40.4
1208
+
1014
1209
  - [#602](https://github.com/opencomponents/oc/pull/602) Update oc-client to the latest version 🚀
1015
1210
 
1016
1211
  ### v0.40.3
1212
+
1017
1213
  - [#600](https://github.com/opencomponents/oc/pull/600) Update oc-client-browser to the latest version 🚀
1018
1214
  - [#599](https://github.com/opencomponents/oc/pull/599) Update aws-sdk to the latest version 🚀
1019
1215
  - [#594](https://github.com/opencomponents/oc/pull/594) Update sinon to the latest version 🚀
1020
1216
 
1021
1217
  ### v0.40.2
1218
+
1022
1219
  - [#592](https://github.com/opencomponents/oc/pull/592) [OC-103]
1023
1220
  - [#590](https://github.com/opencomponents/oc/pull/590) Update aws-sdk to the latest version 🚀
1024
1221
  - [#589](https://github.com/opencomponents/oc/pull/589) Add viewport meta tag to component preview
1025
1222
 
1026
1223
  ### v0.40.1
1224
+
1027
1225
  - [#588](https://github.com/opencomponents/oc/pull/588) [OC-87] publish with the new template system
1028
1226
  - [#587](https://github.com/opencomponents/oc/pull/587) Update pug to the latest version 🚀
1029
1227
  - [#586](https://github.com/opencomponents/oc/pull/586) Update aws-sdk to the latest version 🚀
@@ -1031,10 +1229,12 @@
1031
1229
  - [#584](https://github.com/opencomponents/oc/pull/584) Update accept-language-parser to the latest version 🚀
1032
1230
 
1033
1231
  ### v0.40.0
1232
+
1034
1233
  - [#583](https://github.com/opencomponents/oc/pull/583) Saner registry default for config.discovery
1035
1234
  - [#581](https://github.com/opencomponents/oc/pull/581) [OC-79] Housekeeping
1036
1235
 
1037
1236
  ### v0.39.8
1237
+
1038
1238
  - [#580](https://github.com/opencomponents/oc/pull/580) [OC-86] Logging href, renderMode on the component-retrieved events
1039
1239
  - [#578](https://github.com/opencomponents/oc/pull/578) Update oc-template-handlebars-compiler to the latest version 🚀
1040
1240
  - [#579](https://github.com/opencomponents/oc/pull/579) Update oc-template-jade-compiler to the latest version 🚀
@@ -1042,10 +1242,12 @@
1042
1242
  - [#576](https://github.com/opencomponents/oc/pull/576) Update aws-sdk to the latest version 🚀
1043
1243
 
1044
1244
  ### v0.39.7
1245
+
1045
1246
  - [#480](https://github.com/opencomponents/oc/pull/480) [OC-28] Cli init allows for --templateType to be npm module
1046
1247
  - [#575](https://github.com/opencomponents/oc/pull/575) Update CONTRIBUTING.md
1047
1248
 
1048
1249
  ### v0.39.6
1250
+
1049
1251
  - [#566](https://github.com/opencomponents/oc/pull/566) [OC-9] Components history seems to have wrong dates
1050
1252
  - [#574](https://github.com/opencomponents/oc/pull/574) fix(package): update semver to version 5.4.1
1051
1253
  - [#570](https://github.com/opencomponents/oc/pull/570) Update oc-template-handlebars to the latest version 🚀
@@ -1054,9 +1256,11 @@
1054
1256
  - [#573](https://github.com/opencomponents/oc/pull/573) Update aws-sdk to the latest version 🚀
1055
1257
 
1056
1258
  ### v0.39.5
1259
+
1057
1260
  - [#569](https://github.com/opencomponents/oc/pull/569) Validation fix
1058
1261
 
1059
1262
  ### v0.39.4
1263
+
1060
1264
  - [#568](https://github.com/opencomponents/oc/pull/568) Update aws-sdk to the latest version 🚀
1061
1265
  - [#565](https://github.com/opencomponents/oc/pull/565) Housekeeping
1062
1266
  - [#564](https://github.com/opencomponents/oc/pull/564) Removed uglify-js
@@ -1066,11 +1270,13 @@
1066
1270
  - [#558](https://github.com/opencomponents/oc/pull/558) Update aws-sdk to the latest version 🚀
1067
1271
 
1068
1272
  ### v0.39.3
1273
+
1069
1274
  - [#557](https://github.com/opencomponents/oc/pull/557) [OC-75] Add status to the component-retrieved event log
1070
1275
  - [#555](https://github.com/opencomponents/oc/pull/555) Update aws-sdk to the latest version 🚀
1071
1276
  - [#554](https://github.com/opencomponents/oc/pull/554) Update aws-sdk to the latest version 🚀
1072
1277
 
1073
1278
  ### v0.39.2
1279
+
1074
1280
  - [#552](https://github.com/opencomponents/oc/pull/552) remove .Only from tests
1075
1281
  - [#550](https://github.com/opencomponents/oc/pull/550) Update uglify-js to the latest version 🚀
1076
1282
  - [#551](https://github.com/opencomponents/oc/pull/551) Update lint-staged to the latest version 🚀
@@ -1081,109 +1287,139 @@
1081
1287
  - [#546](https://github.com/opencomponents/oc/pull/546) Fixing spacing when initializing component package
1082
1288
 
1083
1289
  ### v0.39.1
1290
+
1084
1291
  - [#545](https://github.com/opencomponents/oc/pull/545) Added a mime type for html files.
1085
1292
 
1086
1293
  ### v0.39.0
1294
+
1087
1295
  - [#542](https://github.com/opencomponents/oc/pull/542) Drop node4 tests
1088
1296
  - [#541](https://github.com/opencomponents/oc/pull/541) Housekeeping
1089
1297
  - [#538](https://github.com/opencomponents/oc/pull/538) [OC-69] Remove node client
1090
1298
 
1091
1299
  ### v0.38.8
1300
+
1092
1301
  - [#537](https://github.com/opencomponents/oc/pull/537) No postinstall build
1093
1302
 
1094
1303
  ### v0.38.7
1304
+
1095
1305
  - [#535](https://github.com/opencomponents/oc/pull/535) Fix grunt build to override package version
1096
1306
  - [#534](https://github.com/opencomponents/oc/pull/534) [OC-60] Oc client browser
1097
1307
 
1098
1308
  ### v0.38.6
1309
+
1099
1310
  - [#533](https://github.com/opencomponents/oc/pull/533) [OC-62] Loaders cleanup
1100
1311
 
1101
1312
  ### v0.38.5
1313
+
1102
1314
  - [#532](https://github.com/opencomponents/oc/pull/532) fix-global-ljs
1103
1315
 
1104
1316
  ### v0.38.4
1317
+
1105
1318
  - [#531](https://github.com/opencomponents/oc/pull/531) Fix register plugin
1106
1319
 
1107
1320
  ### v0.38.3
1321
+
1108
1322
  - [#530](https://github.com/opencomponents/oc/pull/530) Remove plugin detective logic
1109
1323
 
1110
1324
  ### v0.38.2
1325
+
1111
1326
  - [#528](https://github.com/opencomponents/oc/pull/528) [OC-50] Log body fix
1112
1327
 
1113
1328
  ### v0.38.1
1329
+
1114
1330
  - [#527](https://github.com/opencomponents/oc/pull/527) Do not watch .DS_Store files
1115
1331
 
1116
1332
  ### v0.38.0
1333
+
1117
1334
  - [#522](https://github.com/opencomponents/oc/pull/522) Issue w/ head.load
1118
1335
 
1119
1336
  ### v0.37.11
1120
- - [#488](https://github.com/opencomponents/oc/pull/488) yarn-support
1121
-
1122
- closes #487
1337
+
1338
+ - [#488](https://github.com/opencomponents/oc/pull/488) yarn-support
1339
+
1340
+ closes #487
1123
1341
 
1124
1342
  ### v0.37.10
1343
+
1125
1344
  - [#516](https://github.com/opencomponents/oc/pull/516) Improve AWS upload mechanism and allow to override registry timeout settings
1126
1345
 
1127
1346
  ### v0.37.9
1347
+
1128
1348
  - [#515](https://github.com/opencomponents/oc/pull/515) Ignore the .git folder for the dev watcher
1129
1349
  - [#507](https://github.com/opencomponents/oc/pull/507) Pretty printed code
1130
1350
 
1131
1351
  ### v0.37.8
1352
+
1132
1353
  - [#513](https://github.com/opencomponents/oc/pull/513) issue w/ registry add command
1133
1354
  - [#510](https://github.com/opencomponents/oc/pull/510) Hide available dependencies on dev mode
1134
1355
  - [#500](https://github.com/opencomponents/oc/pull/500) Show available dependencies in the UI
1135
1356
 
1136
1357
  ### v0.37.7
1358
+
1137
1359
  - [#509](https://github.com/opencomponents/oc/pull/509) Cleancss fix
1138
1360
  - [#505](https://github.com/opencomponents/oc/pull/505) Node 8
1139
1361
  - [#502](https://github.com/opencomponents/oc/pull/502) Upgrade some dependencies
1140
1362
  - [#503](https://github.com/opencomponents/oc/pull/503) eof
1141
1363
 
1142
1364
  ### v0.37.6
1365
+
1143
1366
  - [#499](https://github.com/opencomponents/oc/pull/499) Snyk
1144
1367
  - [#498](https://github.com/opencomponents/oc/pull/498) Fix build script
1145
1368
  - [#497](https://github.com/opencomponents/oc/pull/497) Fix vulnerabilities and remove npm shrinkwrap
1146
1369
 
1147
1370
  ### v0.37.5
1371
+
1148
1372
  - [#495](https://github.com/opencomponents/oc/pull/495) issue w/ plugins detective
1149
1373
 
1150
1374
  ### v0.37.4
1375
+
1151
1376
  - [#486](https://github.com/opencomponents/oc/pull/486) Render trycatch
1152
1377
 
1153
1378
  ### v0.37.3
1379
+
1154
1380
  - [#482](https://github.com/opencomponents/oc/pull/482) Upgrade multer
1155
1381
 
1156
1382
  ### v0.37.2
1383
+
1157
1384
  - [#481](https://github.com/opencomponents/oc/pull/481) issue-with-amd
1158
1385
 
1159
1386
  ### v0.37.1
1387
+
1160
1388
  - [#479](https://github.com/opencomponents/oc/pull/479) Allow node core deps to be used and whitelisted
1161
1389
  - [#478](https://github.com/opencomponents/oc/pull/478) Upgrade chai
1162
1390
 
1163
1391
  ### v0.37.0
1392
+
1164
1393
  - [#467](https://github.com/opencomponents/oc/pull/467) [MLP-594] History
1165
1394
 
1166
1395
  ### v0.36.28
1396
+
1167
1397
  - [#477](https://github.com/opencomponents/oc/pull/477) get-components-by-dir-issue
1168
1398
  - [#475](https://github.com/opencomponents/oc/pull/475) Housekeeping
1169
1399
 
1170
1400
  ### v0.36.27
1401
+
1171
1402
  - [#472](https://github.com/opencomponents/oc/pull/472) issue-with-component-info-get-params v2
1172
1403
  - [#469](https://github.com/opencomponents/oc/pull/469) Housekeeping
1173
1404
 
1174
1405
  ### v0.36.26
1406
+
1175
1407
  - [#468](https://github.com/opencomponents/oc/pull/468) Underscore to lodash
1176
1408
 
1177
1409
  ### v0.36.25
1410
+
1178
1411
  - [#463](https://github.com/opencomponents/oc/pull/463) Components cache cleanup
1179
1412
 
1180
1413
  ### v0.36.24
1414
+
1181
1415
  - [#461](https://github.com/opencomponents/oc/pull/461) Registry start log fix
1182
1416
 
1183
1417
  ### v0.36.23
1418
+
1184
1419
  - [#460](https://github.com/opencomponents/oc/pull/460) Move to =>
1185
1420
 
1186
1421
  ### v0.36.22
1422
+
1187
1423
  - [#459](https://github.com/opencomponents/oc/pull/459) Fix manual build script
1188
1424
  - [#458](https://github.com/opencomponents/oc/pull/458) Cleanup
1189
1425
  - [#454](https://github.com/opencomponents/oc/pull/454) Logger cleanup
@@ -1194,18 +1430,23 @@ closes #487
1194
1430
  - [#453](https://github.com/opencomponents/oc/pull/453) Fix indentation
1195
1431
 
1196
1432
  ### v0.36.21
1433
+
1197
1434
  - [#450](https://github.com/opencomponents/oc/pull/450) Replace jshint by eslint
1198
1435
 
1199
1436
  ### v0.36.20
1437
+
1200
1438
  - [#449](https://github.com/opencomponents/oc/pull/449) No unused variables
1201
1439
 
1202
1440
  ### v0.36.19
1441
+
1203
1442
  - [#447](https://github.com/opencomponents/oc/pull/447) Components by dir cleanup
1204
1443
 
1205
1444
  ### v0.36.18
1445
+
1206
1446
  - [#446](https://github.com/opencomponents/oc/pull/446) Consider null a valid string
1207
1447
 
1208
1448
  ### v0.36.17
1449
+
1209
1450
  - [#443](https://github.com/opencomponents/oc/pull/443) Use baseUrl as default with host as fallback
1210
1451
  - [#444](https://github.com/opencomponents/oc/pull/444) Require templates is broken
1211
1452
  - [#430](https://github.com/opencomponents/oc/pull/430) [GPT-567] Registering supported templates on componentPreview view
@@ -1213,73 +1454,94 @@ closes #487
1213
1454
  - [#426](https://github.com/opencomponents/oc/pull/426) [GPT-565] Dynamic support to oc-templates in oc dev
1214
1455
 
1215
1456
  ### v0.36.16
1457
+
1216
1458
  - [#432](https://github.com/opencomponents/oc/pull/432) prepare-server-get-component-parameters
1217
1459
  - [#428](https://github.com/opencomponents/oc/pull/428) registerTemplate API fix
1218
1460
 
1219
1461
  ### v0.36.15
1462
+
1220
1463
  - [#422](https://github.com/opencomponents/oc/pull/422) adding package cli command
1221
1464
  - [#423](https://github.com/opencomponents/oc/pull/423) [GPT-517] Exposing registry supported templates via context
1222
1465
 
1223
1466
  ### v0.36.14
1467
+
1224
1468
  - [#421](https://github.com/opencomponents/oc/pull/421) Minify static content by transpiling it first
1225
1469
 
1226
1470
  ### v0.36.13
1471
+
1227
1472
  - [#420](https://github.com/opencomponents/oc/pull/420) revert #418
1228
1473
 
1229
1474
  ### v0.36.12
1475
+
1230
1476
  - [#418](https://github.com/opencomponents/oc/pull/418) Transpile static js before minification
1231
1477
 
1232
1478
  ### v0.36.11
1479
+
1233
1480
  - [#417](https://github.com/opencomponents/oc/pull/417) support old and new handlebars type
1234
1481
 
1235
1482
  ### v0.36.10
1483
+
1236
1484
  - [#415](https://github.com/opencomponents/oc/pull/415) [GPT-526] Dynamic requires of oc-templates
1237
1485
  - [#416](https://github.com/opencomponents/oc/pull/416) Updated infinite-loop-loader to fix #410
1238
1486
 
1239
1487
  ### v0.36.9
1488
+
1240
1489
  - [#413](https://github.com/opencomponents/oc/pull/413) Fix ui preview with multiple discover strategies and endpoints
1241
1490
  - [#414](https://github.com/opencomponents/oc/pull/414) [GPT-525] Switch to new templates naming
1242
1491
 
1243
1492
  ### v0.36.8
1493
+
1244
1494
  - [#412](https://github.com/opencomponents/oc/pull/412) Async compile api
1245
1495
 
1246
1496
  ### v0.36.7
1497
+
1247
1498
  - [#411](https://github.com/opencomponents/oc/pull/411) Babili on server.js
1248
1499
 
1249
1500
  ### v0.36.6
1501
+
1250
1502
  - [#408](https://github.com/opencomponents/oc/pull/408) Ensuring we exit the domains in case of timeout
1251
1503
 
1252
1504
  ### v0.36.5
1505
+
1253
1506
  - [#396](https://github.com/opencomponents/oc/pull/396) Make oc-client.js supporting more templates via an extendable API
1254
1507
 
1255
1508
  ### v0.36.4
1509
+
1256
1510
  - [#405](https://github.com/opencomponents/oc/pull/405) Publish bugfix
1257
1511
  - [#402](https://github.com/opencomponents/oc/pull/402) We don't autogenerate cli docs anymore
1258
1512
 
1259
1513
  ### v0.36.3
1514
+
1260
1515
  - [#403](https://github.com/opencomponents/oc/pull/403) Fix for #391 - support pre-release versions of components
1261
1516
  - [#1](https://github.com/opencomponents/oc/pull/1) Thanks @matteofigus. I forgot about it.
1262
1517
 
1263
1518
  ### v0.36.2
1519
+
1264
1520
  - [#401](https://github.com/opencomponents/oc/pull/401) Webpack verbose
1265
1521
 
1266
1522
  ### v0.36.1
1523
+
1267
1524
  - [#380](https://github.com/opencomponents/oc/pull/380) Handle fallbackRegistryUrl for ~info and ~preview
1268
1525
 
1269
1526
  ### v0.36.0
1527
+
1270
1528
  - [#399](https://github.com/opencomponents/oc/pull/399) Changed option parser for cli
1271
1529
  - [#400](https://github.com/opencomponents/oc/pull/400) Fixing typo on registry UI for filtering.
1272
1530
 
1273
1531
  ### v0.35.6
1532
+
1274
1533
  - [#397](https://github.com/opencomponents/oc/pull/397) Fix basicAuth
1275
1534
 
1276
1535
  ### v0.35.5
1536
+
1277
1537
  - [#389](https://github.com/opencomponents/oc/pull/389) Fix regex on win paths normalisation
1278
1538
 
1279
1539
  ### v0.35.4
1540
+
1280
1541
  - [#388](https://github.com/opencomponents/oc/pull/388) Fixing deps on the node client
1281
1542
 
1282
1543
  ### v0.35.3
1544
+
1283
1545
  - [#347](https://github.com/opencomponents/oc/pull/347) 342 - (OC Client) Perform GET instead of POST for single component
1284
1546
  - [#342](https://github.com/opencomponents/oc/pull/342) Change the OC Client to perform GET instead of POST when requesting just one component
1285
1547
  - [#385](https://github.com/opencomponents/oc/pull/385) updated to templates 2.0
@@ -1287,42 +1549,54 @@ closes #487
1287
1549
  - [#376](https://github.com/opencomponents/oc/pull/376) Cleanup un-needed files
1288
1550
 
1289
1551
  ### v0.35.2
1552
+
1290
1553
  - [#375](https://github.com/opencomponents/oc/pull/375) oc-template-jade module
1291
1554
 
1292
1555
  ### v0.35.1
1556
+
1293
1557
  - [#371](https://github.com/opencomponents/oc/pull/371) oc-template-handlebars module
1294
1558
 
1295
1559
  ### v0.35.0
1560
+
1296
1561
  - [#366](https://github.com/opencomponents/oc/pull/366) Express 4
1297
1562
 
1298
1563
  ### v0.34.8
1564
+
1299
1565
  - [#370](https://github.com/opencomponents/oc/pull/370) Cleanup on headers handling
1300
1566
 
1301
1567
  ### v0.34.7
1568
+
1302
1569
  - [#372](https://github.com/opencomponents/oc/pull/372) optional fallbackRegistryUrl configuration parameter
1303
1570
  - [#374](https://github.com/opencomponents/oc/pull/374) Es2015 base-component server
1304
1571
 
1305
1572
  ### v0.34.6
1573
+
1306
1574
  - [#367](https://github.com/opencomponents/oc/pull/367) Always create new S3 client before use
1307
1575
 
1308
1576
  ### v0.34.5
1577
+
1309
1578
  - [#365](https://github.com/opencomponents/oc/pull/365) Publish bugfix
1310
1579
 
1311
1580
  ### v0.34.4
1581
+
1312
1582
  - [#364](https://github.com/opencomponents/oc/pull/364) Don't allow routes that contain prefix
1313
1583
 
1314
1584
  ### v0.34.3
1585
+
1315
1586
  - [#362](https://github.com/opencomponents/oc/pull/362) Node 7
1316
1587
  - [#363](https://github.com/opencomponents/oc/pull/363) Extending Integration tests
1317
1588
 
1318
1589
  ### v0.34.2
1590
+
1319
1591
  - [#357](https://github.com/opencomponents/oc/pull/357) Webpack 2
1320
1592
 
1321
1593
  ### v0.34.1
1594
+
1322
1595
  - [#361](https://github.com/opencomponents/oc/pull/361) removed uglify
1323
1596
  - [#359](https://github.com/opencomponents/oc/pull/359) swapped falafel loader with infinite-loop-loader
1324
1597
 
1325
1598
  ### v0.34.0
1599
+
1326
1600
  - [#346](https://github.com/opencomponents/oc/pull/346) [GPT-432] Package server webpack
1327
1601
  - [#356](https://github.com/opencomponents/oc/pull/356) Appveyor cleanup
1328
1602
  - [#355](https://github.com/opencomponents/oc/pull/355) drop support for node 0.10, 0.12 and io
@@ -1330,349 +1604,453 @@ closes #487
1330
1604
  - [#353](https://github.com/opencomponents/oc/pull/353) Remove IE8 support
1331
1605
 
1332
1606
  ### v0.33.31
1607
+
1333
1608
  - [#343](https://github.com/opencomponents/oc/pull/343) 333 - Implement customHeadersToSkipOnWeakVersion functionality
1334
1609
  - [#349](https://github.com/opencomponents/oc/pull/349) Upgrade minimal-request
1335
1610
  - [#348](https://github.com/opencomponents/oc/pull/348) [acceptance/registry] remove .only
1336
1611
  - [#344](https://github.com/opencomponents/oc/pull/344) Package server script cleanup
1337
1612
 
1338
1613
  ### v0.33.30
1614
+
1339
1615
  - [#335](https://github.com/opencomponents/oc/pull/335) Add endpoint for getting list of components with their versions (#324)
1340
1616
 
1341
1617
  ### v0.33.29
1618
+
1342
1619
  - [#337](https://github.com/opencomponents/oc/pull/337) Fix for #336 - Make S3 Key/Secret optional to allow support for "IAM role based access to s3 from EC2"
1343
1620
 
1344
1621
  ### v0.33.28
1622
+
1345
1623
  - [#323](https://github.com/opencomponents/oc/pull/323) Fix for #322
1346
1624
  - [#334](https://github.com/opencomponents/oc/pull/334) Acceptance extra test
1347
1625
 
1348
1626
  ### v0.33.27
1627
+
1349
1628
  - [#331](https://github.com/opencomponents/oc/pull/331) Client fixes and some tests
1350
1629
 
1351
1630
  ### v0.33.26
1631
+
1352
1632
  - [#329](https://github.com/opencomponents/oc/pull/329) Cleanup npm-shrinkwrap
1353
1633
 
1354
1634
  ### v0.33.25
1635
+
1355
1636
  - [#328](https://github.com/opencomponents/oc/pull/328) Fix for Custom eaders of one component can appear to another.
1356
1637
 
1357
1638
  ### v0.33.24
1639
+
1358
1640
  - [#326](https://github.com/opencomponents/oc/pull/326) Add optional cache headers for components (#325)
1359
1641
 
1360
1642
  ### v0.33.23
1643
+
1361
1644
  - [#319](https://github.com/opencomponents/oc/pull/319) Extract package bugfix
1362
1645
 
1363
1646
  ### v0.33.22
1647
+
1364
1648
  - [#317](https://github.com/opencomponents/oc/pull/317) Client dynamic hrefs
1365
1649
 
1366
1650
  ### v0.33.21
1651
+
1367
1652
  - [#316](https://github.com/opencomponents/oc/pull/316) Migrate tar.gz to targz
1368
1653
 
1369
1654
  ### v0.33.20
1655
+
1370
1656
  - [#315](https://github.com/opencomponents/oc/pull/315) aws-sdk upgrade
1371
1657
 
1372
1658
  ### v0.33.19
1659
+
1373
1660
  - [#314](https://github.com/opencomponents/oc/pull/314) Revert async upgrade + timeout wrapping
1374
1661
 
1375
1662
  ### v0.33.18
1663
+
1376
1664
  - [#313](https://github.com/opencomponents/oc/pull/313) Recursively look for oc.json, starting from componentsDir
1377
1665
 
1378
1666
  ### v0.33.17
1667
+
1379
1668
  - [#312](https://github.com/opencomponents/oc/pull/312) Options bugfix
1380
1669
 
1381
1670
  ### v0.33.16
1671
+
1382
1672
  - [#311](https://github.com/opencomponents/oc/pull/311) Refactoring, cleanup, test coverage
1383
1673
 
1384
1674
  ### v0.33.15
1675
+
1385
1676
  - [#310](https://github.com/opencomponents/oc/pull/310) Upgrade async + wrap s3 calls to timeout
1386
1677
 
1387
1678
  ### v0.33.14
1679
+
1388
1680
  - [#309](https://github.com/opencomponents/oc/pull/309) Default value for optional parameters
1389
1681
  - [#308](https://github.com/opencomponents/oc/pull/308) Fixed tags order in changelog
1390
1682
 
1391
1683
  ### v0.33.13
1684
+
1392
1685
  - [#305](https://github.com/opencomponents/oc/pull/305) Switch to setTimeout for polling mechanism
1393
1686
  - [#306](https://github.com/opencomponents/oc/pull/306) Default Loading... to blank
1394
1687
 
1395
1688
  ### v0.33.12
1689
+
1396
1690
  - [#303](https://github.com/opencomponents/oc/pull/303) Client#renderComponents accepts global parameters
1397
1691
 
1398
1692
  ### v0.33.11
1693
+
1399
1694
  - [#302](https://github.com/opencomponents/oc/pull/302) Added name and reqest version to each response
1400
1695
 
1401
1696
  ### v0.33.10
1697
+
1402
1698
  - [#301](https://github.com/opencomponents/oc/pull/301) Oc client jadeless
1403
1699
 
1404
1700
  ### v0.33.9
1701
+
1405
1702
  - [#294](https://github.com/opencomponents/oc/pull/294) Upgrade npm dependency
1406
1703
 
1407
1704
  ### v0.33.8
1705
+
1408
1706
  - [#293](https://github.com/opencomponents/oc/pull/293) Ui improvements
1409
1707
 
1410
1708
  ### v0.33.7
1709
+
1411
1710
  - [#291](https://github.com/opencomponents/oc/pull/291) Client errors
1412
1711
  - [#290](https://github.com/opencomponents/oc/pull/290) Update minimal-request@2.1.1
1413
1712
  - [#288](https://github.com/opencomponents/oc/pull/288) oc-client warmup improvements
1414
1713
 
1415
1714
  ### v0.33.6
1715
+
1416
1716
  - [#289](https://github.com/opencomponents/oc/pull/289) Upgrade dependency
1417
1717
 
1418
1718
  ### v0.33.5
1719
+
1419
1720
  - [#287](https://github.com/opencomponents/oc/pull/287) Node 6
1420
1721
 
1421
1722
  ### v0.33.4
1723
+
1422
1724
  - [#286](https://github.com/opencomponents/oc/pull/286) Hot reload
1423
1725
  - [#285](https://github.com/opencomponents/oc/pull/285) npm install and dep resolvement needs to happen in the same dir
1424
1726
  - [#269](https://github.com/opencomponents/oc/pull/269) Removing the loading... indicator when we have an error
1425
1727
 
1426
1728
  ### v0.33.3
1729
+
1427
1730
  - [#278](https://github.com/opencomponents/oc/pull/278) Container client override
1428
1731
  - [#279](https://github.com/opencomponents/oc/pull/279) Update safari configs
1429
1732
  - [#280](https://github.com/opencomponents/oc/pull/280) Respect dependency versions for components
1430
1733
 
1431
1734
  ### v0.33.2
1735
+
1432
1736
  - [#274](https://github.com/opencomponents/oc/pull/274) Revert tar.gz upgrade
1433
1737
 
1434
1738
  ### v0.33.1
1739
+
1435
1740
  - [#270](https://github.com/opencomponents/oc/pull/270) server-side nested rendering
1436
1741
 
1437
1742
  ### v0.33.0
1743
+
1438
1744
  - [#265](https://github.com/opencomponents/oc/pull/265) [careful + breaking change] Removed Handlebars 3 support
1439
1745
 
1440
1746
  ### v0.32.6
1747
+
1441
1748
  - [#268](https://github.com/opencomponents/oc/pull/268) Strict shrinkwrapping
1442
1749
  - [#264](https://github.com/opencomponents/oc/pull/264) Docs cleanup
1443
1750
 
1444
1751
  ### v0.32.5
1752
+
1445
1753
  - [#266](https://github.com/opencomponents/oc/pull/266) Publish fix
1446
1754
 
1447
1755
  ### v0.32.4
1756
+
1448
1757
  - [#263](https://github.com/opencomponents/oc/pull/263) oc-client publish fix
1449
1758
 
1450
1759
  ### v0.32.3
1760
+
1451
1761
  - [#257](https://github.com/opencomponents/oc/pull/257) Publish requirements
1452
1762
  - [#259](https://github.com/opencomponents/oc/pull/259) Upgrade more deps
1453
1763
 
1454
1764
  ### v0.32.2
1765
+
1455
1766
  - [#261](https://github.com/opencomponents/oc/pull/261) Client rendering fix
1456
1767
 
1457
1768
  ### v0.32.1
1769
+
1458
1770
  - [#260](https://github.com/opencomponents/oc/pull/260) Client fix
1459
1771
 
1460
1772
  ### v0.32.0
1773
+
1461
1774
  - [#243](https://github.com/opencomponents/oc/pull/243) [careful] handlebars 3+4
1462
1775
 
1463
1776
  ### v0.31.2
1777
+
1464
1778
  - [#258](https://github.com/opencomponents/oc/pull/258) added support for serving svg
1465
1779
 
1466
1780
  ### v0.31.1
1781
+
1467
1782
  - [#256](https://github.com/opencomponents/oc/pull/256) More dependencies upgrade
1468
1783
 
1469
1784
  ### v0.31.0
1785
+
1470
1786
  - [#254](https://github.com/opencomponents/oc/pull/254) Dependencies upgrade
1471
1787
  - [#255](https://github.com/opencomponents/oc/pull/255) Renamed src to public
1472
1788
  - [#253](https://github.com/opencomponents/oc/pull/253) Updated instructions of how to add static resource to the file
1473
1789
 
1474
1790
  ### v0.30.9
1791
+
1475
1792
  - [#251](https://github.com/opencomponents/oc/pull/251) check is dir with lstatSync
1476
1793
 
1477
1794
  ### v0.30.8
1795
+
1478
1796
  - [#248](https://github.com/opencomponents/oc/pull/248) Amd Support for client-side library
1479
1797
  - [#244](https://github.com/opencomponents/oc/pull/244) Docs updated
1480
1798
 
1481
1799
  ### v0.30.7
1800
+
1482
1801
  - [#245](https://github.com/opencomponents/oc/pull/245) Cache jade view (for web interface)
1483
1802
  - [#246](https://github.com/opencomponents/oc/pull/246) Upgraded some dependencies
1484
1803
 
1485
1804
  ### v0.30.6
1805
+
1486
1806
  - [#242](https://github.com/opencomponents/oc/pull/242) Upgrade npm
1487
1807
  - [#241](https://github.com/opencomponents/oc/pull/241) adds dependencies badge in readme
1488
1808
  - [#240](https://github.com/opencomponents/oc/pull/240) add some basic example components
1489
1809
  - [#239](https://github.com/opencomponents/oc/pull/239) Update README
1490
1810
 
1491
1811
  ### v0.30.5
1812
+
1492
1813
  - [#238](https://github.com/opencomponents/oc/pull/238) Logo path fixed in web interface
1493
1814
 
1494
1815
  ### v0.30.4
1816
+
1495
1817
  - [#236](https://github.com/opencomponents/oc/pull/236) Refactoring tasks code
1496
1818
  - [#237](https://github.com/opencomponents/oc/pull/237) Upgrade and fix jshinting
1497
1819
 
1498
1820
  ### v0.30.3
1821
+
1499
1822
  - [#235](https://github.com/opencomponents/oc/pull/235) Moved things around
1500
1823
 
1501
1824
  ### v0.30.2
1825
+
1502
1826
  - [#232](https://github.com/opencomponents/oc/pull/232) Upgrade async
1503
1827
 
1504
1828
  ### v0.30.1
1829
+
1505
1830
  - [#230](https://github.com/opencomponents/oc/pull/230) Fixed Changelog generator task
1506
1831
 
1507
1832
  ### v0.30.0
1833
+
1508
1834
  - [#229](https://github.com/opencomponents/oc/pull/229) Empty string should be a valid string parameter
1509
1835
 
1510
1836
  ### v0.29.3
1837
+
1511
1838
  - [#227](https://github.com/opencomponents/oc/pull/227) Omit href
1512
1839
  - [#228](https://github.com/opencomponents/oc/pull/228) Global params on POST request
1513
1840
 
1514
1841
  ### v0.29.2
1842
+
1515
1843
  - [#222](https://github.com/opencomponents/oc/pull/222) Compress inlined js and css inside jade views
1516
1844
 
1517
1845
  ### v0.29.1
1846
+
1518
1847
  - [#221](https://github.com/opencomponents/oc/pull/221) Removed ace editor + added Accept-Language box
1519
1848
 
1520
1849
  ### v0.29.0
1850
+
1521
1851
  - [#218](https://github.com/opencomponents/oc/pull/218) Upgrade jade
1522
1852
 
1523
1853
  ### v0.28.9
1854
+
1524
1855
  - [#214](https://github.com/opencomponents/oc/pull/214) S3 validation
1525
- - [#216](https://github.com/opencomponents/oc/pull/216) Looks good;
1526
- tested
1856
+ - [#216](https://github.com/opencomponents/oc/pull/216) Looks good;
1857
+ tested
1527
1858
 
1528
1859
  ### v0.28.8
1860
+
1529
1861
  - [#215](https://github.com/opencomponents/oc/pull/215) mock bugfix for when a value is not a string
1530
1862
 
1531
1863
  ### v0.28.7
1864
+
1532
1865
  - [#213](https://github.com/opencomponents/oc/pull/213) [Docs] description of oc.renderInfo param
1533
1866
  - [#212](https://github.com/opencomponents/oc/pull/212) Changelog using git history instead of github api
1534
1867
 
1535
1868
  ### v0.28.6
1869
+
1536
1870
  - [#211](https://github.com/opencomponents/oc/pull/211) Forward request headers to component
1537
1871
 
1538
1872
  ### v0.28.5
1873
+
1539
1874
  - [#208](https://github.com/opencomponents/oc/pull/208) When data is undefined, registry should 500
1540
1875
  - [#209](https://github.com/opencomponents/oc/pull/209) Exit 1 in case of CLI error
1541
1876
 
1542
1877
  ### v0.28.4
1878
+
1543
1879
  - [#204](https://github.com/opencomponents/oc/pull/204) add "getRepositoryUrl" in order to support repository package.json property as object
1544
1880
  - [#206](https://github.com/opencomponents/oc/pull/206) Fix travis forks PRs
1545
1881
 
1546
1882
  ### v0.28.3
1883
+
1547
1884
  - [#203](https://github.com/opencomponents/oc/pull/203) Fix githubChanges task name
1548
1885
  - [#199](https://github.com/opencomponents/oc/pull/199) Changelog
1549
1886
 
1550
1887
  ### v0.28.2
1888
+
1551
1889
  - [#201](https://github.com/opencomponents/oc/pull/201) Added license on minified oc-client.min.js
1552
1890
 
1553
1891
  ### v0.28.1
1892
+
1554
1893
  - [#200](https://github.com/opencomponents/oc/pull/200) Have optional callbacks in CLI functions
1555
1894
 
1556
1895
  ### v0.28.0
1896
+
1557
1897
  - [#198](https://github.com/opencomponents/oc/pull/198) More details on errors from node client
1558
1898
  - [#197](https://github.com/opencomponents/oc/pull/197) Return null when there's no error in renderComponents
1559
1899
 
1560
1900
  ### v0.27.9
1901
+
1561
1902
  - [#195](https://github.com/opencomponents/oc/pull/195) Warmup on client.init
1562
1903
 
1563
1904
  ### v0.27.8
1905
+
1564
1906
  - [#196](https://github.com/opencomponents/oc/pull/196) Adding user-agent to node oc-client
1565
1907
 
1566
1908
  ### v0.27.7
1909
+
1567
1910
  - [#194](https://github.com/opencomponents/oc/pull/194) Cleanup on client
1568
1911
 
1569
1912
  ### v0.27.6
1913
+
1570
1914
  - [#193](https://github.com/opencomponents/oc/pull/193) Dev has optional callback in order to be used by grunt-oc
1571
1915
  - [#192](https://github.com/opencomponents/oc/pull/192) Less docs, more links
1572
1916
 
1573
1917
  ### v0.27.5
1918
+
1574
1919
  - [#190](https://github.com/opencomponents/oc/pull/190) Publish error
1575
1920
 
1576
1921
  ### v0.27.4
1922
+
1577
1923
  - [#189](https://github.com/opencomponents/oc/pull/189) Safe colors in order to avoid extending object and better testing
1578
1924
 
1579
1925
  ### v0.27.1
1926
+
1580
1927
  - [#187](https://github.com/opencomponents/oc/pull/187) Moved the request util to its own module
1581
1928
 
1582
1929
  ### v0.27.0
1930
+
1583
1931
  - [#186](https://github.com/opencomponents/oc/pull/186) Preserve language when doing client-side failover
1584
1932
 
1585
1933
  ### v0.26.2
1934
+
1586
1935
  - [#182](https://github.com/opencomponents/oc/pull/182) Node.js client post and various improvements
1587
1936
 
1588
1937
  ### v0.26.1
1938
+
1589
1939
  - [#184](https://github.com/opencomponents/oc/pull/184) Allow oc dev to be hosted from a custom base url
1590
1940
 
1591
1941
  ### v0.26.0
1942
+
1592
1943
  - [#178](https://github.com/opencomponents/oc/pull/178) node.js client should accept serverRendering and clientRendering endpoints instead of generic array (breaking change)
1593
1944
 
1594
1945
  ### v0.25.0
1946
+
1595
1947
  - [#179](https://github.com/opencomponents/oc/pull/179) Oc client cleanup and improvements
1596
1948
 
1597
1949
  ### v0.24.1
1950
+
1598
1951
  - [#180](https://github.com/opencomponents/oc/pull/180) update the dependencies
1599
1952
 
1600
1953
  ### v0.24.0
1954
+
1601
1955
  - [#177](https://github.com/opencomponents/oc/pull/177) Npm ignore to avoid publishing unuseful stuff
1602
1956
 
1603
1957
  ### v0.23.7
1958
+
1604
1959
  - [#173](https://github.com/opencomponents/oc/pull/173) Ownership of $$$
1605
1960
 
1606
1961
  ### v0.23.6
1962
+
1607
1963
  - [#172](https://github.com/opencomponents/oc/pull/172) Avoid client to be multiple times inside the page
1608
1964
 
1609
1965
  ### v0.23.5
1966
+
1610
1967
  - [#171](https://github.com/opencomponents/oc/pull/171) Without cleaning up the namespace
1611
1968
 
1612
1969
  ### v0.23.4
1970
+
1613
1971
  - [#170](https://github.com/opencomponents/oc/pull/170) jQuery in no conflict mode
1614
1972
 
1615
1973
  ### v0.23.3
1974
+
1616
1975
  - [#169](https://github.com/opencomponents/oc/pull/169) pre-rendered modality is deprecated
1617
1976
 
1618
1977
  ### v0.23.2
1978
+
1619
1979
  - [#168](https://github.com/opencomponents/oc/pull/168) Update dependencies
1620
1980
  - [#167](https://github.com/opencomponents/oc/pull/167) Sauce browsers updated + dev dependency updated
1621
1981
 
1622
1982
  ### v0.23.1
1983
+
1623
1984
  - [#166](https://github.com/opencomponents/oc/pull/166) Bugfix and docs
1624
1985
 
1625
1986
  ### v0.23.0
1987
+
1626
1988
  - [#165](https://github.com/opencomponents/oc/pull/165) Making the POST response API return status and response for each comp…
1627
1989
 
1628
1990
  ### v0.22.3
1991
+
1629
1992
  - [#164](https://github.com/opencomponents/oc/pull/164) New component-retrieved event
1630
1993
 
1631
1994
  ### v0.22.2
1995
+
1632
1996
  - [#163](https://github.com/opencomponents/oc/pull/163) POST route for allowing batch request
1633
1997
  - [#160](https://github.com/opencomponents/oc/pull/160) travis run tests with node 5 as well
1634
1998
 
1635
1999
  ### v0.22.1
2000
+
1636
2001
  - [#159](https://github.com/opencomponents/oc/pull/159) should have an explicit dep on phantom
1637
2002
 
1638
2003
  ### v0.22.0
1639
- - [#157](https://github.com/opencomponents/oc/pull/157) Server/Client-side render info
2004
+
2005
+ - [#157](https://github.com/opencomponents/oc/pull/157) Server/Client-side render info
1640
2006
  - [#156](https://github.com/opencomponents/oc/pull/156) House keeping
1641
2007
 
1642
2008
  ### v0.21.0
2009
+
1643
2010
  - [#155](https://github.com/opencomponents/oc/pull/155) Removing info, ls, link, unlink
1644
2011
 
1645
2012
  ### v0.20.5
2013
+
1646
2014
  - [#153](https://github.com/opencomponents/oc/pull/153) js.gz + css.gz handling
1647
2015
 
1648
2016
  ### v0.20.4
2017
+
1649
2018
  - [#148](https://github.com/opencomponents/oc/pull/148) only remove the package once published to all registries
1650
2019
 
1651
2020
  ### v0.20.3
2021
+
1652
2022
  - [#152](https://github.com/opencomponents/oc/pull/152) woopsy, I broke `oc dev`
1653
2023
 
1654
2024
  ### v0.20.2
2025
+
1655
2026
  - [#151](https://github.com/opencomponents/oc/pull/151) Run karma tests by default
1656
2027
 
1657
2028
  ### v0.20.1
2029
+
1658
2030
  - [#144](https://github.com/opencomponents/oc/pull/144) Oc client limited retries
1659
2031
 
1660
2032
  ### v0.20.0
2033
+
1661
2034
  - [#141](https://github.com/opencomponents/oc/pull/141) allow plugins to depend on one another (breaking change)
1662
2035
 
1663
2036
  ### v0.19.5
2037
+
1664
2038
  - [#147](https://github.com/opencomponents/oc/pull/147) Refactor cli/domain/local
1665
2039
 
1666
2040
  ### v0.19.4
2041
+
1667
2042
  - [#145](https://github.com/opencomponents/oc/pull/145) oc dev fix (ie 8+)
1668
2043
 
1669
2044
  ### v0.19.3
2045
+
1670
2046
  - [#143](https://github.com/opencomponents/oc/pull/143) Fix cli crash when `oc dev` reads a broken package.json
1671
2047
 
1672
2048
  ### v0.19.1
2049
+
1673
2050
  - [#140](https://github.com/opencomponents/oc/pull/140) Hacking on travis
1674
2051
 
1675
2052
  ### v0.19.0
2053
+
1676
2054
  - [#139](https://github.com/opencomponents/oc/pull/139) prerendered -> unrendered
1677
2055
  - [#134](https://github.com/opencomponents/oc/pull/134) Added tagging when upgrading version
1678
2056
  - [#133](https://github.com/opencomponents/oc/pull/133) Empty component fix
@@ -1756,4 +2134,4 @@ tested
1756
2134
  - [#4](https://github.com/opencomponents/oc/pull/4) Some fixes
1757
2135
  - [#3](https://github.com/opencomponents/oc/pull/3) Client componentisation
1758
2136
  - [#2](https://github.com/opencomponents/oc/pull/2) Update README.md
1759
- - [#1](https://github.com/opencomponents/oc/pull/1) Readme
2137
+ - [#1](https://github.com/opencomponents/oc/pull/1) Readme