From de65b5f83d77acf6b1821ac40c6352a8b8013b12 Mon Sep 17 00:00:00 2001 From: "wuyue.xht" Date: Mon, 28 Sep 2020 16:41:42 +0800 Subject: [PATCH 1/5] =?UTF-8?q?refactor:=20Container=E7=9A=84=E8=81=8C?= =?UTF-8?q?=E8=B4=A3=E5=90=88=E5=B9=B6=E5=88=B0App?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/runtime/package.json | 2 +- packages/runtime/src/core/container.ts | 92 -------------------------- packages/runtime/src/core/index.ts | 84 +++++++++++++++++------ 3 files changed, 64 insertions(+), 114 deletions(-) delete mode 100644 packages/runtime/src/core/container.ts diff --git a/packages/runtime/package.json b/packages/runtime/package.json index 9ef93adcc..a49605f8a 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "1.0.8-0", + "version": "1.0.9", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/runtime/src/core/container.ts b/packages/runtime/src/core/container.ts deleted file mode 100644 index df290613f..000000000 --- a/packages/runtime/src/core/container.ts +++ /dev/null @@ -1,92 +0,0 @@ -import Provider from './provider'; - -export interface ILayoutOptions { - componentName?: string; - props?: any; -} - -export interface IErrorBoundaryConfig { - fallbackUI: any; - afterCatch?: (...rest: any) => any -} - -export default class Container { - private renderer: any = null; - - private layouts: { [key: string]: { content: any; props: any } } = {}; - - private loading: any = null; - - private errorBoundary: IErrorBoundaryConfig = { fallbackUI: () => '', afterCatch: () => {} }; - - private providers: { [key: string]: Provider; } = {}; - - registerRenderer(renderer: any): any { - this.renderer = renderer; - } - - registerLayout(Layout: any, options: ILayoutOptions): any { - if (!options) { - return; - } - const { componentName, props = {} } = options; - if (!componentName || !Layout) { - return; - } - this.layouts[componentName] = { content: Layout, props }; - } - - registerLoading(component: any) { - if (!component) { - return; - } - this.loading = component; - } - - registerErrorBoundary(config: IErrorBoundaryConfig) { - if (!config) { - return; - } - this.errorBoundary = config; - } - - registerProvider(CustomProvider: any) { - try { - const p = new CustomProvider(); - this.providers[p.getContainerId()] = p; - } catch (error) { - console.error(error.message); - } - } - - getLayout(componentName: string) { - if (!componentName) { - return; - } - return this.layouts[componentName]; - } - - getRenderer(): any { - return this.renderer; - } - - getLoading(): any { - return this.loading; - } - - getErrorBoundary(): any { - return this.errorBoundary; - } - - getProvider(id?: string) { - if (!id) { - for (const key in this.providers) { - if (Object.prototype.hasOwnProperty.call(this.providers, key)) { - return this.providers[key]; - } - } - } else { - return this.providers[id]; - } - } -} diff --git a/packages/runtime/src/core/index.ts b/packages/runtime/src/core/index.ts index 720e9e471..1bc32227e 100644 --- a/packages/runtime/src/core/index.ts +++ b/packages/runtime/src/core/index.ts @@ -1,56 +1,98 @@ -import Container, { ILayoutOptions, IErrorBoundaryConfig } from './container'; import Provider from './provider'; import runApp from './runApp'; -class App { - private container: Container; +export interface ILayoutOptions { + componentName?: string; + props?: any; +} - constructor() { - this.container = new Container(); - } +export interface IErrorBoundaryConfig { + fallbackUI: any; + afterCatch?: (...rest: any) => any +} + +class App { + private renderer: any = null; + + private layouts: { [key: string]: { content: any; props: any } } = {}; + + private loading: any = null; + + private errorBoundary: IErrorBoundaryConfig = { fallbackUI: () => '', afterCatch: () => {} }; + + private providers: { [key: string]: Provider; } = {}; run() { runApp(); } registerRenderer(renderer: any): any { - this.container.registerRenderer(renderer); + this.renderer = renderer; } registerLayout(Layout: any, options: ILayoutOptions): any { - this.container.registerLayout(Layout, options); + if (!options) { + return; + } + const { componentName, props = {} } = options; + if (!componentName || !Layout) { + return; + } + this.layouts[componentName] = { content: Layout, props }; } registerLoading(component: any) { - this.container.registerLoading(component); - } - - registerProvider(CustomProvider: any) { - this.container.registerProvider(CustomProvider); + if (!component) { + return; + } + this.loading = component; } registerErrorBoundary(config: IErrorBoundaryConfig) { - this.container.registerErrorBoundary(config); + if (!config) { + return; + } + this.errorBoundary = config; + } + + registerProvider(CustomProvider: any) { + try { + const p = new CustomProvider(); + this.providers[p.getContainerId()] = p; + } catch (error) { + console.error(error.message); + } } getLayout(componentName: string) { - return this.container.getLayout(componentName); + if (!componentName) { + return; + } + return this.layouts[componentName]; } getRenderer(): any { - return this.container.getRenderer(); + return this.renderer; } getLoading(): any { - return this.container.getLoading(); + return this.loading; } - getErrorBoundary(): IErrorBoundaryConfig { - return this.container.getErrorBoundary(); + getErrorBoundary(): any { + return this.errorBoundary; } - getProvider(id?: string): Provider | undefined { - return this.container.getProvider(id); + getProvider(id?: string) { + if (!id) { + for (const key in this.providers) { + if (Object.prototype.hasOwnProperty.call(this.providers, key)) { + return this.providers[key]; + } + } + } else { + return this.providers[id]; + } } } From 738dd8c11d769b50cf4e30d81e211d7b2452549e Mon Sep 17 00:00:00 2001 From: "wuyue.xht" Date: Mon, 28 Sep 2020 16:46:48 +0800 Subject: [PATCH 2/5] =?UTF-8?q?chore:=20=E6=9B=B4=E6=AD=A3getRouterView?= =?UTF-8?q?=E6=96=B9=E6=B3=95=E7=9A=84=E8=BF=94=E5=9B=9E=E5=80=BC=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/react-provider/package.json | 2 +- packages/react-provider/src/provider.tsx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/react-provider/package.json b/packages/react-provider/package.json index 0882a7286..29f1c6b84 100644 --- a/packages/react-provider/package.json +++ b/packages/react-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-provider", - "version": "1.0.8-0", + "version": "1.0.9", "description": "React Provider for Runtime", "files": [ "es", diff --git a/packages/react-provider/src/provider.tsx b/packages/react-provider/src/provider.tsx index f2621df75..aedc00ee7 100644 --- a/packages/react-provider/src/provider.tsx +++ b/packages/react-provider/src/provider.tsx @@ -1,4 +1,4 @@ -import { createElement, ReactType, ReactElement } from 'react'; +import { createElement, ComponentType, ReactElement } from 'react'; import ReactDOM from 'react-dom'; import { Router } from '@recore/router'; import { app, Provider } from '@ali/lowcode-runtime'; @@ -46,7 +46,7 @@ export default class ReactProvider extends Provider { } // 内置实现 for 动态化渲染 - getRouterView(): ReactType { + getRouterView(): ComponentType { const routerConfig = this.getRouterConfig(); if (!routerConfig) { return () => null; @@ -84,7 +84,7 @@ export default class ReactProvider extends Provider { defined: { keepAlive: true }, }); } - const appHelper = new AppHelper(); + const appHelper = new AppHelper({}); appHelper.set('utils', this.getUtils()); appHelper.set('constants', this.getConstants()); const self = this; From e05790b4fa3eda25f4904542a4bc2b037b750adb Mon Sep 17 00:00:00 2001 From: "wuyue.xht" Date: Mon, 28 Sep 2020 17:55:53 +0800 Subject: [PATCH 3/5] =?UTF-8?q?fix:=20=E5=87=BD=E6=95=B0=E7=AD=BE=E5=90=8D?= =?UTF-8?q?=E5=8F=8A=E6=96=B9=E6=B3=95=E5=90=8D=E6=8B=BC=E5=86=99=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/rax-provider/src/provider.ts | 9 +++-- packages/rax-simulator-renderer/package.json | 2 +- packages/runtime/src/core/provider.ts | 37 +++++++++++++------- 3 files changed, 30 insertions(+), 18 deletions(-) diff --git a/packages/rax-provider/src/provider.ts b/packages/rax-provider/src/provider.ts index d9e571850..7e8cd9ca2 100644 --- a/packages/rax-provider/src/provider.ts +++ b/packages/rax-provider/src/provider.ts @@ -18,8 +18,7 @@ export default class RaxProvider extends Provider { } const { componentName: layoutName, props: layoutProps } = layoutConfig; const { content: Layout, props: extraLayoutProps } = app.getLayout(layoutName) || {}; - const sectionalRender = this.isSectionalRender(); - if (!sectionalRender && Layout) { + if (!this.isSectionalRender && Layout) { App = (props) => createElement( Layout, { ...layoutProps, ...extraLayoutProps }, @@ -89,8 +88,8 @@ export default class RaxProvider extends Provider { if (!pageId) { return null; } - if (this.getlazyElement(pageId)) { - return this.getlazyElement(pageId); + if (this.getLazyElement(pageId)) { + return this.getLazyElement(pageId); } const lazyElement = createElement(LazyComponent, { // eslint-disable-next-line no-return-await @@ -98,7 +97,7 @@ export default class RaxProvider extends Provider { key: pageId, ...props, }); - this.setlazyElement(pageId, lazyElement); + this.setLazyElement(pageId, lazyElement); return lazyElement; } } diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index 22af41aaf..af6e971f3 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -55,5 +55,5 @@ "publishConfig": { "registry": "https://registry.npm.alibaba-inc.com" }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@1.0.7-0/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-rax-simulator-renderer@1.0.8-0/build/index.html" } diff --git a/packages/runtime/src/core/provider.ts b/packages/runtime/src/core/provider.ts index a65dd5eb3..3c24dd7e5 100644 --- a/packages/runtime/src/core/provider.ts +++ b/packages/runtime/src/core/provider.ts @@ -140,7 +140,17 @@ export default class Provider { if (!appData) { return; } - const { history, layout, routes, containerId, components, componentsMap, utils, constants, i18n } = appData; + const { + history, + layout, + routes, + containerId, + components, + componentsMap, + utils, + constants, + i18n, + } = appData; this.setHistory(history); this.setLayoutConfig(layout); this.setRouterConfig(routes); @@ -181,20 +191,20 @@ export default class Provider { this.emitter.on('ready', cb); } - emitPageReady() { - this.emitter.emit('pageReady'); + emitPageReady(data?: any) { + this.emitter.emit('pageReady', data || ''); } - emitPageEnter() { - this.emitter.emit('pageEnter'); + emitPageEnter(data?: any) { + this.emitter.emit('pageEnter', data || ''); } - emitPageUpdate() { - this.emitter.emit('pageUpdate'); + emitPageUpdate(data?: any) { + this.emitter.emit('pageUpdate', data || ''); } - emitPageLeave() { - this.emitter.emit('pageLeave'); + emitPageLeave(data?: any) { + this.emitter.emit('pageLeave', data || ''); } onPageReady(cb: (params?: any) => void) { @@ -229,11 +239,13 @@ export default class Provider { throw new Error('Method called "getAppData" not implemented.'); } - getPageData(): any { + // eslint-disable-next-line + getPageData(pageId: string): any { throw new Error('Method called "getPageData" not implemented.'); } - getLazyComponent(): any { + // eslint-disable-next-line + getLazyComponent(pageId: string, props: any): any { throw new Error('Method called "getLazyComponent" not implemented.'); } @@ -242,7 +254,8 @@ export default class Provider { throw new Error('Method called "createApp" not implemented.'); } - runApp() { + // eslint-disable-next-line + runApp(App: any, config: IAppConfig) { throw new Error('Method called "runApp" not implemented.'); } From dd9c53ab36967c7704d26768094a5ff1e336e1a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8D=A3=E5=BD=AC?= Date: Mon, 28 Sep 2020 20:58:38 +0800 Subject: [PATCH 4/5] Publish - @ali/lowcode-code-generator@1.0.8 - @ali/lowcode-datasource-engine@0.1.12 - @ali/lowcode-demo-server@1.0.8 - @ali/lowcode-demo@1.0.8 - @ali/lowcode-designer@1.0.8 - @ali/lowcode-editor-core@1.0.8 - @ali/lowcode-editor-preset-general@1.0.8 - @ali/lowcode-editor-preset-vision@1.0.8 - @ali/lowcode-editor-setters@1.0.8 - @ali/lowcode-editor-skeleton@1.0.8 - @ali/lowcode-material-parser@1.0.8 - @ali/lowcode-plugin-components-pane@1.0.8 - @ali/lowcode-plugin-designer@1.0.8 - @ali/lowcode-plugin-event-bind-dialog@1.0.8 - @ali/lowcode-plugin-outline-pane@1.0.8 - @ali/lowcode-plugin-sample-logo@1.0.8 - @ali/lowcode-plugin-sample-preview@1.0.8 - @ali/lowcode-plugin-source-editor@1.0.8 - @ali/lowcode-plugin-undo-redo@1.0.8 - @ali/lowcode-plugin-variable-bind-dialog@1.0.8 - @ali/lowcode-plugin-zh-en@1.0.8 - @ali/lowcode-rax-provider@1.0.8 - @ali/lowcode-rax-renderer@1.0.8 - @ali/lowcode-rax-simulator-renderer@1.0.8 - @ali/lowcode-react-provider@1.0.10 - @ali/lowcode-react-renderer@1.0.8 - @ali/lowcode-react-simulator-renderer@1.0.8 - @ali/lowcode-runtime@1.0.10 - @ali/lowcode-types@1.0.8 - @ali/lowcode-utils@1.0.8 --- packages/code-generator/CHANGELOG.md | 62 +++++++++++++++++++ packages/code-generator/package.json | 2 +- packages/datasource-engine/CHANGELOG.md | 14 +++++ packages/datasource-engine/package.json | 2 +- packages/demo-server/CHANGELOG.md | 8 +++ packages/demo-server/package.json | 2 +- packages/demo/CHANGELOG.md | 12 ++++ packages/demo/package.json | 32 +++++----- packages/designer/CHANGELOG.md | 11 ++++ packages/designer/package.json | 8 +-- packages/editor-core/CHANGELOG.md | 8 +++ packages/editor-core/package.json | 6 +- packages/editor-preset-general/CHANGELOG.md | 8 +++ packages/editor-preset-general/package.json | 16 ++--- packages/editor-preset-vision/CHANGELOG.md | 8 +++ packages/editor-preset-vision/package.json | 12 ++-- packages/editor-setters/CHANGELOG.md | 16 +++++ packages/editor-setters/package.json | 4 +- packages/editor-skeleton/CHANGELOG.md | 8 +++ packages/editor-skeleton/package.json | 10 +-- packages/material-parser/CHANGELOG.md | 8 +++ packages/material-parser/package.json | 2 +- packages/plugin-components-pane/CHANGELOG.md | 16 +++++ packages/plugin-components-pane/package.json | 8 +-- packages/plugin-designer/CHANGELOG.md | 8 +++ packages/plugin-designer/package.json | 6 +- .../plugin-event-bind-dialog/CHANGELOG.md | 8 +++ .../plugin-event-bind-dialog/package.json | 6 +- packages/plugin-outline-pane/CHANGELOG.md | 8 +++ packages/plugin-outline-pane/package.json | 10 +-- packages/plugin-sample-logo/CHANGELOG.md | 8 +++ packages/plugin-sample-logo/package.json | 4 +- packages/plugin-sample-preview/CHANGELOG.md | 8 +++ packages/plugin-sample-preview/package.json | 12 ++-- packages/plugin-source-editor/CHANGELOG.md | 16 +++++ packages/plugin-source-editor/package.json | 4 +- packages/plugin-undo-redo/CHANGELOG.md | 8 +++ packages/plugin-undo-redo/package.json | 12 ++-- .../plugin-variable-bind-dialog/CHANGELOG.md | 8 +++ .../plugin-variable-bind-dialog/package.json | 4 +- packages/plugin-zh-en/CHANGELOG.md | 8 +++ packages/plugin-zh-en/package.json | 8 +-- packages/rax-provider/CHANGELOG.md | 11 ++++ packages/rax-provider/package.json | 4 +- packages/rax-render/CHANGELOG.md | 15 ++++- packages/rax-render/package.json | 4 +- packages/rax-simulator-renderer/CHANGELOG.md | 11 ++++ packages/rax-simulator-renderer/package.json | 10 +-- packages/react-provider/CHANGELOG.md | 8 +++ packages/react-provider/package.json | 4 +- packages/react-renderer/CHANGELOG.md | 8 +++ packages/react-renderer/package.json | 2 +- .../react-simulator-renderer/CHANGELOG.md | 8 +++ .../react-simulator-renderer/package.json | 10 +-- packages/runtime/CHANGELOG.md | 11 ++++ packages/runtime/package.json | 2 +- packages/types/CHANGELOG.md | 23 +++++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++ packages/utils/package.json | 4 +- 60 files changed, 466 insertions(+), 108 deletions(-) create mode 100644 packages/datasource-engine/CHANGELOG.md diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index dfdf6a9b8..e721ecaf3 100644 --- a/packages/code-generator/CHANGELOG.md +++ b/packages/code-generator/CHANGELOG.md @@ -3,6 +3,68 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-code-generator@1.0.8-0...@ali/lowcode-code-generator@1.0.8) (2020-09-28) + + +### Bug Fixes + +* 🐛 解决 Rax 出码到小程序的时候 require(xxx) 语句不能被编译的问题 ([332a473](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/332a473)) +* 🐛 经验证发现小程序里面还是得包上 eval 否则 Rax 框架会误把 context 发送到渲染进程而出错 ([c7a10c0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/c7a10c0)) +* 🐛 若全量引入 lodash 则在小程序下会跑不通,所以改成引入 lodash/clone ([a1a3b68](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/a1a3b68)) +* 🐛 小程序里面不支持可选链 "?.", 先直接访问 dataSourceEngine 吧 ([36c486b](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/36c486b)) +* 🐛 fix typo of dataHandler ([acd1f06](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/acd1f06)) +* 🐛 Rax 出码到小程序, 事件处理函数绑定 JSExpression 时也不应该包裹一个 eval, 小程序会报错 ([9f129aa](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/9f129aa)) +* 🐛 Result use types package ([dd97a0c](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/dd97a0c)) +* 🐛 use lowcode types ([b11425b](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b11425b)) +* enhance api design ([95d67c1](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/95d67c1)) +* fix test result ([7f6fbe8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/7f6fbe8)) +* ignore eslintrc in test-case ([c0ef4bc](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/c0ef4bc)) +* merge problems & deps bugs ([7a36eab](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/7a36eab)) +* miniAppBuildType config(temp) ([584b4c2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/584b4c2)) +* miss scope ([97242c3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/97242c3)) + + +### Features + +* 🎸 按 826 对齐结论调整出码和数据源引擎 ([b9a562e](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b9a562e)) +* 🎸 补充对数据源的一些处理 ([4572b53](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/4572b53)) +* 🎸 补充一个默认的数据源的构建后的样子 ([78f34ab](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/78f34ab)) +* 🎸 出码模块的 DiskPublisher 改成支持传入自定义 FS ([46c896e](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/46c896e)) +* 🎸 出码模块的 schema 相关的类型统一都改成引用 [@ali](https://gitlab.alibaba-inc.com/ali)/lowcode-types 中的,与设计器一致 ([27a9800](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/27a9800)) +* 🎸 导出 Rax 的 solutions 的定义 ([27f0e13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/27f0e13)) +* 🎸 搞定 Rax 出码的时候的 package.json 中的 dependencies ([eba172c](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/eba172c)) +* 🎸 还原出码模块的 solutions 的导出 ([c2a7d63](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/c2a7d63)) +* 🎸 解决通过 Rax 出码到小程序的时候循环里面没法用循环变量的问题 ([779ea7c](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/779ea7c)) +* 🎸 容器的模块名统一都用 PascalCase, 并为页面添加特定后缀防止与组件名冲突 ([42f7bdb](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/42f7bdb)) +* 🎸 数据源的类型默认是 fetch ([ec8a191](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/ec8a191)) +* 🎸 数据源的requestHandlers选项改成requestHandlersMap, 命名更清晰 ([42e41bb](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/42e41bb)) +* 🎸 添加 didMount 和 willUnmount 两个基本的生命周期 ([e33a95e](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/e33a95e)) +* 🎸 添加一个判断 ContainerSchema 的 util 方便后续用 ([c3fdfe5](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/c3fdfe5)) +* 🎸 通过 config.miniAppBuildType 来支持 Rax 的 runtime 模式 ([35fcdd9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/35fcdd9)) +* 🎸 完善 Rax 出码, 补充更复杂的带有数据源绑定/条件/循环以及 Utils 的测试用例并 pass ([adcfacb](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/adcfacb)) +* 🎸 完善 Rax 出码, 跑通第一个测试用例👏👏👏 ([9f62110](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/9f62110)) +* 🎸 完善 Rax 出码的时候的全局样式处理 ([058b087](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/058b087)) +* 🎸 为 Rax 出码增加对 i18n 的支持 ([8d198bd](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/8d198bd)) +* 🎸 新增 less 文件类型的定义, 以备后续某些 solution 出码用 less 文件作为样式文件 ([cac29d8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/cac29d8)) +* 🎸 优化 Rax 出码时对绑定的表达式的包裹逻辑, 对于一些简单的安全的表达式不做包裹 ([facfa2a](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/facfa2a)) +* 🎸 优化 ResultDir 的报错信息, 更方便定位问题 ([965ef4a](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/965ef4a)) +* 🎸 优化完善 Rax 出码相关的模板和插件 ([c3d909a](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/c3d909a)) +* 🎸 与国凯的数据源保持一致,将 urlParams 所需的 search 参数直接传入 ([19fabc1](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/19fabc1)) +* 🎸 与国凯的数据源引擎联调,对齐包名和导出方式 ([fea0946](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/fea0946)) +* 🎸 支持对 JSON 文件进行 prettier 格式化 ([b7c4854](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b7c4854)) +* 🎸 add rax code generator solution and test case ([20c0953](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/20c0953)) +* 🎸 custom 类型的数据源请求不需要 handler ([fa939c4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/fa939c4)) +* 🎸 globalStyle 支持定制样式文件的后缀名 ([e78dae0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/e78dae0)) +* 🎸 Rax 出码器支持路由功能 ([8ecc002](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/8ecc002)) +* 🎸 Rax 出码适配数据源引擎的默认 requestHandlers ([5f529ae](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/5f529ae)) +* 🎸 Rax 出码支持 constants 常量定义 ([fcf6c32](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/fcf6c32)) +* 🎸 Rax 出码中添加数据源的 dataHandler 并与数据源引擎的对齐参数 ([42b9db3](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/42b9db3)) +* 🎸 Rax 出码中增加对 urlParams 这种特殊数据源的处理 ([c743afd](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/c743afd)) + + + + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-code-generator@1.0.7-0...@ali/lowcode-code-generator@1.0.8-0) (2020-09-09) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index 508ce6206..922ba1961 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "1.0.8-0", + "version": "1.0.8", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/datasource-engine/CHANGELOG.md b/packages/datasource-engine/CHANGELOG.md new file mode 100644 index 000000000..72bb0deb1 --- /dev/null +++ b/packages/datasource-engine/CHANGELOG.md @@ -0,0 +1,14 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## 0.1.12 (2020-09-28) + + +### Features + +* 🎸 按 826 对齐结论调整出码和数据源引擎 ([b9a562e](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b9a562e)) +* 🎸 添加数据源引擎 ([624e2f8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/624e2f8)) +* 🎸 与国凯的数据源保持一致,将 urlParams 所需的 search 参数直接传入 ([19fabc1](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/19fabc1)) diff --git a/packages/datasource-engine/package.json b/packages/datasource-engine/package.json index 321e39a55..46e0d1c30 100644 --- a/packages/datasource-engine/package.json +++ b/packages/datasource-engine/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-datasource-engine", - "version": "0.1.11", + "version": "0.1.12", "description": "DataSource Engine for lowcode", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/demo-server/CHANGELOG.md b/packages/demo-server/CHANGELOG.md index c62096d70..84aff7045 100644 --- a/packages/demo-server/CHANGELOG.md +++ b/packages/demo-server/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo-server@1.0.8-0...@ali/lowcode-demo-server@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-demo-server + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo-server@1.0.7-0...@ali/lowcode-demo-server@1.0.8-0) (2020-09-09) diff --git a/packages/demo-server/package.json b/packages/demo-server/package.json index 5fc5e52da..ceee32e47 100644 --- a/packages/demo-server/package.json +++ b/packages/demo-server/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo-server", - "version": "1.0.8-0", + "version": "1.0.8", "private": true, "description": "低代码引擎 DEMO Server 端", "scripts": { diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index c6b31221b..14e63b25e 100644 --- a/packages/demo/CHANGELOG.md +++ b/packages/demo/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@1.0.8-0...@ali/lowcode-demo@1.0.8) (2020-09-28) + + +### Features + +* 新增class-name setter ([a9f1131](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/a9f1131)) +* 组件面板支持业务组件独立展示 ([e9d8d3d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/e9d8d3d)) + + + + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@0.8.65...@ali/lowcode-demo@1.0.8-0) (2020-09-09) diff --git a/packages/demo/package.json b/packages/demo/package.json index 3aa9df46a..01c9c7faa 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "1.0.8-0", + "version": "1.0.8", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8-0", - "@ali/lowcode-editor-skeleton": "^1.0.8-0", - "@ali/lowcode-plugin-components-pane": "^1.0.8-0", - "@ali/lowcode-plugin-designer": "^1.0.8-0", - "@ali/lowcode-plugin-event-bind-dialog": "^1.0.8-0", - "@ali/lowcode-plugin-outline-pane": "^1.0.8-0", - "@ali/lowcode-plugin-sample-logo": "^1.0.8-0", - "@ali/lowcode-plugin-sample-preview": "^1.0.8-0", + "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-editor-skeleton": "^1.0.8", + "@ali/lowcode-plugin-components-pane": "^1.0.8", + "@ali/lowcode-plugin-designer": "^1.0.8", + "@ali/lowcode-plugin-event-bind-dialog": "^1.0.8", + "@ali/lowcode-plugin-outline-pane": "^1.0.8", + "@ali/lowcode-plugin-sample-logo": "^1.0.8", + "@ali/lowcode-plugin-sample-preview": "^1.0.8", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^1.0.8-0", - "@ali/lowcode-plugin-variable-bind-dialog": "^1.0.8-0", - "@ali/lowcode-plugin-zh-en": "^1.0.8-0", - "@ali/lowcode-react-renderer": "^1.0.8-0", - "@ali/lowcode-runtime": "^1.0.8-0", - "@ali/lowcode-utils": "^1.0.8-0", + "@ali/lowcode-plugin-undo-redo": "^1.0.8", + "@ali/lowcode-plugin-variable-bind-dialog": "^1.0.8", + "@ali/lowcode-plugin-zh-en": "^1.0.8", + "@ali/lowcode-react-renderer": "^1.0.8", + "@ali/lowcode-runtime": "^1.0.10", + "@ali/lowcode-utils": "^1.0.8", "@ali/ve-action-pane": "^4.7.0-beta.0", "@ali/ve-datapool-pane": "^6.4.3", "@ali/ve-history-pane": "4.0.0", @@ -38,8 +38,8 @@ "@alifd/next": "^1.19.12", "@alife/theme-lowcode-light": "^0.1.0", "compare-versions": "^3.0.1", - "react": "^16.8.1", "monaco-editor": "0.21.0", + "react": "^16.8.1", "react-dom": "^16.8.1", "streamsaver": "^2.0.4", "web-streams-polyfill": "^2.1.1" diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index 553f6b0ab..b2ead3093 100644 --- a/packages/designer/CHANGELOG.md +++ b/packages/designer/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@1.0.8-0...@ali/lowcode-designer@1.0.8) (2020-09-28) + + +### Bug Fixes + +* 支持 checkId 开关功能, 在 setSchema 时关闭, 避免 id 被不断重置 ([44bdda1](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/44bdda1)) + + + + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@0.9.55...@ali/lowcode-designer@1.0.8-0) (2020-09-09) diff --git a/packages/designer/package.json b/packages/designer/package.json index f6ccee18e..6f1658dd1 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "1.0.8-0", + "version": "1.0.8", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,9 +15,9 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8-0", - "@ali/lowcode-types": "^1.0.8-0", - "@ali/lowcode-utils": "^1.0.8-0", + "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-utils": "^1.0.8", "classnames": "^2.2.6", "event": "^1.0.0", "react": "^16", diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index 6b2b1e3ab..a9389b546 100644 --- a/packages/editor-core/CHANGELOG.md +++ b/packages/editor-core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@1.0.8-0...@ali/lowcode-editor-core@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@0.8.36...@ali/lowcode-editor-core@1.0.8-0) (2020-09-09) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index 31e15fbac..244046878 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "1.0.8-0", + "version": "1.0.8", "description": "Core Api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", @@ -15,8 +15,8 @@ "cloud-build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-types": "^1.0.8-0", - "@ali/lowcode-utils": "^1.0.8-0", + "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-utils": "^1.0.8", "@alifd/next": "^1.19.16", "@recore/obx": "^1.0.9", "@recore/obx-react": "^1.0.8", diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index 578b32029..6db3704ec 100644 --- a/packages/editor-preset-general/CHANGELOG.md +++ b/packages/editor-preset-general/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@1.0.8-0...@ali/lowcode-editor-preset-general@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@0.9.40...@ali/lowcode-editor-preset-general@1.0.8-0) (2020-09-09) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index a428f4726..e43da683b 100644 --- a/packages/editor-preset-general/package.json +++ b/packages/editor-preset-general/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-general", - "version": "1.0.8-0", + "version": "1.0.8", "description": "Ali General Editor Preset", "main": "lib/index.js", "files": [ @@ -14,12 +14,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8-0", - "@ali/lowcode-editor-skeleton": "^1.0.8-0", - "@ali/lowcode-plugin-designer": "^1.0.8-0", - "@ali/lowcode-plugin-outline-pane": "^1.0.8-0", - "@ali/lowcode-types": "^1.0.8-0", - "@ali/lowcode-utils": "^1.0.8-0", + "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-editor-skeleton": "^1.0.8", + "@ali/lowcode-plugin-designer": "^1.0.8", + "@ali/lowcode-plugin-outline-pane": "^1.0.8", + "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-utils": "^1.0.8", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -27,7 +27,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^1.0.8-0", + "@ali/lowcode-editor-setters": "^1.0.8", "@alib/build-scripts": "^0.1.18", "@types/events": "^3.0.0", "@types/react": "^16.8.3", diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index 5d87e2561..00d5169c1 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@1.0.8-0...@ali/lowcode-editor-preset-vision@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-vision + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@0.8.57...@ali/lowcode-editor-preset-vision@1.0.8-0) (2020-09-09) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index e5be3e6ac..077f3fd71 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-vision", - "version": "1.0.8-0", + "version": "1.0.8", "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", "private": true, @@ -15,11 +15,11 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^1.0.8-0", - "@ali/lowcode-editor-core": "^1.0.8-0", - "@ali/lowcode-editor-skeleton": "^1.0.8-0", - "@ali/lowcode-plugin-designer": "^1.0.8-0", - "@ali/lowcode-plugin-outline-pane": "^1.0.8-0", + "@ali/lowcode-designer": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-editor-skeleton": "^1.0.8", + "@ali/lowcode-plugin-designer": "^1.0.8", + "@ali/lowcode-plugin-outline-pane": "^1.0.8", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/packages/editor-setters/CHANGELOG.md b/packages/editor-setters/CHANGELOG.md index 220c3a00a..5de3a77af 100644 --- a/packages/editor-setters/CHANGELOG.md +++ b/packages/editor-setters/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-setters@1.0.8-0...@ali/lowcode-editor-setters@1.0.8) (2020-09-28) + + +### Bug Fixes + +* source-editor bug & exp-setter bug ([5cd88d4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/5cd88d4)) + + +### Features + +* 新增class-name setter ([a9f1131](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/a9f1131)) + + + + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-setters@0.9.21...@ali/lowcode-editor-setters@1.0.8-0) (2020-09-09) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index c35b52f22..7ebd2b6e0 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "1.0.8-beta-3", + "version": "1.0.8", "description": "Builtin setters for Ali lowCode engine", "files": [ "es", @@ -21,7 +21,7 @@ "@ali/iceluna-comp-react-node": "^1.0.5", "@ali/iceluna-sdk": "^1.0.5-beta.24", "@ali/lc-style-setter": "^0.0.1", - "@ali/lowcode-editor-core": "^1.0.8-0", + "@ali/lowcode-editor-core": "^1.0.8", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index 5a4eea403..7b663ca94 100644 --- a/packages/editor-skeleton/CHANGELOG.md +++ b/packages/editor-skeleton/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@1.0.8-0...@ali/lowcode-editor-skeleton@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@0.8.61...@ali/lowcode-editor-skeleton@1.0.8-0) (2020-09-09) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index b57c729b6..dee850d9e 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "1.0.8-0", + "version": "1.0.8", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^1.0.8-0", - "@ali/lowcode-editor-core": "^1.0.8-0", - "@ali/lowcode-types": "^1.0.8-0", - "@ali/lowcode-utils": "^1.0.8-0", + "@ali/lowcode-designer": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-utils": "^1.0.8", "@ali/ve-icons": "latest", "@ali/ve-less-variables": "^2.0.0", "@alifd/next": "^1.20.12", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index adadc14d9..bedbe5175 100644 --- a/packages/material-parser/CHANGELOG.md +++ b/packages/material-parser/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-material-parser@1.0.8-0...@ali/lowcode-material-parser@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-material-parser@1.0.7-0...@ali/lowcode-material-parser@1.0.8-0) (2020-09-09) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index 08ab1b70b..816a8a9a5 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "1.0.8-0", + "version": "1.0.8", "description": "material parser for Ali lowCode engine", "main": "lib/index.js", "files": [ diff --git a/packages/plugin-components-pane/CHANGELOG.md b/packages/plugin-components-pane/CHANGELOG.md index 9aa236393..bdb4c6a00 100644 --- a/packages/plugin-components-pane/CHANGELOG.md +++ b/packages/plugin-components-pane/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@1.0.8-0...@ali/lowcode-plugin-components-pane@1.0.8) (2020-09-28) + + +### Bug Fixes + +* 修复 asset 中 componentList 为空时报错的 bug ([49517a6](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/49517a6)) + + +### Features + +* 组件面板支持业务组件独立展示 ([e9d8d3d](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/e9d8d3d)) + + + + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@0.8.57...@ali/lowcode-plugin-components-pane@1.0.8-0) (2020-09-09) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index 414afdced..d4ef348fb 100644 --- a/packages/plugin-components-pane/package.json +++ b/packages/plugin-components-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-components-pane", - "version": "1.0.8-0", + "version": "1.0.8", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -21,9 +21,9 @@ "author": "xiayang.xy", "dependencies": { "@ali/intl-universal": "^0.4.12", - "@ali/lowcode-designer": "^1.0.8-0", - "@ali/lowcode-editor-core": "^1.0.8-0", - "@ali/lowcode-types": "^1.0.8-0", + "@ali/lowcode-designer": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-types": "^1.0.8", "@ali/vu-layer": "^4.0.1", "@ali/vu-uxcore-legao-design": "^1.4.0", "@alifd/next": "^1.19.19", diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index 34430f63b..45a6a9a03 100644 --- a/packages/plugin-designer/CHANGELOG.md +++ b/packages/plugin-designer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@1.0.8-0...@ali/lowcode-plugin-designer@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@0.9.55...@ali/lowcode-plugin-designer@1.0.8-0) (2020-09-09) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index f8bf3ab19..0ac432981 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "1.0.8-0", + "version": "1.0.8", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^1.0.8-0", - "@ali/lowcode-editor-core": "^1.0.8-0", + "@ali/lowcode-designer": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.8", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/plugin-event-bind-dialog/CHANGELOG.md b/packages/plugin-event-bind-dialog/CHANGELOG.md index 427510545..43344e360 100644 --- a/packages/plugin-event-bind-dialog/CHANGELOG.md +++ b/packages/plugin-event-bind-dialog/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@1.0.8-0...@ali/lowcode-plugin-event-bind-dialog@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@0.8.34...@ali/lowcode-plugin-event-bind-dialog@1.0.8-0) (2020-09-09) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index ed7a3cc71..63e355d4a 100644 --- a/packages/plugin-event-bind-dialog/package.json +++ b/packages/plugin-event-bind-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-event-bind-dialog", - "version": "1.0.8-0", + "version": "1.0.8", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8-0", - "@ali/lowcode-types": "^1.0.8-0", + "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-types": "^1.0.8", "@alifd/next": "^1.19.16", "react": "^16.8.1", "react-dom": "^16.8.1" diff --git a/packages/plugin-outline-pane/CHANGELOG.md b/packages/plugin-outline-pane/CHANGELOG.md index 735ed6173..6df9a14ce 100644 --- a/packages/plugin-outline-pane/CHANGELOG.md +++ b/packages/plugin-outline-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@1.0.8-0...@ali/lowcode-plugin-outline-pane@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@0.8.61...@ali/lowcode-plugin-outline-pane@1.0.8-0) (2020-09-09) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index 512d5bb6f..f1d6514dc 100644 --- a/packages/plugin-outline-pane/package.json +++ b/packages/plugin-outline-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-outline-pane", - "version": "1.0.8-0", + "version": "1.0.8", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^1.0.8-0", - "@ali/lowcode-editor-core": "^1.0.8-0", - "@ali/lowcode-types": "^1.0.8-0", - "@ali/lowcode-utils": "^1.0.8-0", + "@ali/lowcode-designer": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-utils": "^1.0.8", "@alifd/next": "^1.19.16", "classnames": "^2.2.6", "react": "^16", diff --git a/packages/plugin-sample-logo/CHANGELOG.md b/packages/plugin-sample-logo/CHANGELOG.md index ebe41a2ca..c605c2daf 100644 --- a/packages/plugin-sample-logo/CHANGELOG.md +++ b/packages/plugin-sample-logo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-logo@1.0.8-0...@ali/lowcode-plugin-sample-logo@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-logo@0.8.33...@ali/lowcode-plugin-sample-logo@1.0.8-0) (2020-09-09) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index e9f8de53c..d886ee72f 100644 --- a/packages/plugin-sample-logo/package.json +++ b/packages/plugin-sample-logo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-logo", - "version": "1.0.8-0", + "version": "1.0.8", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8-0", + "@ali/lowcode-editor-core": "^1.0.8", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index 1d9b90546..c1cf625c5 100644 --- a/packages/plugin-sample-preview/CHANGELOG.md +++ b/packages/plugin-sample-preview/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@1.0.8-0...@ali/lowcode-plugin-sample-preview@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@0.8.59...@ali/lowcode-plugin-sample-preview@1.0.8-0) (2020-09-09) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index fdd05c52f..2a6236216 100644 --- a/packages/plugin-sample-preview/package.json +++ b/packages/plugin-sample-preview/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-preview", - "version": "1.0.8-0", + "version": "1.0.8", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -19,11 +19,11 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^1.0.8-0", - "@ali/lowcode-editor-core": "^1.0.8-0", - "@ali/lowcode-react-renderer": "^1.0.8-0", - "@ali/lowcode-types": "^1.0.8-0", - "@ali/lowcode-utils": "^1.0.8-0", + "@ali/lowcode-designer": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-react-renderer": "^1.0.8", + "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-utils": "^1.0.8", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-source-editor/CHANGELOG.md b/packages/plugin-source-editor/CHANGELOG.md index 27a4a6865..267d0762a 100644 --- a/packages/plugin-source-editor/CHANGELOG.md +++ b/packages/plugin-source-editor/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-source-editor@1.0.8-0...@ali/lowcode-plugin-source-editor@1.0.8) (2020-09-28) + + +### Bug Fixes + +* source-editor bug & exp-setter bug ([5cd88d4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/5cd88d4)) + + +### Features + +* 新增class-name setter ([a9f1131](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/a9f1131)) + + + + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-source-editor@0.8.31...@ali/lowcode-plugin-source-editor@1.0.8-0) (2020-09-09) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index c276ce379..b6d426853 100644 --- a/packages/plugin-source-editor/package.json +++ b/packages/plugin-source-editor/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-source-editor", - "version": "1.0.8-beta-4", + "version": "1.0.8", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8-0", + "@ali/lowcode-editor-core": "^1.0.8", "@alifd/next": "^1.19.16", "js-beautify": "^1.10.1", "prettier": "^1.18.2", diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index cfe219a34..3f2fc6438 100644 --- a/packages/plugin-undo-redo/CHANGELOG.md +++ b/packages/plugin-undo-redo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@1.0.8-0...@ali/lowcode-plugin-undo-redo@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@0.8.59...@ali/lowcode-plugin-undo-redo@1.0.8-0) (2020-09-09) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index c205c8d5b..2106b168b 100644 --- a/packages/plugin-undo-redo/package.json +++ b/packages/plugin-undo-redo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-undo-redo", - "version": "1.0.8-0", + "version": "1.0.8", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^1.0.8-0", - "@ali/lowcode-editor-core": "^1.0.8-0", - "@ali/lowcode-editor-skeleton": "^1.0.8-0", - "@ali/lowcode-types": "^1.0.8-0", - "@ali/lowcode-utils": "^1.0.8-0", + "@ali/lowcode-designer": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-editor-skeleton": "^1.0.8", + "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-utils": "^1.0.8", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/plugin-variable-bind-dialog/CHANGELOG.md b/packages/plugin-variable-bind-dialog/CHANGELOG.md index 793c43af4..0d9c6414f 100644 --- a/packages/plugin-variable-bind-dialog/CHANGELOG.md +++ b/packages/plugin-variable-bind-dialog/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-variable-bind-dialog@1.0.8-0...@ali/lowcode-plugin-variable-bind-dialog@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-variable-bind-dialog@0.8.32...@ali/lowcode-plugin-variable-bind-dialog@1.0.8-0) (2020-09-09) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index 3ea223f0c..b12c6c8e8 100644 --- a/packages/plugin-variable-bind-dialog/package.json +++ b/packages/plugin-variable-bind-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-variable-bind-dialog", - "version": "1.0.8-0", + "version": "1.0.8", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8-0", + "@ali/lowcode-editor-core": "^1.0.8", "@alifd/next": "^1.19.16", "react": "^16.8.1", "react-dom": "^16.8.1" diff --git a/packages/plugin-zh-en/CHANGELOG.md b/packages/plugin-zh-en/CHANGELOG.md index 8154937e6..0a50a94bd 100644 --- a/packages/plugin-zh-en/CHANGELOG.md +++ b/packages/plugin-zh-en/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@1.0.8-0...@ali/lowcode-plugin-zh-en@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@0.8.36...@ali/lowcode-plugin-zh-en@1.0.8-0) (2020-09-09) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 4360d3d75..6b9d864e6 100644 --- a/packages/plugin-zh-en/package.json +++ b/packages/plugin-zh-en/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-zh-en", - "version": "1.0.8-0", + "version": "1.0.8", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8-0", - "@ali/lowcode-types": "^1.0.8-0", - "@ali/lowcode-utils": "^1.0.8-0", + "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-utils": "^1.0.8", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-provider/CHANGELOG.md b/packages/rax-provider/CHANGELOG.md index c6b4102c1..6835f5b16 100644 --- a/packages/rax-provider/CHANGELOG.md +++ b/packages/rax-provider/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-provider@1.0.8-0...@ali/lowcode-rax-provider@1.0.8) (2020-09-28) + + +### Bug Fixes + +* 函数签名及方法名拼写问题 ([e05790b](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/e05790b)) + + + + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-provider@1.0.7-0...@ali/lowcode-rax-provider@1.0.8-0) (2020-09-09) diff --git a/packages/rax-provider/package.json b/packages/rax-provider/package.json index 084c5af84..5403ea64b 100644 --- a/packages/rax-provider/package.json +++ b/packages/rax-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-provider", - "version": "1.0.8-0", + "version": "1.0.8", "description": "Rax Provider for Runtime", "files": [ "es", @@ -18,7 +18,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^1.0.8-0", + "@ali/lowcode-runtime": "^1.0.10", "driver-universal": "^3.1.3", "history": "^4.10.1", "rax-use-router": "^3.0.0" diff --git a/packages/rax-render/CHANGELOG.md b/packages/rax-render/CHANGELOG.md index 62a505f82..00cc0fd58 100644 --- a/packages/rax-render/CHANGELOG.md +++ b/packages/rax-render/CHANGELOG.md @@ -3,7 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-renderer@1.0.8-0...@ali/lowcode-rax-renderer@1.0.8) (2020-09-28) + + +### Bug Fixes + +* get pakcage.json ([8b99a51](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/8b99a51)) + + + + + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-renderer@1.0.7-0...@ali/lowcode-rax-renderer@1.0.8-0) (2020-09-09) @@ -14,7 +25,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - + ## [1.0.7-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-renderer@1.0.6-0...@ali/lowcode-rax-renderer@1.0.7-0) (2020-09-02) diff --git a/packages/rax-render/package.json b/packages/rax-render/package.json index 169bf5206..958c44efd 100644 --- a/packages/rax-render/package.json +++ b/packages/rax-render/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-renderer", - "version": "1.0.8-0", + "version": "1.0.8", "description": "Rax renderer for Ali lowCode engine", "main": "lib/index.js", "module": "lib/index.js", @@ -36,7 +36,7 @@ "@ali/b3-one": "^0.0.17", "@ali/bzb-request": "2.6.1", "@ali/lib-mtop": "^2.5.1", - "@ali/lowcode-utils": "^1.0.8-0", + "@ali/lowcode-utils": "^1.0.8", "classnames": "^2.2.6", "debug": "^4.1.1", "events": "^3.0.0", diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index 491dc1de6..4fe7135ae 100644 --- a/packages/rax-simulator-renderer/CHANGELOG.md +++ b/packages/rax-simulator-renderer/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-simulator-renderer@1.0.8-0...@ali/lowcode-rax-simulator-renderer@1.0.8) (2020-09-28) + + +### Bug Fixes + +* 函数签名及方法名拼写问题 ([e05790b](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/e05790b)) + + + + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-simulator-renderer@0.8.60...@ali/lowcode-rax-simulator-renderer@1.0.8-0) (2020-09-09) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index af6e971f3..d6d913a73 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-simulator-renderer", - "version": "1.0.8-0", + "version": "1.0.8", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,10 +13,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^1.0.8-0", - "@ali/lowcode-rax-renderer": "^1.0.8-0", - "@ali/lowcode-types": "^1.0.8-0", - "@ali/lowcode-utils": "^1.0.8-0", + "@ali/lowcode-designer": "^1.0.8", + "@ali/lowcode-rax-renderer": "^1.0.8", + "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-utils": "^1.0.8", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", diff --git a/packages/react-provider/CHANGELOG.md b/packages/react-provider/CHANGELOG.md index 7f853a2a9..ac997590f 100644 --- a/packages/react-provider/CHANGELOG.md +++ b/packages/react-provider/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-provider@1.0.8-0...@ali/lowcode-react-provider@1.0.10) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-react-provider + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-provider@1.0.7-0...@ali/lowcode-react-provider@1.0.8-0) (2020-09-09) diff --git a/packages/react-provider/package.json b/packages/react-provider/package.json index 29f1c6b84..097f716ab 100644 --- a/packages/react-provider/package.json +++ b/packages/react-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-provider", - "version": "1.0.9", + "version": "1.0.10", "description": "React Provider for Runtime", "files": [ "es", @@ -25,7 +25,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^1.0.8-0", + "@ali/lowcode-runtime": "^1.0.10", "@ali/lowcode-utils": "^1.0.7", "@recore/router": "^1.0.11", "react": "^16", diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index 135fc98e7..f9d9e02c0 100644 --- a/packages/react-renderer/CHANGELOG.md +++ b/packages/react-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-renderer@1.0.8-0...@ali/lowcode-react-renderer@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-react-renderer + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-renderer@1.0.7-0...@ali/lowcode-react-renderer@1.0.8-0) (2020-09-09) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index c59a124ea..d03e81f48 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "1.0.8-0", + "version": "1.0.8", "description": "react renderer for ali lowcode engine", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/react-simulator-renderer/CHANGELOG.md b/packages/react-simulator-renderer/CHANGELOG.md index 97be50f50..b09ec6c34 100644 --- a/packages/react-simulator-renderer/CHANGELOG.md +++ b/packages/react-simulator-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@1.0.8-0...@ali/lowcode-react-simulator-renderer@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@0.8.61...@ali/lowcode-react-simulator-renderer@1.0.8-0) (2020-09-09) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index 981ff803d..e96835df6 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-simulator-renderer", - "version": "1.0.8-0", + "version": "1.0.8", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -16,10 +16,10 @@ "build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-designer": "^1.0.8-0", - "@ali/lowcode-react-renderer": "^1.0.8-0", - "@ali/lowcode-types": "^1.0.8-0", - "@ali/lowcode-utils": "^1.0.8-0", + "@ali/lowcode-designer": "^1.0.8", + "@ali/lowcode-react-renderer": "^1.0.8", + "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-utils": "^1.0.8", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index 778f4ad5c..20db2c31f 100644 --- a/packages/runtime/CHANGELOG.md +++ b/packages/runtime/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-runtime@1.0.8-0...@ali/lowcode-runtime@1.0.10) (2020-09-28) + + +### Bug Fixes + +* 函数签名及方法名拼写问题 ([e05790b](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/e05790b)) + + + + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-runtime@1.0.7-0...@ali/lowcode-runtime@1.0.8-0) (2020-09-09) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index a49605f8a..97b3b5444 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "1.0.9", + "version": "1.0.10", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index a1b884eb4..b776cb076 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -3,6 +3,29 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-types@1.0.8-0...@ali/lowcode-types@1.0.8) (2020-09-28) + + +### Bug Fixes + +* 🐛 根据低代码规范,数据源的配置中isInit和 type 都是有默认值的,所以应该是可选的 ([4baf0b4](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/4baf0b4)) +* 🐛 use lowcode types ([b11425b](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/b11425b)) +* fix test result ([7f6fbe8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/7f6fbe8)) +* miniAppBuildType config(temp) ([584b4c2](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/584b4c2)) + + +### Features + +* 🎸 按照中后台搭建协议规范文档补充 JSFunction 的定义和数据源定义中一些字段 ([8b1d0c7](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/8b1d0c7)) +* 🎸 补充规范中定义的 JSFunction 类型 ([9e32525](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/9e32525)) +* 🎸 根据低代码协议文档, 将 BlockSchema 也改成继承自 ContainerSchema ([7901c8e](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/7901c8e)) +* 🎸 根据低代码协议文档, 完善UtilsMap的定义 ([7fe4bc0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/7fe4bc0)) +* 🎸 urlParams 类型的数据源不需要 options, 所以 options 改成可选为好 ([8114c6f](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/commit/8114c6f)) + + + + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-types@0.8.19...@ali/lowcode-types@1.0.8-0) (2020-09-09) diff --git a/packages/types/package.json b/packages/types/package.json index 5117231e8..a48d8c0c2 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "1.0.8-0", + "version": "1.0.8", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index bfc98654c..29f99f20d 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-utils@1.0.8-0...@ali/lowcode-utils@1.0.8) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-utils@0.8.22...@ali/lowcode-utils@1.0.8-0) (2020-09-09) diff --git a/packages/utils/package.json b/packages/utils/package.json index 4f3918fc7..4a9ce773e 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "1.0.8-0", + "version": "1.0.8", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^1.0.8-0", + "@ali/lowcode-types": "^1.0.8", "@alifd/next": "^1.19.16", "react": "^16" }, From 6ed4a0a00a356334af1380eff8834024cb511963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8D=A3=E5=BD=AC?= Date: Mon, 28 Sep 2020 21:12:38 +0800 Subject: [PATCH 5/5] Publish - @ali/lowcode-code-generator@1.0.9 - @ali/lowcode-datasource-engine@0.1.13 - @ali/lowcode-demo-server@1.0.9 - @ali/lowcode-demo@1.0.9 - @ali/lowcode-designer@1.0.9 - @ali/lowcode-editor-core@1.0.9 - @ali/lowcode-editor-preset-general@1.0.9 - @ali/lowcode-editor-preset-vision@1.0.9 - @ali/lowcode-editor-setters@1.0.9 - @ali/lowcode-editor-skeleton@1.0.9 - @ali/lowcode-material-parser@1.0.9 - @ali/lowcode-plugin-components-pane@1.0.9 - @ali/lowcode-plugin-designer@1.0.9 - @ali/lowcode-plugin-event-bind-dialog@1.0.9 - @ali/lowcode-plugin-outline-pane@1.0.9 - @ali/lowcode-plugin-sample-logo@1.0.9 - @ali/lowcode-plugin-sample-preview@1.0.9 - @ali/lowcode-plugin-source-editor@1.0.9 - @ali/lowcode-plugin-undo-redo@1.0.9 - @ali/lowcode-plugin-variable-bind-dialog@1.0.9 - @ali/lowcode-plugin-zh-en@1.0.9 - @ali/lowcode-rax-provider@1.0.9 - @ali/lowcode-rax-renderer@1.0.9 - @ali/lowcode-rax-simulator-renderer@1.0.9 - @ali/lowcode-react-provider@1.0.11 - @ali/lowcode-react-renderer@1.0.9 - @ali/lowcode-react-simulator-renderer@1.0.9 - @ali/lowcode-runtime@1.0.11 - @ali/lowcode-types@1.0.9 - @ali/lowcode-utils@1.0.9 --- packages/code-generator/CHANGELOG.md | 8 +++++ packages/code-generator/package.json | 4 +-- packages/datasource-engine/CHANGELOG.md | 8 +++++ packages/datasource-engine/package.json | 2 +- packages/demo-server/CHANGELOG.md | 8 +++++ packages/demo-server/package.json | 2 +- packages/demo/CHANGELOG.md | 8 +++++ packages/demo/package.json | 30 +++++++++---------- packages/designer/CHANGELOG.md | 8 +++++ packages/designer/package.json | 8 ++--- packages/editor-core/CHANGELOG.md | 8 +++++ packages/editor-core/package.json | 6 ++-- packages/editor-preset-general/CHANGELOG.md | 8 +++++ packages/editor-preset-general/package.json | 16 +++++----- packages/editor-preset-vision/CHANGELOG.md | 8 +++++ packages/editor-preset-vision/package.json | 12 ++++---- packages/editor-setters/CHANGELOG.md | 8 +++++ packages/editor-setters/package.json | 4 +-- packages/editor-skeleton/CHANGELOG.md | 8 +++++ packages/editor-skeleton/package.json | 10 +++---- packages/material-parser/CHANGELOG.md | 8 +++++ packages/material-parser/package.json | 2 +- packages/plugin-components-pane/CHANGELOG.md | 8 +++++ packages/plugin-components-pane/package.json | 8 ++--- packages/plugin-designer/CHANGELOG.md | 8 +++++ packages/plugin-designer/package.json | 6 ++-- .../plugin-event-bind-dialog/CHANGELOG.md | 8 +++++ .../plugin-event-bind-dialog/package.json | 6 ++-- packages/plugin-outline-pane/CHANGELOG.md | 8 +++++ packages/plugin-outline-pane/package.json | 10 +++---- packages/plugin-sample-logo/CHANGELOG.md | 8 +++++ packages/plugin-sample-logo/package.json | 4 +-- packages/plugin-sample-preview/CHANGELOG.md | 8 +++++ packages/plugin-sample-preview/package.json | 12 ++++---- packages/plugin-source-editor/CHANGELOG.md | 8 +++++ packages/plugin-source-editor/package.json | 4 +-- packages/plugin-undo-redo/CHANGELOG.md | 8 +++++ packages/plugin-undo-redo/package.json | 12 ++++---- .../plugin-variable-bind-dialog/CHANGELOG.md | 8 +++++ .../plugin-variable-bind-dialog/package.json | 4 +-- packages/plugin-zh-en/CHANGELOG.md | 8 +++++ packages/plugin-zh-en/package.json | 8 ++--- packages/rax-provider/CHANGELOG.md | 8 +++++ packages/rax-provider/package.json | 4 +-- packages/rax-render/CHANGELOG.md | 12 ++++++-- packages/rax-render/package.json | 4 +-- packages/rax-simulator-renderer/CHANGELOG.md | 8 +++++ packages/rax-simulator-renderer/package.json | 10 +++---- packages/react-provider/CHANGELOG.md | 8 +++++ packages/react-provider/package.json | 6 ++-- packages/react-renderer/CHANGELOG.md | 8 +++++ packages/react-renderer/package.json | 4 +-- .../react-simulator-renderer/CHANGELOG.md | 8 +++++ .../react-simulator-renderer/package.json | 10 +++---- packages/runtime/CHANGELOG.md | 8 +++++ packages/runtime/package.json | 2 +- packages/types/CHANGELOG.md | 8 +++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++++ packages/utils/package.json | 4 +-- 60 files changed, 350 insertions(+), 110 deletions(-) diff --git a/packages/code-generator/CHANGELOG.md b/packages/code-generator/CHANGELOG.md index e721ecaf3..023f50b99 100644 --- a/packages/code-generator/CHANGELOG.md +++ b/packages/code-generator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-code-generator@1.0.8...@ali/lowcode-code-generator@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-code-generator + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-code-generator@1.0.8-0...@ali/lowcode-code-generator@1.0.8) (2020-09-28) diff --git a/packages/code-generator/package.json b/packages/code-generator/package.json index 922ba1961..1ee93cfff 100644 --- a/packages/code-generator/package.json +++ b/packages/code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-code-generator", - "version": "1.0.8", + "version": "1.0.9", "description": "出码引擎 for LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -21,7 +21,7 @@ }, "dependencies": { "@ali/am-eslint-config": "*", - "@ali/lowcode-types": "^1.0.0", + "@ali/lowcode-types": "^1.0.9", "@ali/my-prettier": "^1.0.0", "@babel/generator": "^7.9.5", "@babel/parser": "^7.9.4", diff --git a/packages/datasource-engine/CHANGELOG.md b/packages/datasource-engine/CHANGELOG.md index 72bb0deb1..d10dfdaa8 100644 --- a/packages/datasource-engine/CHANGELOG.md +++ b/packages/datasource-engine/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.1.13](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-datasource-engine@0.1.12...@ali/lowcode-datasource-engine@0.1.13) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-datasource-engine + ## 0.1.12 (2020-09-28) diff --git a/packages/datasource-engine/package.json b/packages/datasource-engine/package.json index 46e0d1c30..4873e661c 100644 --- a/packages/datasource-engine/package.json +++ b/packages/datasource-engine/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-datasource-engine", - "version": "0.1.12", + "version": "0.1.13", "description": "DataSource Engine for lowcode", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/demo-server/CHANGELOG.md b/packages/demo-server/CHANGELOG.md index 84aff7045..b3cba15ab 100644 --- a/packages/demo-server/CHANGELOG.md +++ b/packages/demo-server/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo-server@1.0.8...@ali/lowcode-demo-server@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-demo-server + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo-server@1.0.8-0...@ali/lowcode-demo-server@1.0.8) (2020-09-28) diff --git a/packages/demo-server/package.json b/packages/demo-server/package.json index ceee32e47..a00d0dbfc 100644 --- a/packages/demo-server/package.json +++ b/packages/demo-server/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo-server", - "version": "1.0.8", + "version": "1.0.9", "private": true, "description": "低代码引擎 DEMO Server 端", "scripts": { diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index 14e63b25e..656e4ed34 100644 --- a/packages/demo/CHANGELOG.md +++ b/packages/demo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@1.0.8...@ali/lowcode-demo@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-demo + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-demo@1.0.8-0...@ali/lowcode-demo@1.0.8) (2020-09-28) diff --git a/packages/demo/package.json b/packages/demo/package.json index 01c9c7faa..23209e602 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-demo", - "version": "1.0.8", + "version": "1.0.9", "private": true, "description": "低代码引擎 DEMO", "scripts": { @@ -9,21 +9,21 @@ }, "config": {}, "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8", - "@ali/lowcode-editor-skeleton": "^1.0.8", - "@ali/lowcode-plugin-components-pane": "^1.0.8", - "@ali/lowcode-plugin-designer": "^1.0.8", - "@ali/lowcode-plugin-event-bind-dialog": "^1.0.8", - "@ali/lowcode-plugin-outline-pane": "^1.0.8", - "@ali/lowcode-plugin-sample-logo": "^1.0.8", - "@ali/lowcode-plugin-sample-preview": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.9", + "@ali/lowcode-editor-skeleton": "^1.0.9", + "@ali/lowcode-plugin-components-pane": "^1.0.9", + "@ali/lowcode-plugin-designer": "^1.0.9", + "@ali/lowcode-plugin-event-bind-dialog": "^1.0.9", + "@ali/lowcode-plugin-outline-pane": "^1.0.9", + "@ali/lowcode-plugin-sample-logo": "^1.0.9", + "@ali/lowcode-plugin-sample-preview": "^1.0.9", "@ali/lowcode-plugin-settings-pane": "^0.8.8", - "@ali/lowcode-plugin-undo-redo": "^1.0.8", - "@ali/lowcode-plugin-variable-bind-dialog": "^1.0.8", - "@ali/lowcode-plugin-zh-en": "^1.0.8", - "@ali/lowcode-react-renderer": "^1.0.8", - "@ali/lowcode-runtime": "^1.0.10", - "@ali/lowcode-utils": "^1.0.8", + "@ali/lowcode-plugin-undo-redo": "^1.0.9", + "@ali/lowcode-plugin-variable-bind-dialog": "^1.0.9", + "@ali/lowcode-plugin-zh-en": "^1.0.9", + "@ali/lowcode-react-renderer": "^1.0.9", + "@ali/lowcode-runtime": "^1.0.11", + "@ali/lowcode-utils": "^1.0.9", "@ali/ve-action-pane": "^4.7.0-beta.0", "@ali/ve-datapool-pane": "^6.4.3", "@ali/ve-history-pane": "4.0.0", diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md index b2ead3093..c03d054b7 100644 --- a/packages/designer/CHANGELOG.md +++ b/packages/designer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@1.0.8...@ali/lowcode-designer@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-designer + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-designer@1.0.8-0...@ali/lowcode-designer@1.0.8) (2020-09-28) diff --git a/packages/designer/package.json b/packages/designer/package.json index 6f1658dd1..8db8ac32f 100644 --- a/packages/designer/package.json +++ b/packages/designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-designer", - "version": "1.0.8", + "version": "1.0.9", "description": "Designer for Ali LowCode Engine", "main": "lib/index.js", "module": "es/index.js", @@ -15,9 +15,9 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8", - "@ali/lowcode-types": "^1.0.8", - "@ali/lowcode-utils": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.9", + "@ali/lowcode-types": "^1.0.9", + "@ali/lowcode-utils": "^1.0.9", "classnames": "^2.2.6", "event": "^1.0.0", "react": "^16", diff --git a/packages/editor-core/CHANGELOG.md b/packages/editor-core/CHANGELOG.md index a9389b546..afa25b2a2 100644 --- a/packages/editor-core/CHANGELOG.md +++ b/packages/editor-core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@1.0.8...@ali/lowcode-editor-core@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-core + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-core@1.0.8-0...@ali/lowcode-editor-core@1.0.8) (2020-09-28) diff --git a/packages/editor-core/package.json b/packages/editor-core/package.json index 244046878..2fc07029b 100644 --- a/packages/editor-core/package.json +++ b/packages/editor-core/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-core", - "version": "1.0.8", + "version": "1.0.9", "description": "Core Api for Ali lowCode engine", "license": "MIT", "main": "lib/index.js", @@ -15,8 +15,8 @@ "cloud-build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-types": "^1.0.8", - "@ali/lowcode-utils": "^1.0.8", + "@ali/lowcode-types": "^1.0.9", + "@ali/lowcode-utils": "^1.0.9", "@alifd/next": "^1.19.16", "@recore/obx": "^1.0.9", "@recore/obx-react": "^1.0.8", diff --git a/packages/editor-preset-general/CHANGELOG.md b/packages/editor-preset-general/CHANGELOG.md index 6db3704ec..beff12755 100644 --- a/packages/editor-preset-general/CHANGELOG.md +++ b/packages/editor-preset-general/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@1.0.8...@ali/lowcode-editor-preset-general@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-general + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-general@1.0.8-0...@ali/lowcode-editor-preset-general@1.0.8) (2020-09-28) diff --git a/packages/editor-preset-general/package.json b/packages/editor-preset-general/package.json index e43da683b..3151803f4 100644 --- a/packages/editor-preset-general/package.json +++ b/packages/editor-preset-general/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-general", - "version": "1.0.8", + "version": "1.0.9", "description": "Ali General Editor Preset", "main": "lib/index.js", "files": [ @@ -14,12 +14,12 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8", - "@ali/lowcode-editor-skeleton": "^1.0.8", - "@ali/lowcode-plugin-designer": "^1.0.8", - "@ali/lowcode-plugin-outline-pane": "^1.0.8", - "@ali/lowcode-types": "^1.0.8", - "@ali/lowcode-utils": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.9", + "@ali/lowcode-editor-skeleton": "^1.0.9", + "@ali/lowcode-plugin-designer": "^1.0.9", + "@ali/lowcode-plugin-outline-pane": "^1.0.9", + "@ali/lowcode-types": "^1.0.9", + "@ali/lowcode-utils": "^1.0.9", "@alifd/next": "^1.19.12", "@alife/theme-lowcode-dark": "^0.1.0", "@alife/theme-lowcode-light": "^0.1.0", @@ -27,7 +27,7 @@ "react-dom": "^16.8.1" }, "devDependencies": { - "@ali/lowcode-editor-setters": "^1.0.8", + "@ali/lowcode-editor-setters": "^1.0.9", "@alib/build-scripts": "^0.1.18", "@types/events": "^3.0.0", "@types/react": "^16.8.3", diff --git a/packages/editor-preset-vision/CHANGELOG.md b/packages/editor-preset-vision/CHANGELOG.md index 00d5169c1..b211b3760 100644 --- a/packages/editor-preset-vision/CHANGELOG.md +++ b/packages/editor-preset-vision/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@1.0.8...@ali/lowcode-editor-preset-vision@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-preset-vision + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-preset-vision@1.0.8-0...@ali/lowcode-editor-preset-vision@1.0.8) (2020-09-28) diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index 077f3fd71..1d444b657 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-preset-vision", - "version": "1.0.8", + "version": "1.0.9", "description": "Vision Polyfill for Ali lowCode engine", "main": "lib/index.js", "private": true, @@ -15,11 +15,11 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-designer": "^1.0.8", - "@ali/lowcode-editor-core": "^1.0.8", - "@ali/lowcode-editor-skeleton": "^1.0.8", - "@ali/lowcode-plugin-designer": "^1.0.8", - "@ali/lowcode-plugin-outline-pane": "^1.0.8", + "@ali/lowcode-designer": "^1.0.9", + "@ali/lowcode-editor-core": "^1.0.9", + "@ali/lowcode-editor-skeleton": "^1.0.9", + "@ali/lowcode-plugin-designer": "^1.0.9", + "@ali/lowcode-plugin-outline-pane": "^1.0.9", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/packages/editor-setters/CHANGELOG.md b/packages/editor-setters/CHANGELOG.md index 5de3a77af..ec9485a96 100644 --- a/packages/editor-setters/CHANGELOG.md +++ b/packages/editor-setters/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-setters@1.0.8...@ali/lowcode-editor-setters@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-setters + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-setters@1.0.8-0...@ali/lowcode-editor-setters@1.0.8) (2020-09-28) diff --git a/packages/editor-setters/package.json b/packages/editor-setters/package.json index 7ebd2b6e0..a5a237f99 100644 --- a/packages/editor-setters/package.json +++ b/packages/editor-setters/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-setters", - "version": "1.0.8", + "version": "1.0.9", "description": "Builtin setters for Ali lowCode engine", "files": [ "es", @@ -21,7 +21,7 @@ "@ali/iceluna-comp-react-node": "^1.0.5", "@ali/iceluna-sdk": "^1.0.5-beta.24", "@ali/lc-style-setter": "^0.0.1", - "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.9", "@alifd/next": "^1.19.16", "acorn": "^6.4.1", "classnames": "^2.2.6", diff --git a/packages/editor-skeleton/CHANGELOG.md b/packages/editor-skeleton/CHANGELOG.md index 7b663ca94..e375d42dd 100644 --- a/packages/editor-skeleton/CHANGELOG.md +++ b/packages/editor-skeleton/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@1.0.8...@ali/lowcode-editor-skeleton@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-editor-skeleton + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-editor-skeleton@1.0.8-0...@ali/lowcode-editor-skeleton@1.0.8) (2020-09-28) diff --git a/packages/editor-skeleton/package.json b/packages/editor-skeleton/package.json index dee850d9e..039b23c60 100644 --- a/packages/editor-skeleton/package.json +++ b/packages/editor-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-editor-skeleton", - "version": "1.0.8", + "version": "1.0.9", "description": "alibaba lowcode editor skeleton", "main": "lib/index.js", "module": "es/index.js", @@ -19,10 +19,10 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^1.0.8", - "@ali/lowcode-editor-core": "^1.0.8", - "@ali/lowcode-types": "^1.0.8", - "@ali/lowcode-utils": "^1.0.8", + "@ali/lowcode-designer": "^1.0.9", + "@ali/lowcode-editor-core": "^1.0.9", + "@ali/lowcode-types": "^1.0.9", + "@ali/lowcode-utils": "^1.0.9", "@ali/ve-icons": "latest", "@ali/ve-less-variables": "^2.0.0", "@alifd/next": "^1.20.12", diff --git a/packages/material-parser/CHANGELOG.md b/packages/material-parser/CHANGELOG.md index bedbe5175..bf043769d 100644 --- a/packages/material-parser/CHANGELOG.md +++ b/packages/material-parser/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-material-parser@1.0.8...@ali/lowcode-material-parser@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-material-parser + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-material-parser@1.0.8-0...@ali/lowcode-material-parser@1.0.8) (2020-09-28) diff --git a/packages/material-parser/package.json b/packages/material-parser/package.json index 816a8a9a5..61d9e0b18 100644 --- a/packages/material-parser/package.json +++ b/packages/material-parser/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-material-parser", - "version": "1.0.8", + "version": "1.0.9", "description": "material parser for Ali lowCode engine", "main": "lib/index.js", "files": [ diff --git a/packages/plugin-components-pane/CHANGELOG.md b/packages/plugin-components-pane/CHANGELOG.md index bdb4c6a00..ecb02663d 100644 --- a/packages/plugin-components-pane/CHANGELOG.md +++ b/packages/plugin-components-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@1.0.8...@ali/lowcode-plugin-components-pane@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-components-pane + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-components-pane@1.0.8-0...@ali/lowcode-plugin-components-pane@1.0.8) (2020-09-28) diff --git a/packages/plugin-components-pane/package.json b/packages/plugin-components-pane/package.json index d4ef348fb..1df6d591f 100644 --- a/packages/plugin-components-pane/package.json +++ b/packages/plugin-components-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-components-pane", - "version": "1.0.8", + "version": "1.0.9", "description": "alibaba lowcode editor component-list plugin", "files": [ "es/", @@ -21,9 +21,9 @@ "author": "xiayang.xy", "dependencies": { "@ali/intl-universal": "^0.4.12", - "@ali/lowcode-designer": "^1.0.8", - "@ali/lowcode-editor-core": "^1.0.8", - "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-designer": "^1.0.9", + "@ali/lowcode-editor-core": "^1.0.9", + "@ali/lowcode-types": "^1.0.9", "@ali/vu-layer": "^4.0.1", "@ali/vu-uxcore-legao-design": "^1.4.0", "@alifd/next": "^1.19.19", diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index 45a6a9a03..d821d10b6 100644 --- a/packages/plugin-designer/CHANGELOG.md +++ b/packages/plugin-designer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@1.0.8...@ali/lowcode-plugin-designer@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-designer + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-designer@1.0.8-0...@ali/lowcode-plugin-designer@1.0.8) (2020-09-28) diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 0ac432981..fc90b76b1 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-designer", - "version": "1.0.8", + "version": "1.0.9", "description": "alibaba lowcode editor designer plugin", "files": [ "es", @@ -20,8 +20,8 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^1.0.8", - "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-designer": "^1.0.9", + "@ali/lowcode-editor-core": "^1.0.9", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/plugin-event-bind-dialog/CHANGELOG.md b/packages/plugin-event-bind-dialog/CHANGELOG.md index 43344e360..104b86057 100644 --- a/packages/plugin-event-bind-dialog/CHANGELOG.md +++ b/packages/plugin-event-bind-dialog/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@1.0.8...@ali/lowcode-plugin-event-bind-dialog@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-event-bind-dialog + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-event-bind-dialog@1.0.8-0...@ali/lowcode-plugin-event-bind-dialog@1.0.8) (2020-09-28) diff --git a/packages/plugin-event-bind-dialog/package.json b/packages/plugin-event-bind-dialog/package.json index 63e355d4a..75ff5124c 100644 --- a/packages/plugin-event-bind-dialog/package.json +++ b/packages/plugin-event-bind-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-event-bind-dialog", - "version": "1.0.8", + "version": "1.0.9", "description": "alibaba lowcode editor event bind dialog plugin", "files": [ "es", @@ -19,8 +19,8 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8", - "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.9", + "@ali/lowcode-types": "^1.0.9", "@alifd/next": "^1.19.16", "react": "^16.8.1", "react-dom": "^16.8.1" diff --git a/packages/plugin-outline-pane/CHANGELOG.md b/packages/plugin-outline-pane/CHANGELOG.md index 6df9a14ce..83231bf1a 100644 --- a/packages/plugin-outline-pane/CHANGELOG.md +++ b/packages/plugin-outline-pane/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@1.0.8...@ali/lowcode-plugin-outline-pane@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-outline-pane + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-outline-pane@1.0.8-0...@ali/lowcode-plugin-outline-pane@1.0.8) (2020-09-28) diff --git a/packages/plugin-outline-pane/package.json b/packages/plugin-outline-pane/package.json index f1d6514dc..dba75d601 100644 --- a/packages/plugin-outline-pane/package.json +++ b/packages/plugin-outline-pane/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-outline-pane", - "version": "1.0.8", + "version": "1.0.9", "description": "Outline pane for Ali lowCode engine", "files": [ "es", @@ -14,10 +14,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^1.0.8", - "@ali/lowcode-editor-core": "^1.0.8", - "@ali/lowcode-types": "^1.0.8", - "@ali/lowcode-utils": "^1.0.8", + "@ali/lowcode-designer": "^1.0.9", + "@ali/lowcode-editor-core": "^1.0.9", + "@ali/lowcode-types": "^1.0.9", + "@ali/lowcode-utils": "^1.0.9", "@alifd/next": "^1.19.16", "classnames": "^2.2.6", "react": "^16", diff --git a/packages/plugin-sample-logo/CHANGELOG.md b/packages/plugin-sample-logo/CHANGELOG.md index c605c2daf..e5460d004 100644 --- a/packages/plugin-sample-logo/CHANGELOG.md +++ b/packages/plugin-sample-logo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-logo@1.0.8...@ali/lowcode-plugin-sample-logo@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-logo + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-logo@1.0.8-0...@ali/lowcode-plugin-sample-logo@1.0.8) (2020-09-28) diff --git a/packages/plugin-sample-logo/package.json b/packages/plugin-sample-logo/package.json index d886ee72f..6a9aa6f66 100644 --- a/packages/plugin-sample-logo/package.json +++ b/packages/plugin-sample-logo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-logo", - "version": "1.0.8", + "version": "1.0.9", "description": "alibaba lowcode editor logo plugin", "files": [ "es/", @@ -20,7 +20,7 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.9", "react": "^16.8.1" }, "devDependencies": { diff --git a/packages/plugin-sample-preview/CHANGELOG.md b/packages/plugin-sample-preview/CHANGELOG.md index c1cf625c5..7500f6835 100644 --- a/packages/plugin-sample-preview/CHANGELOG.md +++ b/packages/plugin-sample-preview/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@1.0.8...@ali/lowcode-plugin-sample-preview@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-sample-preview + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-sample-preview@1.0.8-0...@ali/lowcode-plugin-sample-preview@1.0.8) (2020-09-28) diff --git a/packages/plugin-sample-preview/package.json b/packages/plugin-sample-preview/package.json index 2a6236216..10b644f5b 100644 --- a/packages/plugin-sample-preview/package.json +++ b/packages/plugin-sample-preview/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-sample-preview", - "version": "1.0.8", + "version": "1.0.9", "description": "alibaba lowcode editor sample preview plugin", "files": [ "es", @@ -19,11 +19,11 @@ "editor" ], "dependencies": { - "@ali/lowcode-designer": "^1.0.8", - "@ali/lowcode-editor-core": "^1.0.8", - "@ali/lowcode-react-renderer": "^1.0.8", - "@ali/lowcode-types": "^1.0.8", - "@ali/lowcode-utils": "^1.0.8", + "@ali/lowcode-designer": "^1.0.9", + "@ali/lowcode-editor-core": "^1.0.9", + "@ali/lowcode-react-renderer": "^1.0.9", + "@ali/lowcode-types": "^1.0.9", + "@ali/lowcode-utils": "^1.0.9", "@alifd/next": "^1.x", "react": "^16.8.1" }, diff --git a/packages/plugin-source-editor/CHANGELOG.md b/packages/plugin-source-editor/CHANGELOG.md index 267d0762a..baa9a6497 100644 --- a/packages/plugin-source-editor/CHANGELOG.md +++ b/packages/plugin-source-editor/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-source-editor@1.0.8...@ali/lowcode-plugin-source-editor@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-source-editor + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-source-editor@1.0.8-0...@ali/lowcode-plugin-source-editor@1.0.8) (2020-09-28) diff --git a/packages/plugin-source-editor/package.json b/packages/plugin-source-editor/package.json index b6d426853..3b6f2fbf2 100644 --- a/packages/plugin-source-editor/package.json +++ b/packages/plugin-source-editor/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-source-editor", - "version": "1.0.8", + "version": "1.0.9", "description": "alibaba lowcode editor source-editor plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.9", "@alifd/next": "^1.19.16", "js-beautify": "^1.10.1", "prettier": "^1.18.2", diff --git a/packages/plugin-undo-redo/CHANGELOG.md b/packages/plugin-undo-redo/CHANGELOG.md index 3f2fc6438..f87f0c8d9 100644 --- a/packages/plugin-undo-redo/CHANGELOG.md +++ b/packages/plugin-undo-redo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@1.0.8...@ali/lowcode-plugin-undo-redo@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-undo-redo + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-undo-redo@1.0.8-0...@ali/lowcode-plugin-undo-redo@1.0.8) (2020-09-28) diff --git a/packages/plugin-undo-redo/package.json b/packages/plugin-undo-redo/package.json index 2106b168b..518a4c479 100644 --- a/packages/plugin-undo-redo/package.json +++ b/packages/plugin-undo-redo/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-undo-redo", - "version": "1.0.8", + "version": "1.0.9", "description": "alibaba lowcode editor undo redo plugin", "files": [ "es", @@ -19,11 +19,11 @@ ], "author": "xiayang.xy", "dependencies": { - "@ali/lowcode-designer": "^1.0.8", - "@ali/lowcode-editor-core": "^1.0.8", - "@ali/lowcode-editor-skeleton": "^1.0.8", - "@ali/lowcode-types": "^1.0.8", - "@ali/lowcode-utils": "^1.0.8", + "@ali/lowcode-designer": "^1.0.9", + "@ali/lowcode-editor-core": "^1.0.9", + "@ali/lowcode-editor-skeleton": "^1.0.9", + "@ali/lowcode-types": "^1.0.9", + "@ali/lowcode-utils": "^1.0.9", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/plugin-variable-bind-dialog/CHANGELOG.md b/packages/plugin-variable-bind-dialog/CHANGELOG.md index 0d9c6414f..285f82aa2 100644 --- a/packages/plugin-variable-bind-dialog/CHANGELOG.md +++ b/packages/plugin-variable-bind-dialog/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-variable-bind-dialog@1.0.8...@ali/lowcode-plugin-variable-bind-dialog@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-variable-bind-dialog + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-variable-bind-dialog@1.0.8-0...@ali/lowcode-plugin-variable-bind-dialog@1.0.8) (2020-09-28) diff --git a/packages/plugin-variable-bind-dialog/package.json b/packages/plugin-variable-bind-dialog/package.json index b12c6c8e8..a9dfe6fff 100644 --- a/packages/plugin-variable-bind-dialog/package.json +++ b/packages/plugin-variable-bind-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-variable-bind-dialog", - "version": "1.0.8", + "version": "1.0.9", "description": "alibaba lowcode editor variable bind dialog plugin", "files": [ "es", @@ -19,7 +19,7 @@ ], "author": "zude.hzd", "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.9", "@alifd/next": "^1.19.16", "react": "^16.8.1", "react-dom": "^16.8.1" diff --git a/packages/plugin-zh-en/CHANGELOG.md b/packages/plugin-zh-en/CHANGELOG.md index 0a50a94bd..7cc721cde 100644 --- a/packages/plugin-zh-en/CHANGELOG.md +++ b/packages/plugin-zh-en/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@1.0.8...@ali/lowcode-plugin-zh-en@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-plugin-zh-en + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-plugin-zh-en@1.0.8-0...@ali/lowcode-plugin-zh-en@1.0.8) (2020-09-28) diff --git a/packages/plugin-zh-en/package.json b/packages/plugin-zh-en/package.json index 6b9d864e6..2529a478f 100644 --- a/packages/plugin-zh-en/package.json +++ b/packages/plugin-zh-en/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-plugin-zh-en", - "version": "1.0.8", + "version": "1.0.9", "description": "alibaba lowcode editor zhong english plugin", "files": [ "es", @@ -14,9 +14,9 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-editor-core": "^1.0.8", - "@ali/lowcode-types": "^1.0.8", - "@ali/lowcode-utils": "^1.0.8", + "@ali/lowcode-editor-core": "^1.0.9", + "@ali/lowcode-types": "^1.0.9", + "@ali/lowcode-utils": "^1.0.9", "react": "^16.8.1", "react-dom": "^16.8.1" }, diff --git a/packages/rax-provider/CHANGELOG.md b/packages/rax-provider/CHANGELOG.md index 6835f5b16..3fc3c3b72 100644 --- a/packages/rax-provider/CHANGELOG.md +++ b/packages/rax-provider/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-provider@1.0.8...@ali/lowcode-rax-provider@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-provider + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-provider@1.0.8-0...@ali/lowcode-rax-provider@1.0.8) (2020-09-28) diff --git a/packages/rax-provider/package.json b/packages/rax-provider/package.json index 5403ea64b..46ba0b3a3 100644 --- a/packages/rax-provider/package.json +++ b/packages/rax-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-provider", - "version": "1.0.8", + "version": "1.0.9", "description": "Rax Provider for Runtime", "files": [ "es", @@ -18,7 +18,7 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^1.0.10", + "@ali/lowcode-runtime": "^1.0.11", "driver-universal": "^3.1.3", "history": "^4.10.1", "rax-use-router": "^3.0.0" diff --git a/packages/rax-render/CHANGELOG.md b/packages/rax-render/CHANGELOG.md index 00cc0fd58..b0fa36d58 100644 --- a/packages/rax-render/CHANGELOG.md +++ b/packages/rax-render/CHANGELOG.md @@ -3,7 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-renderer@1.0.8...@ali/lowcode-rax-renderer@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-renderer + + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-renderer@1.0.8-0...@ali/lowcode-rax-renderer@1.0.8) (2020-09-28) @@ -14,7 +22,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - + ## [1.0.8-0](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-renderer@1.0.7-0...@ali/lowcode-rax-renderer@1.0.8-0) (2020-09-09) diff --git a/packages/rax-render/package.json b/packages/rax-render/package.json index 958c44efd..3fc209d26 100644 --- a/packages/rax-render/package.json +++ b/packages/rax-render/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-renderer", - "version": "1.0.8", + "version": "1.0.9", "description": "Rax renderer for Ali lowCode engine", "main": "lib/index.js", "module": "lib/index.js", @@ -36,7 +36,7 @@ "@ali/b3-one": "^0.0.17", "@ali/bzb-request": "2.6.1", "@ali/lib-mtop": "^2.5.1", - "@ali/lowcode-utils": "^1.0.8", + "@ali/lowcode-utils": "^1.0.9", "classnames": "^2.2.6", "debug": "^4.1.1", "events": "^3.0.0", diff --git a/packages/rax-simulator-renderer/CHANGELOG.md b/packages/rax-simulator-renderer/CHANGELOG.md index 4fe7135ae..dc9da9c8e 100644 --- a/packages/rax-simulator-renderer/CHANGELOG.md +++ b/packages/rax-simulator-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-simulator-renderer@1.0.8...@ali/lowcode-rax-simulator-renderer@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-rax-simulator-renderer + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-rax-simulator-renderer@1.0.8-0...@ali/lowcode-rax-simulator-renderer@1.0.8) (2020-09-28) diff --git a/packages/rax-simulator-renderer/package.json b/packages/rax-simulator-renderer/package.json index d6d913a73..41a72a625 100644 --- a/packages/rax-simulator-renderer/package.json +++ b/packages/rax-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-rax-simulator-renderer", - "version": "1.0.8", + "version": "1.0.9", "description": "rax simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -13,10 +13,10 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-designer": "^1.0.8", - "@ali/lowcode-rax-renderer": "^1.0.8", - "@ali/lowcode-types": "^1.0.8", - "@ali/lowcode-utils": "^1.0.8", + "@ali/lowcode-designer": "^1.0.9", + "@ali/lowcode-rax-renderer": "^1.0.9", + "@ali/lowcode-types": "^1.0.9", + "@ali/lowcode-utils": "^1.0.9", "@ali/recore-rax": "^1.2.4", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", diff --git a/packages/react-provider/CHANGELOG.md b/packages/react-provider/CHANGELOG.md index ac997590f..0225ff912 100644 --- a/packages/react-provider/CHANGELOG.md +++ b/packages/react-provider/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-provider@1.0.10...@ali/lowcode-react-provider@1.0.11) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-react-provider + ## [1.0.10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-provider@1.0.8-0...@ali/lowcode-react-provider@1.0.10) (2020-09-28) diff --git a/packages/react-provider/package.json b/packages/react-provider/package.json index 097f716ab..426c58e4a 100644 --- a/packages/react-provider/package.json +++ b/packages/react-provider/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-provider", - "version": "1.0.10", + "version": "1.0.11", "description": "React Provider for Runtime", "files": [ "es", @@ -25,8 +25,8 @@ }, "license": "MIT", "dependencies": { - "@ali/lowcode-runtime": "^1.0.10", - "@ali/lowcode-utils": "^1.0.7", + "@ali/lowcode-runtime": "^1.0.11", + "@ali/lowcode-utils": "^1.0.9", "@recore/router": "^1.0.11", "react": "^16", "react-dom": "^16" diff --git a/packages/react-renderer/CHANGELOG.md b/packages/react-renderer/CHANGELOG.md index f9d9e02c0..25075d1b0 100644 --- a/packages/react-renderer/CHANGELOG.md +++ b/packages/react-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-renderer@1.0.8...@ali/lowcode-react-renderer@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-react-renderer + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-renderer@1.0.8-0...@ali/lowcode-react-renderer@1.0.8) (2020-09-28) diff --git a/packages/react-renderer/package.json b/packages/react-renderer/package.json index d03e81f48..a26051618 100644 --- a/packages/react-renderer/package.json +++ b/packages/react-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-renderer", - "version": "1.0.8", + "version": "1.0.9", "description": "react renderer for ali lowcode engine", "main": "lib/index.js", "module": "es/index.js", @@ -53,5 +53,5 @@ "publishConfig": { "registry": "http://registry.npm.alibaba-inc.com" }, - "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@1.0.8-0/build/index.html" + "homepage": "https://unpkg.alibaba-inc.com/@ali/lowcode-react-renderer@1.0.8/build/index.html" } diff --git a/packages/react-simulator-renderer/CHANGELOG.md b/packages/react-simulator-renderer/CHANGELOG.md index b09ec6c34..742b377d5 100644 --- a/packages/react-simulator-renderer/CHANGELOG.md +++ b/packages/react-simulator-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@1.0.8...@ali/lowcode-react-simulator-renderer@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-react-simulator-renderer + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-react-simulator-renderer@1.0.8-0...@ali/lowcode-react-simulator-renderer@1.0.8) (2020-09-28) diff --git a/packages/react-simulator-renderer/package.json b/packages/react-simulator-renderer/package.json index e96835df6..6046b8bdc 100644 --- a/packages/react-simulator-renderer/package.json +++ b/packages/react-simulator-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-react-simulator-renderer", - "version": "1.0.8", + "version": "1.0.9", "description": "react simulator renderer for alibaba lowcode designer", "main": "lib/index.js", "module": "es/index.js", @@ -16,10 +16,10 @@ "build": "build-scripts build --skip-demo" }, "dependencies": { - "@ali/lowcode-designer": "^1.0.8", - "@ali/lowcode-react-renderer": "^1.0.8", - "@ali/lowcode-types": "^1.0.8", - "@ali/lowcode-utils": "^1.0.8", + "@ali/lowcode-designer": "^1.0.9", + "@ali/lowcode-react-renderer": "^1.0.9", + "@ali/lowcode-types": "^1.0.9", + "@ali/lowcode-utils": "^1.0.9", "@ali/vu-css-style": "^1.0.2", "@recore/obx": "^1.0.8", "@recore/obx-react": "^1.0.7", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index 20db2c31f..fadb267a6 100644 --- a/packages/runtime/CHANGELOG.md +++ b/packages/runtime/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.11](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-runtime@1.0.10...@ali/lowcode-runtime@1.0.11) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-runtime + ## [1.0.10](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-runtime@1.0.8-0...@ali/lowcode-runtime@1.0.10) (2020-09-28) diff --git a/packages/runtime/package.json b/packages/runtime/package.json index 97b3b5444..468c606a1 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-runtime", - "version": "1.0.10", + "version": "1.0.11", "description": "Runtime for Ali lowCode engine", "files": [ "es", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index b776cb076..203a2c627 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-types@1.0.8...@ali/lowcode-types@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-types + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-types@1.0.8-0...@ali/lowcode-types@1.0.8) (2020-09-28) diff --git a/packages/types/package.json b/packages/types/package.json index a48d8c0c2..327d4416b 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-types", - "version": "1.0.8", + "version": "1.0.9", "description": "Types for Ali lowCode engine", "files": [ "es", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 29f99f20d..38df913ce 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.9](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-utils@1.0.8...@ali/lowcode-utils@1.0.9) (2020-09-28) + + + + +**Note:** Version bump only for package @ali/lowcode-utils + ## [1.0.8](https://gitlab.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/compare/@ali/lowcode-utils@1.0.8-0...@ali/lowcode-utils@1.0.8) (2020-09-28) diff --git a/packages/utils/package.json b/packages/utils/package.json index 4a9ce773e..724cd979b 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@ali/lowcode-utils", - "version": "1.0.8", + "version": "1.0.9", "description": "Utils for Ali lowCode engine", "files": [ "es", @@ -14,7 +14,7 @@ "test:snapshot": "ava --update-snapshots" }, "dependencies": { - "@ali/lowcode-types": "^1.0.8", + "@ali/lowcode-types": "^1.0.9", "@alifd/next": "^1.19.16", "react": "^16" },