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