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