oc 0.49.15 → 0.49.16
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/CHANGELOG.md +293 -8
- package/dist/cli/facade/dev.d.ts +4 -4
- package/dist/cli/facade/dev.js +3 -6
- package/dist/components/oc-client/_package/package.json +1 -1
- package/dist/components/oc-client/package.json +1 -1
- package/dist/registry/domain/errors.d.ts +6 -0
- package/dist/registry/domain/errors.js +45 -0
- package/dist/registry/domain/events-handler.d.ts +2 -2
- package/dist/registry/domain/extract-package.d.ts +2 -2
- package/dist/registry/domain/extract-package.js +1 -1
- package/dist/registry/domain/get-package-json-from-temp-dir.d.ts +2 -2
- package/dist/registry/domain/repository.d.ts +5 -2
- package/dist/registry/domain/repository.js +1 -1
- package/dist/registry/domain/validators/package-json-validator.d.ts +1 -1
- package/dist/registry/index.d.ts +2 -2
- package/dist/registry/index.js +3 -3
- package/dist/types.d.ts +3 -2
- package/logintervals.md +1 -1
- package/package.json +3 -3
- package/src/cli/domain/registry.ts +1 -1
- package/src/cli/facade/dev.ts +4 -6
- package/src/cli/index.ts +1 -1
- package/src/components/oc-client/_package/package.json +1 -1
- package/src/components/oc-client/package.json +1 -1
- package/src/registry/app-start.ts +1 -1
- package/src/registry/domain/errors.ts +64 -0
- package/src/registry/domain/events-handler.ts +2 -2
- package/src/registry/domain/extract-package.ts +4 -4
- package/src/registry/domain/get-package-json-from-temp-dir.ts +2 -2
- package/src/registry/domain/repository.ts +3 -3
- package/src/registry/domain/validators/package-json-validator.ts +1 -1
- package/src/registry/domain/validators/uploaded-package.ts +2 -2
- package/src/registry/index.ts +4 -4
- package/src/registry/routes/component.ts +1 -1
- package/src/types.ts +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
## Change Log
|
|
2
2
|
|
|
3
|
+
### v0.49.16
|
|
4
|
+
|
|
5
|
+
- [#1313](https://github.com/opencomponents/oc/pull/1313) remove some any types
|
|
6
|
+
|
|
3
7
|
### v0.49.14
|
|
8
|
+
|
|
4
9
|
- [#1308](https://github.com/opencomponents/oc/pull/1308) Update project to Node.js 14.x
|
|
5
10
|
- [#1310](https://github.com/opencomponents/oc/pull/1310) Add Node.js v18 to CI
|
|
6
11
|
- [#1306](https://github.com/opencomponents/oc/pull/1306) Align the Node.js nvm version with the one in package.json
|
|
@@ -14,9 +19,11 @@
|
|
|
14
19
|
- [#1296](https://github.com/opencomponents/oc/pull/1296) removing express-promise-router
|
|
15
20
|
|
|
16
21
|
### v0.49.12
|
|
22
|
+
|
|
17
23
|
- [#1295](https://github.com/opencomponents/oc/pull/1295) add option to send custom status code back to the registry
|
|
18
24
|
|
|
19
25
|
### v0.49.8
|
|
26
|
+
|
|
20
27
|
- [#1292](https://github.com/opencomponents/oc/pull/1292) dont watch files on temp folder from templates
|
|
21
28
|
- [#1289](https://github.com/opencomponents/oc/pull/1289) use polling on watch
|
|
22
29
|
- [#1288](https://github.com/opencomponents/oc/pull/1288) Update README documentation link
|
|
@@ -39,16 +46,20 @@
|
|
|
39
46
|
- [#1241](https://github.com/opencomponents/oc/pull/1241) Start moving callback based functions to promises
|
|
40
47
|
|
|
41
48
|
### v0.49.7
|
|
49
|
+
|
|
42
50
|
- [#1283](https://github.com/opencomponents/oc/pull/1283) add "open" link to component preview page
|
|
43
51
|
- [#1279](https://github.com/opencomponents/oc/pull/1279) improve auth flexibility allowing to pass any library on type field
|
|
44
52
|
|
|
45
53
|
### v0.49.6
|
|
54
|
+
|
|
46
55
|
- [#1282](https://github.com/opencomponents/oc/pull/1282) Minor logging improvements
|
|
47
56
|
|
|
48
57
|
### v0.49.5
|
|
58
|
+
|
|
49
59
|
- [#1280](https://github.com/opencomponents/oc/pull/1280) [INTERNAL] Allow for non-number port (i.e. pipe)
|
|
50
60
|
|
|
51
61
|
### v0.49.4
|
|
62
|
+
|
|
52
63
|
- [#1277](https://github.com/opencomponents/oc/pull/1277) [CLI-FEATURE] add registries options for oc publish
|
|
53
64
|
- [#1276](https://github.com/opencomponents/oc/pull/1276) [CLI-FEATURE] filter components to run when running oc dev
|
|
54
65
|
- [#1270](https://github.com/opencomponents/oc/pull/1270) [INTERNAL] remove code about module.paths pushing on authentication
|
|
@@ -56,7 +67,7 @@
|
|
|
56
67
|
- [#1271](https://github.com/opencomponents/oc/pull/1271) [TYPE IMPROVEMENT] remove global callback and dictionary types
|
|
57
68
|
- [#1268](https://github.com/opencomponents/oc/pull/1268) [IMPROVEMENT] Improve typings of events in events handler
|
|
58
69
|
- [#1264](https://github.com/opencomponents/oc/pull/1264) [INTERNAL] Replace lodash type checkers with typeof
|
|
59
|
-
- [#1263](https://github.com/opencomponents/oc/pull/1263) [INTERNAL] Replace usage of lodash _.extend with Object.assign
|
|
70
|
+
- [#1263](https://github.com/opencomponents/oc/pull/1263) [INTERNAL] Replace usage of lodash \_.extend with Object.assign
|
|
60
71
|
- [#1261](https://github.com/opencomponents/oc/pull/1261) [INTERNAL] type cleanRequire better
|
|
61
72
|
- [#1256](https://github.com/opencomponents/oc/pull/1256) [INTERNAL] enable noUnusedParameters and noImplicitReturns rules. fix problems
|
|
62
73
|
- [#1260](https://github.com/opencomponents/oc/pull/1260) [INTERNAL] Remove pad-zero util
|
|
@@ -64,9 +75,11 @@
|
|
|
64
75
|
- [#1253](https://github.com/opencomponents/oc/pull/1253) [INTERNAL] Simplify log parameter names for newline
|
|
65
76
|
|
|
66
77
|
### v0.49.3
|
|
78
|
+
|
|
67
79
|
- [#1262](https://github.com/opencomponents/oc/pull/1262) [BUGFIX] Add back --prefix when installing dependencies
|
|
68
80
|
|
|
69
81
|
### v0.49.2
|
|
82
|
+
|
|
70
83
|
- [#1259](https://github.com/opencomponents/oc/pull/1259) [BUGFIX] remove prefix command on npm
|
|
71
84
|
- [#1248](https://github.com/opencomponents/oc/pull/1248) Type better baseUrlFunc and discoveryFunc
|
|
72
85
|
- [#1249](https://github.com/opencomponents/oc/pull/1249) use internal body-parser from express >=4.16
|
|
@@ -104,11 +117,13 @@
|
|
|
104
117
|
- [#1210](https://github.com/opencomponents/oc/pull/1210) remove new references on non-classes
|
|
105
118
|
|
|
106
119
|
### v0.49.1
|
|
120
|
+
|
|
107
121
|
- [#1215](https://github.com/opencomponents/oc/pull/1215) add default empty object for object keys
|
|
108
122
|
- [#1213](https://github.com/opencomponents/oc/pull/1213) replace _.keys and _.values with their Object methods
|
|
109
123
|
- [#1212](https://github.com/opencomponents/oc/pull/1212) add request ip to the context obj
|
|
110
124
|
|
|
111
125
|
### v0.49.0
|
|
126
|
+
|
|
112
127
|
- [#1207](https://github.com/opencomponents/oc/pull/1207) [BREAKING] Update oc-client-browser to 1.5.3
|
|
113
128
|
- [#1205](https://github.com/opencomponents/oc/pull/1205) update packages
|
|
114
129
|
- [#1206](https://github.com/opencomponents/oc/pull/1206) remove stringformat
|
|
@@ -118,9 +133,11 @@
|
|
|
118
133
|
- [#1203](https://github.com/opencomponents/oc/pull/1203) Drop support for Node 8/10
|
|
119
134
|
|
|
120
135
|
### v0.48.22
|
|
136
|
+
|
|
121
137
|
- [#1200](https://github.com/opencomponents/oc/pull/1200) upgrade oc-client to have es6 template by default
|
|
122
138
|
|
|
123
139
|
### v0.48.21
|
|
140
|
+
|
|
124
141
|
- [#1199](https://github.com/opencomponents/oc/pull/1199) Publish new version
|
|
125
142
|
- [#1198](https://github.com/opencomponents/oc/pull/1198) Upgrade oc client browser
|
|
126
143
|
- [#1194](https://github.com/opencomponents/oc/pull/1194) Available plugins
|
|
@@ -131,28 +148,36 @@
|
|
|
131
148
|
- [#1189](https://github.com/opencomponents/oc/pull/1189) Fix tests for windows
|
|
132
149
|
|
|
133
150
|
### v0.48.19
|
|
151
|
+
|
|
134
152
|
- [#1185](https://github.com/opencomponents/oc/pull/1185) update oc-client-browser package
|
|
135
153
|
|
|
136
154
|
### v0.48.18
|
|
155
|
+
|
|
137
156
|
- [#1184](https://github.com/opencomponents/oc/pull/1184) Add support for custom keepAliveTimeout config
|
|
138
157
|
|
|
139
158
|
### v0.48.17
|
|
159
|
+
|
|
140
160
|
- [#1181](https://github.com/opencomponents/oc/pull/1181) Handle scoped packages when removing version
|
|
141
161
|
|
|
142
162
|
### v0.48.16
|
|
163
|
+
|
|
143
164
|
- [#1180](https://github.com/opencomponents/oc/pull/1180) Respect cdn.maxConcurrentRequests in components-list
|
|
144
165
|
- [#1177](https://github.com/opencomponents/oc/pull/1177) Remove unsupported email address
|
|
145
166
|
|
|
146
167
|
### v0.48.15
|
|
168
|
+
|
|
147
169
|
- [#1174](https://github.com/opencomponents/oc/pull/1174) Handlebars OC Upgrade
|
|
148
170
|
|
|
149
171
|
### v0.48.14
|
|
172
|
+
|
|
150
173
|
- [#1173](https://github.com/opencomponents/oc/pull/1173) [SFX-2153] - Upgraded Handlebars Compiler
|
|
151
174
|
|
|
152
175
|
### v0.48.12
|
|
176
|
+
|
|
153
177
|
- [#1172](https://github.com/opencomponents/oc/pull/1172) [Snyk] Security upgrade oc-client from 3.2.10 to 3.2.11
|
|
154
178
|
|
|
155
179
|
### v0.48.9
|
|
180
|
+
|
|
156
181
|
- [#1170](https://github.com/opencomponents/oc/pull/1170) [SFX-2153] - Upgrading Handlerbars render to latest version
|
|
157
182
|
- [#1158](https://github.com/opencomponents/oc/pull/1158) Update mocha in package.json from 6.2.2 to 7.0.1
|
|
158
183
|
- [#1157](https://github.com/opencomponents/oc/pull/1157) Update async in package.json from 3.1.0 to 3.1.1
|
|
@@ -163,12 +188,15 @@
|
|
|
163
188
|
- [#1119](https://github.com/opencomponents/oc/pull/1119) Update cross-spawn in package.json from 7.0.0 to 7.0.1
|
|
164
189
|
|
|
165
190
|
### v0.48.6
|
|
191
|
+
|
|
166
192
|
- [#1123](https://github.com/opencomponents/oc/pull/1123) update travis.yml for node version 12
|
|
167
193
|
|
|
168
194
|
### v0.48.5
|
|
195
|
+
|
|
169
196
|
- [#1124](https://github.com/opencomponents/oc/pull/1124) Rollback handlebars
|
|
170
197
|
|
|
171
198
|
### v0.48.4
|
|
199
|
+
|
|
172
200
|
- [#1114](https://github.com/opencomponents/oc/pull/1114) Update oc-template-es6-compiler in package.json from 1.1.7 to 1.1.8
|
|
173
201
|
- [#1117](https://github.com/opencomponents/oc/pull/1117) Update oc-template-jade-compiler in package.json from 7.0.0 to 7.0.1
|
|
174
202
|
- [#1118](https://github.com/opencomponents/oc/pull/1118) Update various dependencies
|
|
@@ -183,9 +211,11 @@
|
|
|
183
211
|
- [#1103](https://github.com/opencomponents/oc/pull/1103) Update livereload in package.json from 0.8.0 to 0.8.1
|
|
184
212
|
|
|
185
213
|
### v0.48.3
|
|
214
|
+
|
|
186
215
|
- [#1102](https://github.com/opencomponents/oc/pull/1102) add off method (like EventListener.off)
|
|
187
216
|
|
|
188
217
|
### v0.48.2
|
|
218
|
+
|
|
189
219
|
- [#1101](https://github.com/opencomponents/oc/pull/1101) Update cross-spawn in package.json from ^6.0.3 to 7.0.0
|
|
190
220
|
- [#1100](https://github.com/opencomponents/oc/pull/1100) Update sinon in package.json from 7.4.1 to 7.4.2
|
|
191
221
|
- [#1099](https://github.com/opencomponents/oc/pull/1099) Update husky in package.json from 3.0.4 to 3.0.5
|
|
@@ -218,6 +248,7 @@
|
|
|
218
248
|
- [#1060](https://github.com/opencomponents/oc/pull/1060) Update oc-client in package.json from 3.2.6 to 3.2.7
|
|
219
249
|
|
|
220
250
|
### v0.48.1
|
|
251
|
+
|
|
221
252
|
- [#1056](https://github.com/opencomponents/oc/pull/1056) Added the support for changing the post request payload size
|
|
222
253
|
- [#1055](https://github.com/opencomponents/oc/pull/1055) Update husky in package.json from 2.4.0 to 2.4.1
|
|
223
254
|
- [#1057](https://github.com/opencomponents/oc/pull/1057) Update lint-staged in package.json from 8.2.0 to 8.2.1
|
|
@@ -225,11 +256,13 @@
|
|
|
225
256
|
- [#1052](https://github.com/opencomponents/oc/pull/1052) Update husky in package.json from 2.3.0 to 2.4.0
|
|
226
257
|
|
|
227
258
|
### v0.48.0
|
|
259
|
+
|
|
228
260
|
- [#1051](https://github.com/opencomponents/oc/pull/1051) Update oc-template-jade-compiler in package.json from 6.2.7 to 7.0.0
|
|
229
261
|
- [#1050](https://github.com/opencomponents/oc/pull/1050) Update oc-template-jade in package.json from 6.0.13 to 7.0.0
|
|
230
262
|
- [#1049](https://github.com/opencomponents/oc/pull/1049) Update oc-template-es6-compiler in package.json from 1.1.6 to 1.1.7
|
|
231
263
|
|
|
232
264
|
### v0.47.1
|
|
265
|
+
|
|
233
266
|
- [#1048](https://github.com/opencomponents/oc/pull/1048) Update semver in package.json from 6.1.0 to 6.1.1
|
|
234
267
|
- [#1047](https://github.com/opencomponents/oc/pull/1047) Update oc-template-jade-compiler in package.json from 6.2.6 to 6.2.7
|
|
235
268
|
- [#1045](https://github.com/opencomponents/oc/pull/1045) Update oc-client in package.json from 3.2.5 to 3.2.6
|
|
@@ -247,6 +280,7 @@
|
|
|
247
280
|
- [#1029](https://github.com/opencomponents/oc/pull/1029) Update husky in package.json from 2.1.0 to 2.2.0
|
|
248
281
|
|
|
249
282
|
### v0.47.0
|
|
283
|
+
|
|
250
284
|
- [#1024](https://github.com/opencomponents/oc/pull/1024) set headers for getComponents
|
|
251
285
|
- [#1028](https://github.com/opencomponents/oc/pull/1028) Update body-parser in package.json from 1.18.3 to 1.19.0
|
|
252
286
|
- [#1027](https://github.com/opencomponents/oc/pull/1027) Update husky in package.json from 1.3.1 to 2.1.0
|
|
@@ -260,6 +294,7 @@
|
|
|
260
294
|
- [#1015](https://github.com/opencomponents/oc/pull/1015) Update sinon in package.json from 7.3.0 to 7.3.1
|
|
261
295
|
|
|
262
296
|
### v0.46.0
|
|
297
|
+
|
|
263
298
|
- [#1013](https://github.com/opencomponents/oc/pull/1013) Update oc-client in package.json from 3.2.4 to 3.2.5
|
|
264
299
|
- [#1012](https://github.com/opencomponents/oc/pull/1012) Remove support for node 6
|
|
265
300
|
- [#1010](https://github.com/opencomponents/oc/pull/1010) Update serialize-error in package.json from 3.0.0 to 4.0.0
|
|
@@ -274,9 +309,11 @@
|
|
|
274
309
|
- [#1002](https://github.com/opencomponents/oc/pull/1002) Update mocha in package.json from 6.0.0 to 6.0.1
|
|
275
310
|
|
|
276
311
|
### v0.45.4
|
|
312
|
+
|
|
277
313
|
- [#1001](https://github.com/opencomponents/oc/pull/1001) [Snyk] Fix for 1 vulnerable dependencies
|
|
278
314
|
|
|
279
315
|
### v0.45.3
|
|
316
|
+
|
|
280
317
|
- [#1000](https://github.com/opencomponents/oc/pull/1000) [Snyk] Fix for 1 vulnerable dependencies
|
|
281
318
|
- [#997](https://github.com/opencomponents/oc/pull/997) Update yargs in package.json from 13.2.0 to 13.2.1
|
|
282
319
|
- [#999](https://github.com/opencomponents/oc/pull/999) Update sinon in package.json from 7.2.3 to 7.2.4
|
|
@@ -292,6 +329,7 @@
|
|
|
292
329
|
- [#986](https://github.com/opencomponents/oc/pull/986) Update husky in package.json from 1.3.0 to 1.3.1
|
|
293
330
|
|
|
294
331
|
### v0.45.2
|
|
332
|
+
|
|
295
333
|
- [#983](https://github.com/opencomponents/oc/pull/983) Update oc-template-handlebars-compiler in package.json from 6.2.4 to 6.2.6
|
|
296
334
|
- [#985](https://github.com/opencomponents/oc/pull/985) Update oc-template-jade-compiler in package.json from 6.2.4 to 6.2.6
|
|
297
335
|
- [#984](https://github.com/opencomponents/oc/pull/984) Update oc-template-es6-compiler in package.json from 1.1.3 to 1.1.5
|
|
@@ -303,6 +341,7 @@
|
|
|
303
341
|
- [#973](https://github.com/opencomponents/oc/pull/973) Update colors in package.json from 1.3.2 to 1.3.3
|
|
304
342
|
|
|
305
343
|
### v0.45.1
|
|
344
|
+
|
|
306
345
|
- [#971](https://github.com/opencomponents/oc/pull/971) oc package now is able to reuse modules in component path
|
|
307
346
|
- [#951](https://github.com/opencomponents/oc/pull/951) Update form-data in package.json from 2.3.2 to 2.3.3
|
|
308
347
|
- [#970](https://github.com/opencomponents/oc/pull/970) Update lint-staged in package.json from 8.0.5 to 8.1.0
|
|
@@ -322,6 +361,7 @@
|
|
|
322
361
|
- [#947](https://github.com/opencomponents/oc/pull/947) Update express in package.json from 4.16.3 to 4.16.4
|
|
323
362
|
|
|
324
363
|
### v0.45.0
|
|
364
|
+
|
|
325
365
|
- [#941](https://github.com/opencomponents/oc/pull/941) [Suggestion] Handling relative path when initiating component
|
|
326
366
|
- [#944](https://github.com/opencomponents/oc/pull/944) Update sinon in package.json from 6.3.4 to 6.3.5
|
|
327
367
|
- [#945](https://github.com/opencomponents/oc/pull/945) Update husky in package.json from 1.0.1 to 1.1.1
|
|
@@ -330,6 +370,7 @@
|
|
|
330
370
|
- [#939](https://github.com/opencomponents/oc/pull/939) Update chai in package.json from 4.1.2 to 4.2.0
|
|
331
371
|
|
|
332
372
|
### v0.44.13
|
|
373
|
+
|
|
333
374
|
- [#933](https://github.com/opencomponents/oc/pull/933) Update morgan in package.json from 1.9.0 to 1.9.1
|
|
334
375
|
- [#926](https://github.com/opencomponents/oc/pull/926) Update dependency-graph in package.json from 0.7.1 to 0.7.2
|
|
335
376
|
- [#937](https://github.com/opencomponents/oc/pull/937) Update opn in package.json from 5.3.0 to 5.4.0
|
|
@@ -345,6 +386,7 @@
|
|
|
345
386
|
- [#916](https://github.com/opencomponents/oc/pull/916) Update oc-s3-storage-adapter in package.json from 1.1.2 to 1.1.3
|
|
346
387
|
|
|
347
388
|
### v0.44.12
|
|
389
|
+
|
|
348
390
|
- [#915](https://github.com/opencomponents/oc/pull/915) Update oc-storage-adapters-utils in package.json from 1.0.2 to 1.0.3
|
|
349
391
|
- [#914](https://github.com/opencomponents/oc/pull/914) Update sinon in package.json from 6.1.0 to 6.1.3
|
|
350
392
|
- [#910](https://github.com/opencomponents/oc/pull/910) Update yargs in package.json from ^11.0.0 to 12.0.1
|
|
@@ -354,9 +396,11 @@
|
|
|
354
396
|
- [#905](https://github.com/opencomponents/oc/pull/905) Update sinon in package.json from ^5.0.10 to 6.0.0
|
|
355
397
|
|
|
356
398
|
### v0.44.11
|
|
399
|
+
|
|
357
400
|
- [#904](https://github.com/opencomponents/oc/pull/904) Upgrade deps
|
|
358
401
|
|
|
359
402
|
### v0.44.10
|
|
403
|
+
|
|
360
404
|
- [#902](https://github.com/opencomponents/oc/pull/902) Update oc-client in package.json from 3.2.0 to 3.2.1
|
|
361
405
|
- [#895](https://github.com/opencomponents/oc/pull/895) Update chai in package.json from 3.5.0 to 4.1.2
|
|
362
406
|
- [#903](https://github.com/opencomponents/oc/pull/903) Update oc-client-browser in package.json from 1.3.2 to 1.3.3
|
|
@@ -365,9 +409,11 @@
|
|
|
365
409
|
- [#900](https://github.com/opencomponents/oc/pull/900) Update oc-client in package.json from 3.1.0 to 3.2.0
|
|
366
410
|
|
|
367
411
|
### v0.44.9
|
|
412
|
+
|
|
368
413
|
- [#897](https://github.com/opencomponents/oc/pull/897) [DX-515] Async waterfall was calling the wrong callback
|
|
369
414
|
|
|
370
415
|
### v0.44.8
|
|
416
|
+
|
|
371
417
|
- [#896](https://github.com/opencomponents/oc/pull/896) Update compilers
|
|
372
418
|
- [#891](https://github.com/opencomponents/oc/pull/891) Update oc-client-browser in package.json from 1.3.1 to 1.3.2
|
|
373
419
|
- [#890](https://github.com/opencomponents/oc/pull/890) Update fs-extra in package.json from 6.0.0 to 6.0.1
|
|
@@ -375,12 +421,15 @@
|
|
|
375
421
|
- [#888](https://github.com/opencomponents/oc/pull/888) Switch from Greenkeeper to dependencies.io
|
|
376
422
|
|
|
377
423
|
### v0.44.7
|
|
424
|
+
|
|
378
425
|
- [#885](https://github.com/opencomponents/oc/pull/885) Add .idea/ in files patterns to ignore
|
|
379
426
|
|
|
380
427
|
### v0.44.6
|
|
428
|
+
|
|
381
429
|
- [#886](https://github.com/opencomponents/oc/pull/886) Lock broken version of es6-compiler
|
|
382
430
|
|
|
383
431
|
### v0.44.5
|
|
432
|
+
|
|
384
433
|
- [#881](https://github.com/opencomponents/oc/pull/881) chore(package): update sinon to version 5.0.10
|
|
385
434
|
- [#884](https://github.com/opencomponents/oc/pull/884) ensuring trailing slash to the registry url before removing
|
|
386
435
|
- [#882](https://github.com/opencomponents/oc/pull/882) Update builtin-modules to the latest version 🚀
|
|
@@ -389,32 +438,39 @@
|
|
|
389
438
|
- [#877](https://github.com/opencomponents/oc/pull/877) UI bugfix
|
|
390
439
|
|
|
391
440
|
### v0.44.4
|
|
441
|
+
|
|
392
442
|
- [#875](https://github.com/opencomponents/oc/pull/875) [DX-502] Add templates info into OC UI
|
|
393
443
|
- [#874](https://github.com/opencomponents/oc/pull/874) Update body-parser to the latest version 🚀
|
|
394
444
|
|
|
395
445
|
### v0.44.3
|
|
446
|
+
|
|
396
447
|
- [#872](https://github.com/opencomponents/oc/pull/872) [DX-497] OC Clean
|
|
397
448
|
- [#871](https://github.com/opencomponents/oc/pull/871) [DX-467] Legacy cleanup Part I
|
|
398
449
|
- [#869](https://github.com/opencomponents/oc/pull/869) [DX-496] Fix port allocation for liveReload
|
|
399
450
|
- [#870](https://github.com/opencomponents/oc/pull/870) Update fs-extra to the latest version 🚀
|
|
400
451
|
|
|
401
452
|
### v0.44.2
|
|
453
|
+
|
|
402
454
|
- [#868](https://github.com/opencomponents/oc/pull/868) Live reload to work in dev only when hotReloading flag is on
|
|
403
455
|
- [#867](https://github.com/opencomponents/oc/pull/867) Fix git script
|
|
404
456
|
|
|
405
457
|
### v0.44.1
|
|
458
|
+
|
|
406
459
|
- [#864](https://github.com/opencomponents/oc/pull/864) [DX-467] Remove Pug dependency from the UI
|
|
407
460
|
- [#865](https://github.com/opencomponents/oc/pull/865) Integrate CI to modern node versions
|
|
408
461
|
- [#866](https://github.com/opencomponents/oc/pull/866) Update colors to the latest version 🚀
|
|
409
462
|
|
|
410
463
|
### v0.44.0
|
|
464
|
+
|
|
411
465
|
- [#862](https://github.com/opencomponents/oc/pull/862) [DX-467] Add ES6 template as default core template
|
|
412
466
|
- [#863](https://github.com/opencomponents/oc/pull/863) Update oc-client to the latest version 🚀
|
|
413
467
|
|
|
414
468
|
### v0.43.2
|
|
469
|
+
|
|
415
470
|
- [#861](https://github.com/opencomponents/oc/pull/861) Housekeeping
|
|
416
471
|
|
|
417
472
|
### v0.43.0
|
|
473
|
+
|
|
418
474
|
- [#852](https://github.com/opencomponents/oc/pull/852) [DX-412] Empty response setter on context
|
|
419
475
|
- [#860](https://github.com/opencomponents/oc/pull/860) Housekeeping
|
|
420
476
|
- [#859](https://github.com/opencomponents/oc/pull/859) Update oc-client to the latest version 🚀
|
|
@@ -443,22 +499,27 @@
|
|
|
443
499
|
- [#830](https://github.com/opencomponents/oc/pull/830) Update form-data to the latest version 🚀
|
|
444
500
|
|
|
445
501
|
### v0.42.26
|
|
502
|
+
|
|
446
503
|
- [#829](https://github.com/opencomponents/oc/pull/829) Added author to components list view and author filter
|
|
447
504
|
|
|
448
505
|
### v0.42.25
|
|
506
|
+
|
|
449
507
|
- [#828](https://github.com/opencomponents/oc/pull/828) Update oc-client to the latest version 🚀
|
|
450
508
|
- [#827](https://github.com/opencomponents/oc/pull/827) Update oc-client-browser to the latest version 🚀
|
|
451
509
|
- [#826](https://github.com/opencomponents/oc/pull/826) Update oc-client to the latest version 🚀
|
|
452
510
|
|
|
453
511
|
### v0.42.24
|
|
512
|
+
|
|
454
513
|
- [#825](https://github.com/opencomponents/oc/pull/825) [DX-385] Add sourcemaps to server.js during dev, add path to node's vm
|
|
455
514
|
|
|
456
515
|
### v0.42.21
|
|
516
|
+
|
|
457
517
|
- [#823](https://github.com/opencomponents/oc/pull/823) [DX-390] Fix protocol sanitization
|
|
458
518
|
- [#822](https://github.com/opencomponents/oc/pull/822) logo-type
|
|
459
519
|
- [#821](https://github.com/opencomponents/oc/pull/821) Node builds matrix
|
|
460
520
|
|
|
461
521
|
### v0.42.20
|
|
522
|
+
|
|
462
523
|
- [#820](https://github.com/opencomponents/oc/pull/820) [DX-353] Serialize exception
|
|
463
524
|
- [#818](https://github.com/opencomponents/oc/pull/818) Update oc-s3-storage-adapter to the latest version 🚀
|
|
464
525
|
- [#816](https://github.com/opencomponents/oc/pull/816) updated logo asset
|
|
@@ -466,13 +527,16 @@
|
|
|
466
527
|
- [#814](https://github.com/opencomponents/oc/pull/814) Update dependencies to enable Greenkeeper 🌴
|
|
467
528
|
|
|
468
529
|
### v0.42.19
|
|
469
|
-
|
|
530
|
+
|
|
531
|
+
- [#813](https://github.com/opencomponents/oc/pull/813) [DX-366] Allow usage of protocol in storage.options.path
|
|
470
532
|
- [#812](https://github.com/opencomponents/oc/pull/812) Update oc-s3-storage-adapter to the latest version 🚀
|
|
471
533
|
|
|
472
534
|
### v0.42.18
|
|
535
|
+
|
|
473
536
|
- [#811](https://github.com/opencomponents/oc/pull/811) [DX-363] Registry conf.env sanitizer
|
|
474
537
|
|
|
475
538
|
### v0.42.17
|
|
539
|
+
|
|
476
540
|
- [#810](https://github.com/opencomponents/oc/pull/810) [DX-270] Async update
|
|
477
541
|
- [#809](https://github.com/opencomponents/oc/pull/809) fix(package): update cross-spawn to version 6.0.3
|
|
478
542
|
- [#806](https://github.com/opencomponents/oc/pull/806) Update minimal-request to the latest version 🚀
|
|
@@ -482,16 +546,20 @@
|
|
|
482
546
|
- [#801](https://github.com/opencomponents/oc/pull/801) Update opn to the latest version 🚀
|
|
483
547
|
|
|
484
548
|
### v0.42.16
|
|
549
|
+
|
|
485
550
|
- [#792](https://github.com/opencomponents/oc/pull/792) Add test for issue #789 showing error message [Object object]
|
|
486
551
|
|
|
487
552
|
### v0.42.15
|
|
553
|
+
|
|
488
554
|
- [#798](https://github.com/opencomponents/oc/pull/798) Update oc-client to the latest version 🚀
|
|
489
555
|
- [#797](https://github.com/opencomponents/oc/pull/797) Update oc-client-browser to the latest version 🚀
|
|
490
556
|
|
|
491
557
|
### v0.42.14
|
|
492
|
-
|
|
558
|
+
|
|
559
|
+
- [#795](https://github.com/opencomponents/oc/pull/795) [DX-324] full async plugins initialisation
|
|
493
560
|
|
|
494
561
|
### v0.42.13
|
|
562
|
+
|
|
495
563
|
- [#794](https://github.com/opencomponents/oc/pull/794) [DX-296] Mocks can have the same signature as real plugins
|
|
496
564
|
- [#793](https://github.com/opencomponents/oc/pull/793) Update oc-s3-storage-adapter to the latest version 🚀
|
|
497
565
|
- [#790](https://github.com/opencomponents/oc/pull/790) Update oc-template-jade-compiler to the latest version 🚀
|
|
@@ -499,6 +567,7 @@
|
|
|
499
567
|
- [#788](https://github.com/opencomponents/oc/pull/788) Update fs-extra to the latest version 🚀
|
|
500
568
|
|
|
501
569
|
### v0.42.12
|
|
570
|
+
|
|
502
571
|
- [#786](https://github.com/opencomponents/oc/pull/786) Update oc-template-handlebars-compiler to the latest version 🚀
|
|
503
572
|
- [#787](https://github.com/opencomponents/oc/pull/787) Update oc-template-jade-compiler to the latest version 🚀
|
|
504
573
|
- [#785](https://github.com/opencomponents/oc/pull/785) Update oc-client to the latest version 🚀
|
|
@@ -508,34 +577,42 @@
|
|
|
508
577
|
- [#781](https://github.com/opencomponents/oc/pull/781) Update fs-extra to the latest version 🚀
|
|
509
578
|
|
|
510
579
|
### v0.42.10
|
|
580
|
+
|
|
511
581
|
- [#775](https://github.com/opencomponents/oc/pull/775) Add github issue/PR templates
|
|
512
582
|
- [#780](https://github.com/opencomponents/oc/pull/780) Update oc-client to the latest version 🚀
|
|
513
583
|
- [#779](https://github.com/opencomponents/oc/pull/779) Update oc-client-browser to the latest version 🚀
|
|
514
584
|
- [#776](https://github.com/opencomponents/oc/pull/776) Update lint-staged to the latest version 🚀
|
|
515
585
|
|
|
516
586
|
### v0.42.7
|
|
587
|
+
|
|
517
588
|
- [#778](https://github.com/opencomponents/oc/pull/778) Update oc-client to the latest version 🚀
|
|
518
589
|
- [#777](https://github.com/opencomponents/oc/pull/777) Update oc-client-browser to the latest version 🚀
|
|
519
590
|
|
|
520
591
|
### v0.42.6
|
|
592
|
+
|
|
521
593
|
- [#774](https://github.com/opencomponents/oc/pull/774) logger.fail bugfix
|
|
522
594
|
|
|
523
595
|
### v0.42.5
|
|
596
|
+
|
|
524
597
|
- [#773](https://github.com/opencomponents/oc/pull/773) [DX-283] Dependencies handler on packaging
|
|
525
598
|
|
|
526
599
|
### v0.42.4
|
|
600
|
+
|
|
527
601
|
- [#772](https://github.com/opencomponents/oc/pull/772) Update oc-client to the latest version 🚀
|
|
528
602
|
- [#771](https://github.com/opencomponents/oc/pull/771) [DX-277] Pass the templates down to the client via the registry
|
|
529
603
|
- [#770](https://github.com/opencomponents/oc/pull/770) Update oc-client-browser to the latest version 🚀
|
|
530
604
|
|
|
531
605
|
### v0.42.3
|
|
606
|
+
|
|
532
607
|
- [#768](https://github.com/opencomponents/oc/pull/768) [DX-247] dev/publish cli mode - prevent some deps to run in an infinite loop
|
|
533
608
|
|
|
534
609
|
### v0.42.2
|
|
610
|
+
|
|
535
611
|
- [#757](https://github.com/opencomponents/oc/pull/757) [DX-260] s3 storage adapter
|
|
536
612
|
- [#767](https://github.com/opencomponents/oc/pull/767) Update oc-client to the latest version 🚀
|
|
537
613
|
|
|
538
614
|
### v0.42.1
|
|
615
|
+
|
|
539
616
|
- [#765](https://github.com/opencomponents/oc/pull/765) Update oc-template-handlebars-compiler to the latest version 🚀
|
|
540
617
|
- [#766](https://github.com/opencomponents/oc/pull/766) Update oc-template-jade-compiler to the latest version 🚀
|
|
541
618
|
- [#763](https://github.com/opencomponents/oc/pull/763) passing prefix option to dev cmd
|
|
@@ -556,6 +633,7 @@
|
|
|
556
633
|
- [#746](https://github.com/opencomponents/oc/pull/746) Update oc-template-handlebars to the latest version 🚀
|
|
557
634
|
|
|
558
635
|
### v0.42.0
|
|
636
|
+
|
|
559
637
|
- [#745](https://github.com/opencomponents/oc/pull/745) Update oc-client to the latest version 🚀
|
|
560
638
|
- [#744](https://github.com/opencomponents/oc/pull/744) Update oc-template-handlebars to the latest version 🚀
|
|
561
639
|
- [#743](https://github.com/opencomponents/oc/pull/743) Update aws-sdk to the latest version 🚀
|
|
@@ -567,19 +645,23 @@
|
|
|
567
645
|
- [#734](https://github.com/opencomponents/oc/pull/734) Update aws-sdk to the latest version 🚀
|
|
568
646
|
|
|
569
647
|
### v0.41.16
|
|
648
|
+
|
|
570
649
|
- [#733](https://github.com/opencomponents/oc/pull/733) Repackage all components when file is outside component dir
|
|
571
650
|
- [#732](https://github.com/opencomponents/oc/pull/732) Prettify all the things
|
|
572
651
|
- [#731](https://github.com/opencomponents/oc/pull/731) this-less cleanup
|
|
573
652
|
- [#729](https://github.com/opencomponents/oc/pull/729) Update aws-sdk to the latest version 🚀
|
|
574
653
|
|
|
575
654
|
### v0.41.15
|
|
655
|
+
|
|
576
656
|
- [#710](https://github.com/opencomponents/oc/pull/710) [DX-185] install compiler inside each components' dir
|
|
577
657
|
|
|
578
658
|
### v0.41.14
|
|
659
|
+
|
|
579
660
|
- [#728](https://github.com/opencomponents/oc/pull/728) [DX-226] ]Minimal css for the preview view
|
|
580
661
|
- [#727](https://github.com/opencomponents/oc/pull/727) Update aws-sdk to the latest version 🚀
|
|
581
662
|
|
|
582
663
|
### v0.41.13
|
|
664
|
+
|
|
583
665
|
- [#725](https://github.com/opencomponents/oc/pull/725) [DX-221] Removing two clones
|
|
584
666
|
- [#724](https://github.com/opencomponents/oc/pull/724) Update aws-sdk to the latest version 🚀
|
|
585
667
|
- [#723](https://github.com/opencomponents/oc/pull/723) Update aws-sdk to the latest version 🚀
|
|
@@ -598,6 +680,7 @@
|
|
|
598
680
|
- [#709](https://github.com/opencomponents/oc/pull/709) Update aws-sdk to the latest version 🚀
|
|
599
681
|
|
|
600
682
|
### v0.41.12
|
|
683
|
+
|
|
601
684
|
- [#708](https://github.com/opencomponents/oc/pull/708) Update oc-client to the latest version 🚀
|
|
602
685
|
- [#707](https://github.com/opencomponents/oc/pull/707) Update oc-client-browser to the latest version 🚀
|
|
603
686
|
- [#706](https://github.com/opencomponents/oc/pull/706) Update oc-client-browser to the latest version 🚀
|
|
@@ -606,21 +689,25 @@
|
|
|
606
689
|
- [#659](https://github.com/opencomponents/oc/pull/659) Issue #464: Replaces Grunt with NPM scripts
|
|
607
690
|
|
|
608
691
|
### v0.41.11
|
|
692
|
+
|
|
609
693
|
- [#703](https://github.com/opencomponents/oc/pull/703) Infinite npm i loop fix
|
|
610
694
|
- [#702](https://github.com/opencomponents/oc/pull/702) Update dependency-graph to the latest version 🚀
|
|
611
695
|
- [#701](https://github.com/opencomponents/oc/pull/701) Update aws-sdk to the latest version 🚀
|
|
612
696
|
|
|
613
697
|
### v0.41.10
|
|
698
|
+
|
|
614
699
|
- [#700](https://github.com/opencomponents/oc/pull/700) Error publish
|
|
615
700
|
- [#699](https://github.com/opencomponents/oc/pull/699) Meaningful error shown when publish fails due to a generic API error
|
|
616
701
|
- [#695](https://github.com/opencomponents/oc/pull/695) Update aws-sdk to the latest version 🚀
|
|
617
702
|
- [#688](https://github.com/opencomponents/oc/pull/688) Decouple s3
|
|
618
703
|
|
|
619
704
|
### v0.41.9
|
|
705
|
+
|
|
620
706
|
- [#693](https://github.com/opencomponents/oc/pull/693) [DX-198] Watch .github.io folders
|
|
621
707
|
- [#694](https://github.com/opencomponents/oc/pull/694) Npm install for new module bugfix
|
|
622
708
|
|
|
623
709
|
### v0.41.8
|
|
710
|
+
|
|
624
711
|
- [#692](https://github.com/opencomponents/oc/pull/692) [DX-197] Watcher bugfix
|
|
625
712
|
- [#690](https://github.com/opencomponents/oc/pull/690) Update aws-sdk to the latest version 🚀
|
|
626
713
|
- [#689](https://github.com/opencomponents/oc/pull/689) ignoring lock files
|
|
@@ -631,6 +718,7 @@
|
|
|
631
718
|
- [#684](https://github.com/opencomponents/oc/pull/684) Update mocha to the latest version 🚀
|
|
632
719
|
|
|
633
720
|
### v0.41.7
|
|
721
|
+
|
|
634
722
|
- [#679](https://github.com/opencomponents/oc/pull/679) [Snyk Update] New fixes for 2 vulnerable dependency paths
|
|
635
723
|
- [#678](https://github.com/opencomponents/oc/pull/678) Update aws-sdk to the latest version 🚀
|
|
636
724
|
- [#677](https://github.com/opencomponents/oc/pull/677) Update aws-sdk to the latest version 🚀
|
|
@@ -640,6 +728,7 @@
|
|
|
640
728
|
- [#676](https://github.com/opencomponents/oc/pull/676) Update oc-template-jade to the latest version 🚀
|
|
641
729
|
|
|
642
730
|
### v0.41.6
|
|
731
|
+
|
|
643
732
|
- [#672](https://github.com/opencomponents/oc/pull/672) Update oc-client to the latest version 🚀
|
|
644
733
|
- [#670](https://github.com/opencomponents/oc/pull/670) Update morgan to the latest version 🚀
|
|
645
734
|
- [#671](https://github.com/opencomponents/oc/pull/671) Update oc-template-jade to the latest version 🚀
|
|
@@ -652,6 +741,7 @@
|
|
|
652
741
|
- [#661](https://github.com/opencomponents/oc/pull/661) Update aws-sdk to the latest version 🚀
|
|
653
742
|
|
|
654
743
|
### v0.41.5
|
|
744
|
+
|
|
655
745
|
- [#658](https://github.com/opencomponents/oc/pull/658) Update aws-sdk to the latest version 🚀
|
|
656
746
|
- [#655](https://github.com/opencomponents/oc/pull/655) fix(package): update oc-template-jade-compiler to version 6.1.1
|
|
657
747
|
- [#656](https://github.com/opencomponents/oc/pull/656) fix(package): update oc-template-handlebars-compiler to version 6.1.1
|
|
@@ -667,6 +757,7 @@
|
|
|
667
757
|
- [#643](https://github.com/opencomponents/oc/pull/643) Update oc-client to the latest version 🚀
|
|
668
758
|
|
|
669
759
|
### v0.41.4
|
|
760
|
+
|
|
670
761
|
- [#632](https://github.com/opencomponents/oc/pull/632) Improve watching for Dev registry
|
|
671
762
|
- [#641](https://github.com/opencomponents/oc/pull/641) Update aws-sdk to the latest version 🚀
|
|
672
763
|
- [#635](https://github.com/opencomponents/oc/pull/635) liveReload
|
|
@@ -675,6 +766,7 @@
|
|
|
675
766
|
- [#638](https://github.com/opencomponents/oc/pull/638) Update aws-sdk to the latest version 🚀
|
|
676
767
|
|
|
677
768
|
### v0.41.3
|
|
769
|
+
|
|
678
770
|
- [#640](https://github.com/opencomponents/oc/pull/640) Update oc-client to the latest version 🚀
|
|
679
771
|
- [#636](https://github.com/opencomponents/oc/pull/636) Update aws-sdk to the latest version 🚀
|
|
680
772
|
- [#634](https://github.com/opencomponents/oc/pull/634) Update body-parser to the latest version 🚀
|
|
@@ -685,29 +777,36 @@
|
|
|
685
777
|
- [#628](https://github.com/opencomponents/oc/pull/628) Update aws-sdk to the latest version 🚀
|
|
686
778
|
|
|
687
779
|
### v0.41.2
|
|
780
|
+
|
|
688
781
|
- [#626](https://github.com/opencomponents/oc/pull/626) Update oc-client
|
|
689
782
|
- [#625](https://github.com/opencomponents/oc/pull/625) Update oc-client-browser
|
|
690
783
|
- [#624](https://github.com/opencomponents/oc/pull/624) inititalzie the dev registry with the dynamic require templatee
|
|
691
784
|
|
|
692
785
|
### v0.41.1
|
|
786
|
+
|
|
693
787
|
- [#619](https://github.com/opencomponents/oc/pull/619) Issue #618 : Accessing s3 bucket over a proxy from oc-registry
|
|
694
788
|
- [#621](https://github.com/opencomponents/oc/pull/621) Update aws-sdk to the latest version 🚀
|
|
695
789
|
- [#620](https://github.com/opencomponents/oc/pull/620) Update dependencies to enable Greenkeeper 🌴
|
|
696
790
|
|
|
697
791
|
### v0.41.0
|
|
792
|
+
|
|
698
793
|
- [#617](https://github.com/opencomponents/oc/pull/617) [OC-140] Declarative templates initialisation on a registry level
|
|
699
794
|
- [#613](https://github.com/opencomponents/oc/pull/613) Pass option to the compiler for targeting specific build process
|
|
700
795
|
|
|
701
796
|
### v0.40.10
|
|
797
|
+
|
|
702
798
|
- [#616](https://github.com/opencomponents/oc/pull/616) [OC-93] Update oc-client
|
|
703
799
|
|
|
704
800
|
### v0.40.9
|
|
801
|
+
|
|
705
802
|
- [#615](https://github.com/opencomponents/oc/pull/615) [OC-93] Update oc-client
|
|
706
803
|
|
|
707
804
|
### v0.40.8
|
|
805
|
+
|
|
708
806
|
- [#612](https://github.com/opencomponents/oc/pull/612) [OC-127] Fix templates breaking change
|
|
709
807
|
|
|
710
808
|
### v0.40.7
|
|
809
|
+
|
|
711
810
|
- [#605](https://github.com/opencomponents/oc/pull/605) [OC-102] Return rendered version if client doesn't support
|
|
712
811
|
- [#610](https://github.com/opencomponents/oc/pull/610) Update oc-client to the latest version 🚀
|
|
713
812
|
- [#608](https://github.com/opencomponents/oc/pull/608) Update oc-template-handlebars-compiler to the latest version 🚀
|
|
@@ -717,27 +816,33 @@
|
|
|
717
816
|
- [#606](https://github.com/opencomponents/oc/pull/606) Update aws-sdk to the latest version 🚀
|
|
718
817
|
|
|
719
818
|
### v0.40.6
|
|
819
|
+
|
|
720
820
|
- [#595](https://github.com/opencomponents/oc/pull/595) Add ability to disable watching on local dev registry
|
|
721
821
|
- [#603](https://github.com/opencomponents/oc/pull/603) Update aws-sdk to the latest version 🚀
|
|
722
822
|
- [#597](https://github.com/opencomponents/oc/pull/597) [OC-120] Registry webUI: preview route/view bug
|
|
723
823
|
|
|
724
824
|
### v0.40.5
|
|
825
|
+
|
|
725
826
|
- [#601](https://github.com/opencomponents/oc/pull/601) Update aws-sdk to the latest version 🚀
|
|
726
827
|
|
|
727
828
|
### v0.40.4
|
|
829
|
+
|
|
728
830
|
- [#602](https://github.com/opencomponents/oc/pull/602) Update oc-client to the latest version 🚀
|
|
729
831
|
|
|
730
832
|
### v0.40.3
|
|
833
|
+
|
|
731
834
|
- [#600](https://github.com/opencomponents/oc/pull/600) Update oc-client-browser to the latest version 🚀
|
|
732
835
|
- [#599](https://github.com/opencomponents/oc/pull/599) Update aws-sdk to the latest version 🚀
|
|
733
836
|
- [#594](https://github.com/opencomponents/oc/pull/594) Update sinon to the latest version 🚀
|
|
734
837
|
|
|
735
838
|
### v0.40.2
|
|
839
|
+
|
|
736
840
|
- [#592](https://github.com/opencomponents/oc/pull/592) [OC-103]
|
|
737
841
|
- [#590](https://github.com/opencomponents/oc/pull/590) Update aws-sdk to the latest version 🚀
|
|
738
842
|
- [#589](https://github.com/opencomponents/oc/pull/589) Add viewport meta tag to component preview
|
|
739
843
|
|
|
740
844
|
### v0.40.1
|
|
845
|
+
|
|
741
846
|
- [#588](https://github.com/opencomponents/oc/pull/588) [OC-87] publish with the new template system
|
|
742
847
|
- [#587](https://github.com/opencomponents/oc/pull/587) Update pug to the latest version 🚀
|
|
743
848
|
- [#586](https://github.com/opencomponents/oc/pull/586) Update aws-sdk to the latest version 🚀
|
|
@@ -745,10 +850,12 @@
|
|
|
745
850
|
- [#584](https://github.com/opencomponents/oc/pull/584) Update accept-language-parser to the latest version 🚀
|
|
746
851
|
|
|
747
852
|
### v0.40.0
|
|
853
|
+
|
|
748
854
|
- [#583](https://github.com/opencomponents/oc/pull/583) Saner registry default for config.discovery
|
|
749
855
|
- [#581](https://github.com/opencomponents/oc/pull/581) [OC-79] Housekeeping
|
|
750
856
|
|
|
751
857
|
### v0.39.8
|
|
858
|
+
|
|
752
859
|
- [#580](https://github.com/opencomponents/oc/pull/580) [OC-86] Logging href, renderMode on the component-retrieved events
|
|
753
860
|
- [#578](https://github.com/opencomponents/oc/pull/578) Update oc-template-handlebars-compiler to the latest version 🚀
|
|
754
861
|
- [#579](https://github.com/opencomponents/oc/pull/579) Update oc-template-jade-compiler to the latest version 🚀
|
|
@@ -756,10 +863,12 @@
|
|
|
756
863
|
- [#576](https://github.com/opencomponents/oc/pull/576) Update aws-sdk to the latest version 🚀
|
|
757
864
|
|
|
758
865
|
### v0.39.7
|
|
866
|
+
|
|
759
867
|
- [#480](https://github.com/opencomponents/oc/pull/480) [OC-28] Cli init allows for --templateType to be npm module
|
|
760
868
|
- [#575](https://github.com/opencomponents/oc/pull/575) Update CONTRIBUTING.md
|
|
761
869
|
|
|
762
870
|
### v0.39.6
|
|
871
|
+
|
|
763
872
|
- [#566](https://github.com/opencomponents/oc/pull/566) [OC-9] Components history seems to have wrong dates
|
|
764
873
|
- [#574](https://github.com/opencomponents/oc/pull/574) fix(package): update semver to version 5.4.1
|
|
765
874
|
- [#570](https://github.com/opencomponents/oc/pull/570) Update oc-template-handlebars to the latest version 🚀
|
|
@@ -768,9 +877,11 @@
|
|
|
768
877
|
- [#573](https://github.com/opencomponents/oc/pull/573) Update aws-sdk to the latest version 🚀
|
|
769
878
|
|
|
770
879
|
### v0.39.5
|
|
880
|
+
|
|
771
881
|
- [#569](https://github.com/opencomponents/oc/pull/569) Validation fix
|
|
772
882
|
|
|
773
883
|
### v0.39.4
|
|
884
|
+
|
|
774
885
|
- [#568](https://github.com/opencomponents/oc/pull/568) Update aws-sdk to the latest version 🚀
|
|
775
886
|
- [#565](https://github.com/opencomponents/oc/pull/565) Housekeeping
|
|
776
887
|
- [#564](https://github.com/opencomponents/oc/pull/564) Removed uglify-js
|
|
@@ -780,11 +891,13 @@
|
|
|
780
891
|
- [#558](https://github.com/opencomponents/oc/pull/558) Update aws-sdk to the latest version 🚀
|
|
781
892
|
|
|
782
893
|
### v0.39.3
|
|
894
|
+
|
|
783
895
|
- [#557](https://github.com/opencomponents/oc/pull/557) [OC-75] Add status to the component-retrieved event log
|
|
784
896
|
- [#555](https://github.com/opencomponents/oc/pull/555) Update aws-sdk to the latest version 🚀
|
|
785
897
|
- [#554](https://github.com/opencomponents/oc/pull/554) Update aws-sdk to the latest version 🚀
|
|
786
898
|
|
|
787
899
|
### v0.39.2
|
|
900
|
+
|
|
788
901
|
- [#552](https://github.com/opencomponents/oc/pull/552) remove .Only from tests
|
|
789
902
|
- [#550](https://github.com/opencomponents/oc/pull/550) Update uglify-js to the latest version 🚀
|
|
790
903
|
- [#551](https://github.com/opencomponents/oc/pull/551) Update lint-staged to the latest version 🚀
|
|
@@ -795,109 +908,139 @@
|
|
|
795
908
|
- [#546](https://github.com/opencomponents/oc/pull/546) Fixing spacing when initializing component package
|
|
796
909
|
|
|
797
910
|
### v0.39.1
|
|
911
|
+
|
|
798
912
|
- [#545](https://github.com/opencomponents/oc/pull/545) Added a mime type for html files.
|
|
799
913
|
|
|
800
914
|
### v0.39.0
|
|
915
|
+
|
|
801
916
|
- [#542](https://github.com/opencomponents/oc/pull/542) Drop node4 tests
|
|
802
917
|
- [#541](https://github.com/opencomponents/oc/pull/541) Housekeeping
|
|
803
918
|
- [#538](https://github.com/opencomponents/oc/pull/538) [OC-69] Remove node client
|
|
804
919
|
|
|
805
920
|
### v0.38.8
|
|
921
|
+
|
|
806
922
|
- [#537](https://github.com/opencomponents/oc/pull/537) No postinstall build
|
|
807
923
|
|
|
808
924
|
### v0.38.7
|
|
925
|
+
|
|
809
926
|
- [#535](https://github.com/opencomponents/oc/pull/535) Fix grunt build to override package version
|
|
810
927
|
- [#534](https://github.com/opencomponents/oc/pull/534) [OC-60] Oc client browser
|
|
811
928
|
|
|
812
929
|
### v0.38.6
|
|
930
|
+
|
|
813
931
|
- [#533](https://github.com/opencomponents/oc/pull/533) [OC-62] Loaders cleanup
|
|
814
932
|
|
|
815
933
|
### v0.38.5
|
|
934
|
+
|
|
816
935
|
- [#532](https://github.com/opencomponents/oc/pull/532) fix-global-ljs
|
|
817
936
|
|
|
818
937
|
### v0.38.4
|
|
938
|
+
|
|
819
939
|
- [#531](https://github.com/opencomponents/oc/pull/531) Fix register plugin
|
|
820
940
|
|
|
821
941
|
### v0.38.3
|
|
942
|
+
|
|
822
943
|
- [#530](https://github.com/opencomponents/oc/pull/530) Remove plugin detective logic
|
|
823
944
|
|
|
824
945
|
### v0.38.2
|
|
946
|
+
|
|
825
947
|
- [#528](https://github.com/opencomponents/oc/pull/528) [OC-50] Log body fix
|
|
826
948
|
|
|
827
949
|
### v0.38.1
|
|
950
|
+
|
|
828
951
|
- [#527](https://github.com/opencomponents/oc/pull/527) Do not watch .DS_Store files
|
|
829
952
|
|
|
830
953
|
### v0.38.0
|
|
954
|
+
|
|
831
955
|
- [#522](https://github.com/opencomponents/oc/pull/522) Issue w/ head.load
|
|
832
956
|
|
|
833
957
|
### v0.37.11
|
|
834
|
-
|
|
835
|
-
|
|
958
|
+
|
|
959
|
+
- [#488](https://github.com/opencomponents/oc/pull/488) yarn-support
|
|
960
|
+
|
|
836
961
|
closes #487
|
|
837
962
|
|
|
838
963
|
### v0.37.10
|
|
964
|
+
|
|
839
965
|
- [#516](https://github.com/opencomponents/oc/pull/516) Improve AWS upload mechanism and allow to override registry timeout settings
|
|
840
966
|
|
|
841
967
|
### v0.37.9
|
|
968
|
+
|
|
842
969
|
- [#515](https://github.com/opencomponents/oc/pull/515) Ignore the .git folder for the dev watcher
|
|
843
970
|
- [#507](https://github.com/opencomponents/oc/pull/507) Pretty printed code
|
|
844
971
|
|
|
845
972
|
### v0.37.8
|
|
973
|
+
|
|
846
974
|
- [#513](https://github.com/opencomponents/oc/pull/513) issue w/ registry add command
|
|
847
975
|
- [#510](https://github.com/opencomponents/oc/pull/510) Hide available dependencies on dev mode
|
|
848
976
|
- [#500](https://github.com/opencomponents/oc/pull/500) Show available dependencies in the UI
|
|
849
977
|
|
|
850
978
|
### v0.37.7
|
|
979
|
+
|
|
851
980
|
- [#509](https://github.com/opencomponents/oc/pull/509) Cleancss fix
|
|
852
981
|
- [#505](https://github.com/opencomponents/oc/pull/505) Node 8
|
|
853
982
|
- [#502](https://github.com/opencomponents/oc/pull/502) Upgrade some dependencies
|
|
854
983
|
- [#503](https://github.com/opencomponents/oc/pull/503) eof
|
|
855
984
|
|
|
856
985
|
### v0.37.6
|
|
986
|
+
|
|
857
987
|
- [#499](https://github.com/opencomponents/oc/pull/499) Snyk
|
|
858
988
|
- [#498](https://github.com/opencomponents/oc/pull/498) Fix build script
|
|
859
989
|
- [#497](https://github.com/opencomponents/oc/pull/497) Fix vulnerabilities and remove npm shrinkwrap
|
|
860
990
|
|
|
861
991
|
### v0.37.5
|
|
992
|
+
|
|
862
993
|
- [#495](https://github.com/opencomponents/oc/pull/495) issue w/ plugins detective
|
|
863
994
|
|
|
864
995
|
### v0.37.4
|
|
996
|
+
|
|
865
997
|
- [#486](https://github.com/opencomponents/oc/pull/486) Render trycatch
|
|
866
998
|
|
|
867
999
|
### v0.37.3
|
|
1000
|
+
|
|
868
1001
|
- [#482](https://github.com/opencomponents/oc/pull/482) Upgrade multer
|
|
869
1002
|
|
|
870
1003
|
### v0.37.2
|
|
1004
|
+
|
|
871
1005
|
- [#481](https://github.com/opencomponents/oc/pull/481) issue-with-amd
|
|
872
1006
|
|
|
873
1007
|
### v0.37.1
|
|
1008
|
+
|
|
874
1009
|
- [#479](https://github.com/opencomponents/oc/pull/479) Allow node core deps to be used and whitelisted
|
|
875
1010
|
- [#478](https://github.com/opencomponents/oc/pull/478) Upgrade chai
|
|
876
1011
|
|
|
877
1012
|
### v0.37.0
|
|
1013
|
+
|
|
878
1014
|
- [#467](https://github.com/opencomponents/oc/pull/467) [MLP-594] History
|
|
879
1015
|
|
|
880
1016
|
### v0.36.28
|
|
1017
|
+
|
|
881
1018
|
- [#477](https://github.com/opencomponents/oc/pull/477) get-components-by-dir-issue
|
|
882
1019
|
- [#475](https://github.com/opencomponents/oc/pull/475) Housekeeping
|
|
883
1020
|
|
|
884
1021
|
### v0.36.27
|
|
1022
|
+
|
|
885
1023
|
- [#472](https://github.com/opencomponents/oc/pull/472) issue-with-component-info-get-params v2
|
|
886
1024
|
- [#469](https://github.com/opencomponents/oc/pull/469) Housekeeping
|
|
887
1025
|
|
|
888
1026
|
### v0.36.26
|
|
1027
|
+
|
|
889
1028
|
- [#468](https://github.com/opencomponents/oc/pull/468) Underscore to lodash
|
|
890
1029
|
|
|
891
1030
|
### v0.36.25
|
|
1031
|
+
|
|
892
1032
|
- [#463](https://github.com/opencomponents/oc/pull/463) Components cache cleanup
|
|
893
1033
|
|
|
894
1034
|
### v0.36.24
|
|
1035
|
+
|
|
895
1036
|
- [#461](https://github.com/opencomponents/oc/pull/461) Registry start log fix
|
|
896
1037
|
|
|
897
1038
|
### v0.36.23
|
|
1039
|
+
|
|
898
1040
|
- [#460](https://github.com/opencomponents/oc/pull/460) Move to =>
|
|
899
1041
|
|
|
900
1042
|
### v0.36.22
|
|
1043
|
+
|
|
901
1044
|
- [#459](https://github.com/opencomponents/oc/pull/459) Fix manual build script
|
|
902
1045
|
- [#458](https://github.com/opencomponents/oc/pull/458) Cleanup
|
|
903
1046
|
- [#454](https://github.com/opencomponents/oc/pull/454) Logger cleanup
|
|
@@ -908,18 +1051,23 @@ closes #487
|
|
|
908
1051
|
- [#453](https://github.com/opencomponents/oc/pull/453) Fix indentation
|
|
909
1052
|
|
|
910
1053
|
### v0.36.21
|
|
1054
|
+
|
|
911
1055
|
- [#450](https://github.com/opencomponents/oc/pull/450) Replace jshint by eslint
|
|
912
1056
|
|
|
913
1057
|
### v0.36.20
|
|
1058
|
+
|
|
914
1059
|
- [#449](https://github.com/opencomponents/oc/pull/449) No unused variables
|
|
915
1060
|
|
|
916
1061
|
### v0.36.19
|
|
1062
|
+
|
|
917
1063
|
- [#447](https://github.com/opencomponents/oc/pull/447) Components by dir cleanup
|
|
918
1064
|
|
|
919
1065
|
### v0.36.18
|
|
1066
|
+
|
|
920
1067
|
- [#446](https://github.com/opencomponents/oc/pull/446) Consider null a valid string
|
|
921
1068
|
|
|
922
1069
|
### v0.36.17
|
|
1070
|
+
|
|
923
1071
|
- [#443](https://github.com/opencomponents/oc/pull/443) Use baseUrl as default with host as fallback
|
|
924
1072
|
- [#444](https://github.com/opencomponents/oc/pull/444) Require templates is broken
|
|
925
1073
|
- [#430](https://github.com/opencomponents/oc/pull/430) [GPT-567] Registering supported templates on componentPreview view
|
|
@@ -927,73 +1075,94 @@ closes #487
|
|
|
927
1075
|
- [#426](https://github.com/opencomponents/oc/pull/426) [GPT-565] Dynamic support to oc-templates in oc dev
|
|
928
1076
|
|
|
929
1077
|
### v0.36.16
|
|
1078
|
+
|
|
930
1079
|
- [#432](https://github.com/opencomponents/oc/pull/432) prepare-server-get-component-parameters
|
|
931
1080
|
- [#428](https://github.com/opencomponents/oc/pull/428) registerTemplate API fix
|
|
932
1081
|
|
|
933
1082
|
### v0.36.15
|
|
1083
|
+
|
|
934
1084
|
- [#422](https://github.com/opencomponents/oc/pull/422) adding package cli command
|
|
935
1085
|
- [#423](https://github.com/opencomponents/oc/pull/423) [GPT-517] Exposing registry supported templates via context
|
|
936
1086
|
|
|
937
1087
|
### v0.36.14
|
|
1088
|
+
|
|
938
1089
|
- [#421](https://github.com/opencomponents/oc/pull/421) Minify static content by transpiling it first
|
|
939
1090
|
|
|
940
1091
|
### v0.36.13
|
|
1092
|
+
|
|
941
1093
|
- [#420](https://github.com/opencomponents/oc/pull/420) revert #418
|
|
942
1094
|
|
|
943
1095
|
### v0.36.12
|
|
1096
|
+
|
|
944
1097
|
- [#418](https://github.com/opencomponents/oc/pull/418) Transpile static js before minification
|
|
945
1098
|
|
|
946
1099
|
### v0.36.11
|
|
1100
|
+
|
|
947
1101
|
- [#417](https://github.com/opencomponents/oc/pull/417) support old and new handlebars type
|
|
948
1102
|
|
|
949
1103
|
### v0.36.10
|
|
1104
|
+
|
|
950
1105
|
- [#415](https://github.com/opencomponents/oc/pull/415) [GPT-526] Dynamic requires of oc-templates
|
|
951
1106
|
- [#416](https://github.com/opencomponents/oc/pull/416) Updated infinite-loop-loader to fix #410
|
|
952
1107
|
|
|
953
1108
|
### v0.36.9
|
|
1109
|
+
|
|
954
1110
|
- [#413](https://github.com/opencomponents/oc/pull/413) Fix ui preview with multiple discover strategies and endpoints
|
|
955
1111
|
- [#414](https://github.com/opencomponents/oc/pull/414) [GPT-525] Switch to new templates naming
|
|
956
1112
|
|
|
957
1113
|
### v0.36.8
|
|
1114
|
+
|
|
958
1115
|
- [#412](https://github.com/opencomponents/oc/pull/412) Async compile api
|
|
959
1116
|
|
|
960
1117
|
### v0.36.7
|
|
1118
|
+
|
|
961
1119
|
- [#411](https://github.com/opencomponents/oc/pull/411) Babili on server.js
|
|
962
1120
|
|
|
963
1121
|
### v0.36.6
|
|
1122
|
+
|
|
964
1123
|
- [#408](https://github.com/opencomponents/oc/pull/408) Ensuring we exit the domains in case of timeout
|
|
965
1124
|
|
|
966
1125
|
### v0.36.5
|
|
1126
|
+
|
|
967
1127
|
- [#396](https://github.com/opencomponents/oc/pull/396) Make oc-client.js supporting more templates via an extendable API
|
|
968
1128
|
|
|
969
1129
|
### v0.36.4
|
|
1130
|
+
|
|
970
1131
|
- [#405](https://github.com/opencomponents/oc/pull/405) Publish bugfix
|
|
971
1132
|
- [#402](https://github.com/opencomponents/oc/pull/402) We don't autogenerate cli docs anymore
|
|
972
1133
|
|
|
973
1134
|
### v0.36.3
|
|
1135
|
+
|
|
974
1136
|
- [#403](https://github.com/opencomponents/oc/pull/403) Fix for #391 - support pre-release versions of components
|
|
975
1137
|
- [#1](https://github.com/opencomponents/oc/pull/1) Thanks @matteofigus. I forgot about it.
|
|
976
1138
|
|
|
977
1139
|
### v0.36.2
|
|
1140
|
+
|
|
978
1141
|
- [#401](https://github.com/opencomponents/oc/pull/401) Webpack verbose
|
|
979
1142
|
|
|
980
1143
|
### v0.36.1
|
|
1144
|
+
|
|
981
1145
|
- [#380](https://github.com/opencomponents/oc/pull/380) Handle fallbackRegistryUrl for ~info and ~preview
|
|
982
1146
|
|
|
983
1147
|
### v0.36.0
|
|
1148
|
+
|
|
984
1149
|
- [#399](https://github.com/opencomponents/oc/pull/399) Changed option parser for cli
|
|
985
1150
|
- [#400](https://github.com/opencomponents/oc/pull/400) Fixing typo on registry UI for filtering.
|
|
986
1151
|
|
|
987
1152
|
### v0.35.6
|
|
1153
|
+
|
|
988
1154
|
- [#397](https://github.com/opencomponents/oc/pull/397) Fix basicAuth
|
|
989
1155
|
|
|
990
1156
|
### v0.35.5
|
|
1157
|
+
|
|
991
1158
|
- [#389](https://github.com/opencomponents/oc/pull/389) Fix regex on win paths normalisation
|
|
992
1159
|
|
|
993
1160
|
### v0.35.4
|
|
1161
|
+
|
|
994
1162
|
- [#388](https://github.com/opencomponents/oc/pull/388) Fixing deps on the node client
|
|
995
1163
|
|
|
996
1164
|
### v0.35.3
|
|
1165
|
+
|
|
997
1166
|
- [#347](https://github.com/opencomponents/oc/pull/347) 342 - (OC Client) Perform GET instead of POST for single component
|
|
998
1167
|
- [#342](https://github.com/opencomponents/oc/pull/342) Change the OC Client to perform GET instead of POST when requesting just one component
|
|
999
1168
|
- [#385](https://github.com/opencomponents/oc/pull/385) updated to templates 2.0
|
|
@@ -1001,42 +1170,54 @@ closes #487
|
|
|
1001
1170
|
- [#376](https://github.com/opencomponents/oc/pull/376) Cleanup un-needed files
|
|
1002
1171
|
|
|
1003
1172
|
### v0.35.2
|
|
1173
|
+
|
|
1004
1174
|
- [#375](https://github.com/opencomponents/oc/pull/375) oc-template-jade module
|
|
1005
1175
|
|
|
1006
1176
|
### v0.35.1
|
|
1177
|
+
|
|
1007
1178
|
- [#371](https://github.com/opencomponents/oc/pull/371) oc-template-handlebars module
|
|
1008
1179
|
|
|
1009
1180
|
### v0.35.0
|
|
1181
|
+
|
|
1010
1182
|
- [#366](https://github.com/opencomponents/oc/pull/366) Express 4
|
|
1011
1183
|
|
|
1012
1184
|
### v0.34.8
|
|
1185
|
+
|
|
1013
1186
|
- [#370](https://github.com/opencomponents/oc/pull/370) Cleanup on headers handling
|
|
1014
1187
|
|
|
1015
1188
|
### v0.34.7
|
|
1189
|
+
|
|
1016
1190
|
- [#372](https://github.com/opencomponents/oc/pull/372) optional fallbackRegistryUrl configuration parameter
|
|
1017
1191
|
- [#374](https://github.com/opencomponents/oc/pull/374) Es2015 base-component server
|
|
1018
1192
|
|
|
1019
1193
|
### v0.34.6
|
|
1194
|
+
|
|
1020
1195
|
- [#367](https://github.com/opencomponents/oc/pull/367) Always create new S3 client before use
|
|
1021
1196
|
|
|
1022
1197
|
### v0.34.5
|
|
1198
|
+
|
|
1023
1199
|
- [#365](https://github.com/opencomponents/oc/pull/365) Publish bugfix
|
|
1024
1200
|
|
|
1025
1201
|
### v0.34.4
|
|
1202
|
+
|
|
1026
1203
|
- [#364](https://github.com/opencomponents/oc/pull/364) Don't allow routes that contain prefix
|
|
1027
1204
|
|
|
1028
1205
|
### v0.34.3
|
|
1206
|
+
|
|
1029
1207
|
- [#362](https://github.com/opencomponents/oc/pull/362) Node 7
|
|
1030
1208
|
- [#363](https://github.com/opencomponents/oc/pull/363) Extending Integration tests
|
|
1031
1209
|
|
|
1032
1210
|
### v0.34.2
|
|
1211
|
+
|
|
1033
1212
|
- [#357](https://github.com/opencomponents/oc/pull/357) Webpack 2
|
|
1034
1213
|
|
|
1035
1214
|
### v0.34.1
|
|
1215
|
+
|
|
1036
1216
|
- [#361](https://github.com/opencomponents/oc/pull/361) removed uglify
|
|
1037
1217
|
- [#359](https://github.com/opencomponents/oc/pull/359) swapped falafel loader with infinite-loop-loader
|
|
1038
1218
|
|
|
1039
1219
|
### v0.34.0
|
|
1220
|
+
|
|
1040
1221
|
- [#346](https://github.com/opencomponents/oc/pull/346) [GPT-432] Package server webpack
|
|
1041
1222
|
- [#356](https://github.com/opencomponents/oc/pull/356) Appveyor cleanup
|
|
1042
1223
|
- [#355](https://github.com/opencomponents/oc/pull/355) drop support for node 0.10, 0.12 and io
|
|
@@ -1044,349 +1225,453 @@ closes #487
|
|
|
1044
1225
|
- [#353](https://github.com/opencomponents/oc/pull/353) Remove IE8 support
|
|
1045
1226
|
|
|
1046
1227
|
### v0.33.31
|
|
1228
|
+
|
|
1047
1229
|
- [#343](https://github.com/opencomponents/oc/pull/343) 333 - Implement customHeadersToSkipOnWeakVersion functionality
|
|
1048
1230
|
- [#349](https://github.com/opencomponents/oc/pull/349) Upgrade minimal-request
|
|
1049
1231
|
- [#348](https://github.com/opencomponents/oc/pull/348) [acceptance/registry] remove .only
|
|
1050
1232
|
- [#344](https://github.com/opencomponents/oc/pull/344) Package server script cleanup
|
|
1051
1233
|
|
|
1052
1234
|
### v0.33.30
|
|
1235
|
+
|
|
1053
1236
|
- [#335](https://github.com/opencomponents/oc/pull/335) Add endpoint for getting list of components with their versions (#324)
|
|
1054
1237
|
|
|
1055
1238
|
### v0.33.29
|
|
1239
|
+
|
|
1056
1240
|
- [#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"
|
|
1057
1241
|
|
|
1058
1242
|
### v0.33.28
|
|
1243
|
+
|
|
1059
1244
|
- [#323](https://github.com/opencomponents/oc/pull/323) Fix for #322
|
|
1060
1245
|
- [#334](https://github.com/opencomponents/oc/pull/334) Acceptance extra test
|
|
1061
1246
|
|
|
1062
1247
|
### v0.33.27
|
|
1248
|
+
|
|
1063
1249
|
- [#331](https://github.com/opencomponents/oc/pull/331) Client fixes and some tests
|
|
1064
1250
|
|
|
1065
1251
|
### v0.33.26
|
|
1252
|
+
|
|
1066
1253
|
- [#329](https://github.com/opencomponents/oc/pull/329) Cleanup npm-shrinkwrap
|
|
1067
1254
|
|
|
1068
1255
|
### v0.33.25
|
|
1256
|
+
|
|
1069
1257
|
- [#328](https://github.com/opencomponents/oc/pull/328) Fix for Custom eaders of one component can appear to another.
|
|
1070
1258
|
|
|
1071
1259
|
### v0.33.24
|
|
1260
|
+
|
|
1072
1261
|
- [#326](https://github.com/opencomponents/oc/pull/326) Add optional cache headers for components (#325)
|
|
1073
1262
|
|
|
1074
1263
|
### v0.33.23
|
|
1264
|
+
|
|
1075
1265
|
- [#319](https://github.com/opencomponents/oc/pull/319) Extract package bugfix
|
|
1076
1266
|
|
|
1077
1267
|
### v0.33.22
|
|
1268
|
+
|
|
1078
1269
|
- [#317](https://github.com/opencomponents/oc/pull/317) Client dynamic hrefs
|
|
1079
1270
|
|
|
1080
1271
|
### v0.33.21
|
|
1272
|
+
|
|
1081
1273
|
- [#316](https://github.com/opencomponents/oc/pull/316) Migrate tar.gz to targz
|
|
1082
1274
|
|
|
1083
1275
|
### v0.33.20
|
|
1276
|
+
|
|
1084
1277
|
- [#315](https://github.com/opencomponents/oc/pull/315) aws-sdk upgrade
|
|
1085
1278
|
|
|
1086
1279
|
### v0.33.19
|
|
1280
|
+
|
|
1087
1281
|
- [#314](https://github.com/opencomponents/oc/pull/314) Revert async upgrade + timeout wrapping
|
|
1088
1282
|
|
|
1089
1283
|
### v0.33.18
|
|
1284
|
+
|
|
1090
1285
|
- [#313](https://github.com/opencomponents/oc/pull/313) Recursively look for oc.json, starting from componentsDir
|
|
1091
1286
|
|
|
1092
1287
|
### v0.33.17
|
|
1288
|
+
|
|
1093
1289
|
- [#312](https://github.com/opencomponents/oc/pull/312) Options bugfix
|
|
1094
1290
|
|
|
1095
1291
|
### v0.33.16
|
|
1292
|
+
|
|
1096
1293
|
- [#311](https://github.com/opencomponents/oc/pull/311) Refactoring, cleanup, test coverage
|
|
1097
1294
|
|
|
1098
1295
|
### v0.33.15
|
|
1296
|
+
|
|
1099
1297
|
- [#310](https://github.com/opencomponents/oc/pull/310) Upgrade async + wrap s3 calls to timeout
|
|
1100
1298
|
|
|
1101
1299
|
### v0.33.14
|
|
1300
|
+
|
|
1102
1301
|
- [#309](https://github.com/opencomponents/oc/pull/309) Default value for optional parameters
|
|
1103
1302
|
- [#308](https://github.com/opencomponents/oc/pull/308) Fixed tags order in changelog
|
|
1104
1303
|
|
|
1105
1304
|
### v0.33.13
|
|
1305
|
+
|
|
1106
1306
|
- [#305](https://github.com/opencomponents/oc/pull/305) Switch to setTimeout for polling mechanism
|
|
1107
1307
|
- [#306](https://github.com/opencomponents/oc/pull/306) Default Loading... to blank
|
|
1108
1308
|
|
|
1109
1309
|
### v0.33.12
|
|
1310
|
+
|
|
1110
1311
|
- [#303](https://github.com/opencomponents/oc/pull/303) Client#renderComponents accepts global parameters
|
|
1111
1312
|
|
|
1112
1313
|
### v0.33.11
|
|
1314
|
+
|
|
1113
1315
|
- [#302](https://github.com/opencomponents/oc/pull/302) Added name and reqest version to each response
|
|
1114
1316
|
|
|
1115
1317
|
### v0.33.10
|
|
1318
|
+
|
|
1116
1319
|
- [#301](https://github.com/opencomponents/oc/pull/301) Oc client jadeless
|
|
1117
1320
|
|
|
1118
1321
|
### v0.33.9
|
|
1322
|
+
|
|
1119
1323
|
- [#294](https://github.com/opencomponents/oc/pull/294) Upgrade npm dependency
|
|
1120
1324
|
|
|
1121
1325
|
### v0.33.8
|
|
1326
|
+
|
|
1122
1327
|
- [#293](https://github.com/opencomponents/oc/pull/293) Ui improvements
|
|
1123
1328
|
|
|
1124
1329
|
### v0.33.7
|
|
1330
|
+
|
|
1125
1331
|
- [#291](https://github.com/opencomponents/oc/pull/291) Client errors
|
|
1126
1332
|
- [#290](https://github.com/opencomponents/oc/pull/290) Update minimal-request@2.1.1
|
|
1127
1333
|
- [#288](https://github.com/opencomponents/oc/pull/288) oc-client warmup improvements
|
|
1128
1334
|
|
|
1129
1335
|
### v0.33.6
|
|
1336
|
+
|
|
1130
1337
|
- [#289](https://github.com/opencomponents/oc/pull/289) Upgrade dependency
|
|
1131
1338
|
|
|
1132
1339
|
### v0.33.5
|
|
1340
|
+
|
|
1133
1341
|
- [#287](https://github.com/opencomponents/oc/pull/287) Node 6
|
|
1134
1342
|
|
|
1135
1343
|
### v0.33.4
|
|
1344
|
+
|
|
1136
1345
|
- [#286](https://github.com/opencomponents/oc/pull/286) Hot reload
|
|
1137
1346
|
- [#285](https://github.com/opencomponents/oc/pull/285) npm install and dep resolvement needs to happen in the same dir
|
|
1138
1347
|
- [#269](https://github.com/opencomponents/oc/pull/269) Removing the loading... indicator when we have an error
|
|
1139
1348
|
|
|
1140
1349
|
### v0.33.3
|
|
1350
|
+
|
|
1141
1351
|
- [#278](https://github.com/opencomponents/oc/pull/278) Container client override
|
|
1142
1352
|
- [#279](https://github.com/opencomponents/oc/pull/279) Update safari configs
|
|
1143
1353
|
- [#280](https://github.com/opencomponents/oc/pull/280) Respect dependency versions for components
|
|
1144
1354
|
|
|
1145
1355
|
### v0.33.2
|
|
1356
|
+
|
|
1146
1357
|
- [#274](https://github.com/opencomponents/oc/pull/274) Revert tar.gz upgrade
|
|
1147
1358
|
|
|
1148
1359
|
### v0.33.1
|
|
1360
|
+
|
|
1149
1361
|
- [#270](https://github.com/opencomponents/oc/pull/270) server-side nested rendering
|
|
1150
1362
|
|
|
1151
1363
|
### v0.33.0
|
|
1364
|
+
|
|
1152
1365
|
- [#265](https://github.com/opencomponents/oc/pull/265) [careful + breaking change] Removed Handlebars 3 support
|
|
1153
1366
|
|
|
1154
1367
|
### v0.32.6
|
|
1368
|
+
|
|
1155
1369
|
- [#268](https://github.com/opencomponents/oc/pull/268) Strict shrinkwrapping
|
|
1156
1370
|
- [#264](https://github.com/opencomponents/oc/pull/264) Docs cleanup
|
|
1157
1371
|
|
|
1158
1372
|
### v0.32.5
|
|
1373
|
+
|
|
1159
1374
|
- [#266](https://github.com/opencomponents/oc/pull/266) Publish fix
|
|
1160
1375
|
|
|
1161
1376
|
### v0.32.4
|
|
1377
|
+
|
|
1162
1378
|
- [#263](https://github.com/opencomponents/oc/pull/263) oc-client publish fix
|
|
1163
1379
|
|
|
1164
1380
|
### v0.32.3
|
|
1381
|
+
|
|
1165
1382
|
- [#257](https://github.com/opencomponents/oc/pull/257) Publish requirements
|
|
1166
1383
|
- [#259](https://github.com/opencomponents/oc/pull/259) Upgrade more deps
|
|
1167
1384
|
|
|
1168
1385
|
### v0.32.2
|
|
1386
|
+
|
|
1169
1387
|
- [#261](https://github.com/opencomponents/oc/pull/261) Client rendering fix
|
|
1170
1388
|
|
|
1171
1389
|
### v0.32.1
|
|
1390
|
+
|
|
1172
1391
|
- [#260](https://github.com/opencomponents/oc/pull/260) Client fix
|
|
1173
1392
|
|
|
1174
1393
|
### v0.32.0
|
|
1394
|
+
|
|
1175
1395
|
- [#243](https://github.com/opencomponents/oc/pull/243) [careful] handlebars 3+4
|
|
1176
1396
|
|
|
1177
1397
|
### v0.31.2
|
|
1398
|
+
|
|
1178
1399
|
- [#258](https://github.com/opencomponents/oc/pull/258) added support for serving svg
|
|
1179
1400
|
|
|
1180
1401
|
### v0.31.1
|
|
1402
|
+
|
|
1181
1403
|
- [#256](https://github.com/opencomponents/oc/pull/256) More dependencies upgrade
|
|
1182
1404
|
|
|
1183
1405
|
### v0.31.0
|
|
1406
|
+
|
|
1184
1407
|
- [#254](https://github.com/opencomponents/oc/pull/254) Dependencies upgrade
|
|
1185
1408
|
- [#255](https://github.com/opencomponents/oc/pull/255) Renamed src to public
|
|
1186
1409
|
- [#253](https://github.com/opencomponents/oc/pull/253) Updated instructions of how to add static resource to the file
|
|
1187
1410
|
|
|
1188
1411
|
### v0.30.9
|
|
1412
|
+
|
|
1189
1413
|
- [#251](https://github.com/opencomponents/oc/pull/251) check is dir with lstatSync
|
|
1190
1414
|
|
|
1191
1415
|
### v0.30.8
|
|
1416
|
+
|
|
1192
1417
|
- [#248](https://github.com/opencomponents/oc/pull/248) Amd Support for client-side library
|
|
1193
1418
|
- [#244](https://github.com/opencomponents/oc/pull/244) Docs updated
|
|
1194
1419
|
|
|
1195
1420
|
### v0.30.7
|
|
1421
|
+
|
|
1196
1422
|
- [#245](https://github.com/opencomponents/oc/pull/245) Cache jade view (for web interface)
|
|
1197
1423
|
- [#246](https://github.com/opencomponents/oc/pull/246) Upgraded some dependencies
|
|
1198
1424
|
|
|
1199
1425
|
### v0.30.6
|
|
1426
|
+
|
|
1200
1427
|
- [#242](https://github.com/opencomponents/oc/pull/242) Upgrade npm
|
|
1201
1428
|
- [#241](https://github.com/opencomponents/oc/pull/241) adds dependencies badge in readme
|
|
1202
1429
|
- [#240](https://github.com/opencomponents/oc/pull/240) add some basic example components
|
|
1203
1430
|
- [#239](https://github.com/opencomponents/oc/pull/239) Update README
|
|
1204
1431
|
|
|
1205
1432
|
### v0.30.5
|
|
1433
|
+
|
|
1206
1434
|
- [#238](https://github.com/opencomponents/oc/pull/238) Logo path fixed in web interface
|
|
1207
1435
|
|
|
1208
1436
|
### v0.30.4
|
|
1437
|
+
|
|
1209
1438
|
- [#236](https://github.com/opencomponents/oc/pull/236) Refactoring tasks code
|
|
1210
1439
|
- [#237](https://github.com/opencomponents/oc/pull/237) Upgrade and fix jshinting
|
|
1211
1440
|
|
|
1212
1441
|
### v0.30.3
|
|
1442
|
+
|
|
1213
1443
|
- [#235](https://github.com/opencomponents/oc/pull/235) Moved things around
|
|
1214
1444
|
|
|
1215
1445
|
### v0.30.2
|
|
1446
|
+
|
|
1216
1447
|
- [#232](https://github.com/opencomponents/oc/pull/232) Upgrade async
|
|
1217
1448
|
|
|
1218
1449
|
### v0.30.1
|
|
1450
|
+
|
|
1219
1451
|
- [#230](https://github.com/opencomponents/oc/pull/230) Fixed Changelog generator task
|
|
1220
1452
|
|
|
1221
1453
|
### v0.30.0
|
|
1454
|
+
|
|
1222
1455
|
- [#229](https://github.com/opencomponents/oc/pull/229) Empty string should be a valid string parameter
|
|
1223
1456
|
|
|
1224
1457
|
### v0.29.3
|
|
1458
|
+
|
|
1225
1459
|
- [#227](https://github.com/opencomponents/oc/pull/227) Omit href
|
|
1226
1460
|
- [#228](https://github.com/opencomponents/oc/pull/228) Global params on POST request
|
|
1227
1461
|
|
|
1228
1462
|
### v0.29.2
|
|
1463
|
+
|
|
1229
1464
|
- [#222](https://github.com/opencomponents/oc/pull/222) Compress inlined js and css inside jade views
|
|
1230
1465
|
|
|
1231
1466
|
### v0.29.1
|
|
1467
|
+
|
|
1232
1468
|
- [#221](https://github.com/opencomponents/oc/pull/221) Removed ace editor + added Accept-Language box
|
|
1233
1469
|
|
|
1234
1470
|
### v0.29.0
|
|
1471
|
+
|
|
1235
1472
|
- [#218](https://github.com/opencomponents/oc/pull/218) Upgrade jade
|
|
1236
1473
|
|
|
1237
1474
|
### v0.28.9
|
|
1475
|
+
|
|
1238
1476
|
- [#214](https://github.com/opencomponents/oc/pull/214) S3 validation
|
|
1239
|
-
- [#216](https://github.com/opencomponents/oc/pull/216) Looks good;
|
|
1240
|
-
tested
|
|
1477
|
+
- [#216](https://github.com/opencomponents/oc/pull/216) Looks good;
|
|
1478
|
+
tested
|
|
1241
1479
|
|
|
1242
1480
|
### v0.28.8
|
|
1481
|
+
|
|
1243
1482
|
- [#215](https://github.com/opencomponents/oc/pull/215) mock bugfix for when a value is not a string
|
|
1244
1483
|
|
|
1245
1484
|
### v0.28.7
|
|
1485
|
+
|
|
1246
1486
|
- [#213](https://github.com/opencomponents/oc/pull/213) [Docs] description of oc.renderInfo param
|
|
1247
1487
|
- [#212](https://github.com/opencomponents/oc/pull/212) Changelog using git history instead of github api
|
|
1248
1488
|
|
|
1249
1489
|
### v0.28.6
|
|
1490
|
+
|
|
1250
1491
|
- [#211](https://github.com/opencomponents/oc/pull/211) Forward request headers to component
|
|
1251
1492
|
|
|
1252
1493
|
### v0.28.5
|
|
1494
|
+
|
|
1253
1495
|
- [#208](https://github.com/opencomponents/oc/pull/208) When data is undefined, registry should 500
|
|
1254
1496
|
- [#209](https://github.com/opencomponents/oc/pull/209) Exit 1 in case of CLI error
|
|
1255
1497
|
|
|
1256
1498
|
### v0.28.4
|
|
1499
|
+
|
|
1257
1500
|
- [#204](https://github.com/opencomponents/oc/pull/204) add "getRepositoryUrl" in order to support repository package.json property as object
|
|
1258
1501
|
- [#206](https://github.com/opencomponents/oc/pull/206) Fix travis forks PRs
|
|
1259
1502
|
|
|
1260
1503
|
### v0.28.3
|
|
1504
|
+
|
|
1261
1505
|
- [#203](https://github.com/opencomponents/oc/pull/203) Fix githubChanges task name
|
|
1262
1506
|
- [#199](https://github.com/opencomponents/oc/pull/199) Changelog
|
|
1263
1507
|
|
|
1264
1508
|
### v0.28.2
|
|
1509
|
+
|
|
1265
1510
|
- [#201](https://github.com/opencomponents/oc/pull/201) Added license on minified oc-client.min.js
|
|
1266
1511
|
|
|
1267
1512
|
### v0.28.1
|
|
1513
|
+
|
|
1268
1514
|
- [#200](https://github.com/opencomponents/oc/pull/200) Have optional callbacks in CLI functions
|
|
1269
1515
|
|
|
1270
1516
|
### v0.28.0
|
|
1517
|
+
|
|
1271
1518
|
- [#198](https://github.com/opencomponents/oc/pull/198) More details on errors from node client
|
|
1272
1519
|
- [#197](https://github.com/opencomponents/oc/pull/197) Return null when there's no error in renderComponents
|
|
1273
1520
|
|
|
1274
1521
|
### v0.27.9
|
|
1522
|
+
|
|
1275
1523
|
- [#195](https://github.com/opencomponents/oc/pull/195) Warmup on client.init
|
|
1276
1524
|
|
|
1277
1525
|
### v0.27.8
|
|
1526
|
+
|
|
1278
1527
|
- [#196](https://github.com/opencomponents/oc/pull/196) Adding user-agent to node oc-client
|
|
1279
1528
|
|
|
1280
1529
|
### v0.27.7
|
|
1530
|
+
|
|
1281
1531
|
- [#194](https://github.com/opencomponents/oc/pull/194) Cleanup on client
|
|
1282
1532
|
|
|
1283
1533
|
### v0.27.6
|
|
1534
|
+
|
|
1284
1535
|
- [#193](https://github.com/opencomponents/oc/pull/193) Dev has optional callback in order to be used by grunt-oc
|
|
1285
1536
|
- [#192](https://github.com/opencomponents/oc/pull/192) Less docs, more links
|
|
1286
1537
|
|
|
1287
1538
|
### v0.27.5
|
|
1539
|
+
|
|
1288
1540
|
- [#190](https://github.com/opencomponents/oc/pull/190) Publish error
|
|
1289
1541
|
|
|
1290
1542
|
### v0.27.4
|
|
1543
|
+
|
|
1291
1544
|
- [#189](https://github.com/opencomponents/oc/pull/189) Safe colors in order to avoid extending object and better testing
|
|
1292
1545
|
|
|
1293
1546
|
### v0.27.1
|
|
1547
|
+
|
|
1294
1548
|
- [#187](https://github.com/opencomponents/oc/pull/187) Moved the request util to its own module
|
|
1295
1549
|
|
|
1296
1550
|
### v0.27.0
|
|
1551
|
+
|
|
1297
1552
|
- [#186](https://github.com/opencomponents/oc/pull/186) Preserve language when doing client-side failover
|
|
1298
1553
|
|
|
1299
1554
|
### v0.26.2
|
|
1555
|
+
|
|
1300
1556
|
- [#182](https://github.com/opencomponents/oc/pull/182) Node.js client post and various improvements
|
|
1301
1557
|
|
|
1302
1558
|
### v0.26.1
|
|
1559
|
+
|
|
1303
1560
|
- [#184](https://github.com/opencomponents/oc/pull/184) Allow oc dev to be hosted from a custom base url
|
|
1304
1561
|
|
|
1305
1562
|
### v0.26.0
|
|
1563
|
+
|
|
1306
1564
|
- [#178](https://github.com/opencomponents/oc/pull/178) node.js client should accept serverRendering and clientRendering endpoints instead of generic array (breaking change)
|
|
1307
1565
|
|
|
1308
1566
|
### v0.25.0
|
|
1567
|
+
|
|
1309
1568
|
- [#179](https://github.com/opencomponents/oc/pull/179) Oc client cleanup and improvements
|
|
1310
1569
|
|
|
1311
1570
|
### v0.24.1
|
|
1571
|
+
|
|
1312
1572
|
- [#180](https://github.com/opencomponents/oc/pull/180) update the dependencies
|
|
1313
1573
|
|
|
1314
1574
|
### v0.24.0
|
|
1575
|
+
|
|
1315
1576
|
- [#177](https://github.com/opencomponents/oc/pull/177) Npm ignore to avoid publishing unuseful stuff
|
|
1316
1577
|
|
|
1317
1578
|
### v0.23.7
|
|
1579
|
+
|
|
1318
1580
|
- [#173](https://github.com/opencomponents/oc/pull/173) Ownership of $$$
|
|
1319
1581
|
|
|
1320
1582
|
### v0.23.6
|
|
1583
|
+
|
|
1321
1584
|
- [#172](https://github.com/opencomponents/oc/pull/172) Avoid client to be multiple times inside the page
|
|
1322
1585
|
|
|
1323
1586
|
### v0.23.5
|
|
1587
|
+
|
|
1324
1588
|
- [#171](https://github.com/opencomponents/oc/pull/171) Without cleaning up the namespace
|
|
1325
1589
|
|
|
1326
1590
|
### v0.23.4
|
|
1591
|
+
|
|
1327
1592
|
- [#170](https://github.com/opencomponents/oc/pull/170) jQuery in no conflict mode
|
|
1328
1593
|
|
|
1329
1594
|
### v0.23.3
|
|
1595
|
+
|
|
1330
1596
|
- [#169](https://github.com/opencomponents/oc/pull/169) pre-rendered modality is deprecated
|
|
1331
1597
|
|
|
1332
1598
|
### v0.23.2
|
|
1599
|
+
|
|
1333
1600
|
- [#168](https://github.com/opencomponents/oc/pull/168) Update dependencies
|
|
1334
1601
|
- [#167](https://github.com/opencomponents/oc/pull/167) Sauce browsers updated + dev dependency updated
|
|
1335
1602
|
|
|
1336
1603
|
### v0.23.1
|
|
1604
|
+
|
|
1337
1605
|
- [#166](https://github.com/opencomponents/oc/pull/166) Bugfix and docs
|
|
1338
1606
|
|
|
1339
1607
|
### v0.23.0
|
|
1608
|
+
|
|
1340
1609
|
- [#165](https://github.com/opencomponents/oc/pull/165) Making the POST response API return status and response for each comp…
|
|
1341
1610
|
|
|
1342
1611
|
### v0.22.3
|
|
1612
|
+
|
|
1343
1613
|
- [#164](https://github.com/opencomponents/oc/pull/164) New component-retrieved event
|
|
1344
1614
|
|
|
1345
1615
|
### v0.22.2
|
|
1616
|
+
|
|
1346
1617
|
- [#163](https://github.com/opencomponents/oc/pull/163) POST route for allowing batch request
|
|
1347
1618
|
- [#160](https://github.com/opencomponents/oc/pull/160) travis run tests with node 5 as well
|
|
1348
1619
|
|
|
1349
1620
|
### v0.22.1
|
|
1621
|
+
|
|
1350
1622
|
- [#159](https://github.com/opencomponents/oc/pull/159) should have an explicit dep on phantom
|
|
1351
1623
|
|
|
1352
1624
|
### v0.22.0
|
|
1625
|
+
|
|
1353
1626
|
- [#157](https://github.com/opencomponents/oc/pull/157) Server/Client-side render info
|
|
1354
1627
|
- [#156](https://github.com/opencomponents/oc/pull/156) House keeping
|
|
1355
1628
|
|
|
1356
1629
|
### v0.21.0
|
|
1630
|
+
|
|
1357
1631
|
- [#155](https://github.com/opencomponents/oc/pull/155) Removing info, ls, link, unlink
|
|
1358
1632
|
|
|
1359
1633
|
### v0.20.5
|
|
1634
|
+
|
|
1360
1635
|
- [#153](https://github.com/opencomponents/oc/pull/153) js.gz + css.gz handling
|
|
1361
1636
|
|
|
1362
1637
|
### v0.20.4
|
|
1638
|
+
|
|
1363
1639
|
- [#148](https://github.com/opencomponents/oc/pull/148) only remove the package once published to all registries
|
|
1364
1640
|
|
|
1365
1641
|
### v0.20.3
|
|
1642
|
+
|
|
1366
1643
|
- [#152](https://github.com/opencomponents/oc/pull/152) woopsy, I broke `oc dev`
|
|
1367
1644
|
|
|
1368
1645
|
### v0.20.2
|
|
1646
|
+
|
|
1369
1647
|
- [#151](https://github.com/opencomponents/oc/pull/151) Run karma tests by default
|
|
1370
1648
|
|
|
1371
1649
|
### v0.20.1
|
|
1650
|
+
|
|
1372
1651
|
- [#144](https://github.com/opencomponents/oc/pull/144) Oc client limited retries
|
|
1373
1652
|
|
|
1374
1653
|
### v0.20.0
|
|
1654
|
+
|
|
1375
1655
|
- [#141](https://github.com/opencomponents/oc/pull/141) allow plugins to depend on one another (breaking change)
|
|
1376
1656
|
|
|
1377
1657
|
### v0.19.5
|
|
1658
|
+
|
|
1378
1659
|
- [#147](https://github.com/opencomponents/oc/pull/147) Refactor cli/domain/local
|
|
1379
1660
|
|
|
1380
1661
|
### v0.19.4
|
|
1662
|
+
|
|
1381
1663
|
- [#145](https://github.com/opencomponents/oc/pull/145) oc dev fix (ie 8+)
|
|
1382
1664
|
|
|
1383
1665
|
### v0.19.3
|
|
1666
|
+
|
|
1384
1667
|
- [#143](https://github.com/opencomponents/oc/pull/143) Fix cli crash when `oc dev` reads a broken package.json
|
|
1385
1668
|
|
|
1386
1669
|
### v0.19.1
|
|
1670
|
+
|
|
1387
1671
|
- [#140](https://github.com/opencomponents/oc/pull/140) Hacking on travis
|
|
1388
1672
|
|
|
1389
1673
|
### v0.19.0
|
|
1674
|
+
|
|
1390
1675
|
- [#139](https://github.com/opencomponents/oc/pull/139) prerendered -> unrendered
|
|
1391
1676
|
- [#134](https://github.com/opencomponents/oc/pull/134) Added tagging when upgrading version
|
|
1392
1677
|
- [#133](https://github.com/opencomponents/oc/pull/133) Empty component fix
|
|
@@ -1470,4 +1755,4 @@ tested
|
|
|
1470
1755
|
- [#4](https://github.com/opencomponents/oc/pull/4) Some fixes
|
|
1471
1756
|
- [#3](https://github.com/opencomponents/oc/pull/3) Client componentisation
|
|
1472
1757
|
- [#2](https://github.com/opencomponents/oc/pull/2) Update README.md
|
|
1473
|
-
- [#1](https://github.com/opencomponents/oc/pull/1) Readme
|
|
1758
|
+
- [#1](https://github.com/opencomponents/oc/pull/1) Readme
|