Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
 - @logicflow/[email protected]
 - @logicflow/[email protected]
 - @logicflow/[email protected]
  • Loading branch information
boyongjiong committed Nov 21, 2023
1 parent 36dd2d3 commit f377a6b
Show file tree
Hide file tree
Showing 7 changed files with 626 additions and 5 deletions.
347 changes: 347 additions & 0 deletions packages/core/CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logicflow/core",
"version": "1.2.17",
"version": "1.2.18",
"description": "LogicFlow core, to quickly build flowchart editor",
"main": "dist/entry.js",
"module": "dist/logic-flow.js",
Expand Down
34 changes: 34 additions & 0 deletions packages/engine/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,40 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 0.0.10 (2023-11-21)


### Bug Fixes

* **engine:** build error when use es-module ([3fbd88a](https://github.com/didi/LogicFlow/commit/3fbd88a8279602b907ab6f3e3a6353a46f64ee8c))
* **engine:** consistent expression evaluation in browser and nodejs ([8f24045](https://github.com/didi/LogicFlow/commit/8f240451dce588b6fa21e639c79e1a0782937ff9))
* **engine:** expression can not return right value in browser ([9ef9f2e](https://github.com/didi/LogicFlow/commit/9ef9f2e1080dcfa05002ab0bc25b18c39d2efffd))
* **engine:** support es module umd and commonJs ([bb17159](https://github.com/didi/LogicFlow/commit/bb171597725b78b28cc2ad74350ab7728e580158))
* fix bug -> options?.debug, setup with debug mode via options.debug ([1ed7d2a](https://github.com/didi/LogicFlow/commit/1ed7d2ab6f770c64c23432e2578fd0c7debad019))
* 修复 uuid 生成的 id 以 '-' 分隔,在 eval 执行时会报错的 bug ([444e44a](https://github.com/didi/LogicFlow/commit/444e44ae5672e68b7e20d4a8307affb0ac6244fd))
* 修复以 uuid 生成 nodeId 时,isPass 方法会触发 js 错误,导致执行失败 ([3eb4127](https://github.com/didi/LogicFlow/commit/3eb412744395aae64a57656f5fcd7a1e581078d9))
* 添加 debug 参数控制是否实例化 Recorder;修复 sessionStorage 存储超过 5MB 后写入报错的 bug ([03cd521](https://github.com/didi/LogicFlow/commit/03cd521b58c8a5a2be729015844bd97bb560e65f))


### Features

* add support for specifying the start node and multiple executions ([113ad88](https://github.com/didi/LogicFlow/commit/113ad880cdb564431933eeeed3b661c50fca2a9c))
* added expression evaluation functionality for Node.js and browser ([a7759f6](https://github.com/didi/LogicFlow/commit/a7759f69d4f7b294397c8502da654ea7c729d930))
* create logicflow eninge ([c7d80f4](https://github.com/didi/LogicFlow/commit/c7d80f4b4c19cf82af9be49dd8fd44433327db58))
* **engie:** support parallel execution within workflows ([8e17ea6](https://github.com/didi/LogicFlow/commit/8e17ea614c5c3567e532a67240cf8e0e9110b2bf))
* **engine:** add comments and sync storage execution ([6fa0904](https://github.com/didi/LogicFlow/commit/6fa0904ddee88254d4af5c246ff0247c988dfdd2))
* **engine:** add getExecutionList api ([a907c87](https://github.com/didi/LogicFlow/commit/a907c877512f5c1c62c232f8b2b5e462a9a3ac07))
* **engine:** add the ability to pause and resume workflows ([7c4e385](https://github.com/didi/LogicFlow/commit/7c4e3855ad0a7af4121de6552be61f690b4e0e6c))
* **engine:** added workflow scheduling feature ([c2a7044](https://github.com/didi/LogicFlow/commit/c2a704449772445387f324924491f15e526dfc4e))
* **engine:** execution record data contain outgoing and detail ([d24533c](https://github.com/didi/LogicFlow/commit/d24533ca4a6d259a3d1921c010056dd9b4db3d3c))
* **engine:** recorder getExecutionList only return instance data ([684a2ba](https://github.com/didi/LogicFlow/commit/684a2ba90c8b94a0cce48200b69119270a3b31b7))
* **engine:** support node return error ([7373bf2](https://github.com/didi/LogicFlow/commit/7373bf2da4a90b2b7610a267259b33daa77fd9de))
* implemented execution record query functionality ([d73aa46](https://github.com/didi/LogicFlow/commit/d73aa46675f35bae5362e6024232d44cbfe5bcaa))





## [0.0.9](https://github.com/didi/LogicFlow/compare/@logicflow/[email protected]...@logicflow/[email protected]) (2023-09-11)


Expand Down
2 changes: 1 addition & 1 deletion packages/engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logicflow/engine",
"version": "0.0.9",
"version": "0.0.10",
"description": "a process engine for javascript",
"main": "cjs/index.js",
"module": "es/index.js",
Expand Down
Loading

0 comments on commit f377a6b

Please sign in to comment.