diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 5fa23e12e..24a064372 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.18](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.17...@logicflow/core@1.2.18) (2023-11-22) + + +### Bug Fixes + +* **core:** anchorId missed after point adjusting([#1365](https://github.com/didi/LogicFlow/issues/1365)) ([d7778cc](https://github.com/didi/LogicFlow/commit/d7778cc7632b3cd60afadc18a47c4df60b23a587)) +* **core:** fix Cannot read property 'document' of undefined bug([#1433](https://github.com/didi/LogicFlow/issues/1433)) ([9e1a2c9](https://github.com/didi/LogicFlow/commit/9e1a2c957adb01610544da3ff09eef607d7c51f2)) +* **core:** rename textInput ([1681484](https://github.com/didi/LogicFlow/commit/1681484bcef0ae8a7fb5d54e6cefcc45d6020f8e)) +* **core:** zIndex problem in overlapMode([#1395](https://github.com/didi/LogicFlow/issues/1395)) ([ae41283](https://github.com/didi/LogicFlow/commit/ae412831c16b7c07e502852b0c00baa2b6d685db)) +* **core:** 修复 overflowMode 为 autoWrap 时,节点设置 textWidth 无效的 bug([#1432](https://github.com/didi/LogicFlow/issues/1432)) ([fa1cbc7](https://github.com/didi/LogicFlow/commit/fa1cbc7a4e2a4bb12b8c34997aaedd6f9bc552be)) +* prevent node without anchors using InsertNodeInPolyline([#1077](https://github.com/didi/LogicFlow/issues/1077)) ([6e10d3a](https://github.com/didi/LogicFlow/commit/6e10d3ad6e5b26daa6cad865bbca0eb326dfd54b)) + + +### Features + +* **core:** enable lf-text-input style setting([#1390](https://github.com/didi/LogicFlow/issues/1390)) ([8a8a0f9](https://github.com/didi/LogicFlow/commit/8a8a0f937e4428c0a811b4cc8102c03fec568653)) + + + + + ## [1.2.17](https://github.com/didi/LogicFlow/compare/@logicflow/core@1.2.16...@logicflow/core@1.2.17) (2023-10-25) diff --git a/packages/core/package.json b/packages/core/package.json index 02ea42893..8a1cdb9d4 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -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", diff --git a/packages/extension/CHANGELOG.md b/packages/extension/CHANGELOG.md index f77702fa2..0d8977dc8 100644 --- a/packages/extension/CHANGELOG.md +++ b/packages/extension/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.2.19](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.18...@logicflow/extension@1.2.19) (2023-11-22) + + +### Bug Fixes + +* **extension:** 修复「小地图鼠标放上去会出现浮层展示」bug([#1419](https://github.com/didi/LogicFlow/issues/1419)) ([0a47b2d](https://github.com/didi/LogicFlow/commit/0a47b2d0ac833e4fe9b207a43ba02d22df72d07d)) +* prevent node without anchors using InsertNodeInPolyline([#1077](https://github.com/didi/LogicFlow/issues/1077)) ([6e10d3a](https://github.com/didi/LogicFlow/commit/6e10d3ad6e5b26daa6cad865bbca0eb326dfd54b)) + + + + + ## [1.2.18](https://github.com/didi/LogicFlow/compare/@logicflow/extension@1.2.17...@logicflow/extension@1.2.18) (2023-10-25) diff --git a/packages/extension/package-lock.json b/packages/extension/package-lock.json index 27a0f5791..970a2be22 100644 --- a/packages/extension/package-lock.json +++ b/packages/extension/package-lock.json @@ -1,6 +1,6 @@ { "name": "@logicflow/extension", - "version": "1.2.18", + "version": "1.2.19", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/extension/package.json b/packages/extension/package.json index 8590db757..792d07372 100644 --- a/packages/extension/package.json +++ b/packages/extension/package.json @@ -1,6 +1,6 @@ { "name": "@logicflow/extension", - "version": "1.2.18", + "version": "1.2.19", "description": "LogicFlow extension", "main": "cjs/index.js", "module": "es/index.js", @@ -32,7 +32,7 @@ "readme.md" ], "dependencies": { - "@logicflow/core": "^1.2.17", + "@logicflow/core": "^1.2.18", "jest": "27.5.1", "lodash-es": "^4.17.21", "preact": "^10.4.8"