Skip to content

Commit ff44c99

Browse files
committed
update changelog
1 parent 4660ae8 commit ff44c99

3 files changed

Lines changed: 22 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,35 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
88

99
This is a major release, and it might be not compatible with your current usage of our library. Please read about the necessary changes in the section about how to migrate.
1010

11+
### Added
12+
13+
- `<EdgeStraigh />`
14+
- it's basically `<EdgeDefault />` without any special configs
15+
- `<EdgeBezier />`
16+
- only supported for v12, in v9 as straight edge is used
17+
- use `curvature` property in the edge `data` object to define the bezier layout (0..1, default: 0.25)
18+
- `<EdgeDefaultV12 />`
19+
- the `data` object provides `markerAppearance` to set and remove the edge arrows
20+
1121
### Removed
1222

1323
- support for React Flow v10 was completely removed
1424

1525
### Fixed
1626

1727
- `<Modal />`:
18-
- Add 'nopan', 'nowheel' and 'nodrag' classes to Modal's overlay classes in order to always prevent react-flow to react to drag and pan actions in modals.
28+
- Add 'nopan', 'nowheel' and 'nodrag' classes to Modal's overlay classes in order to always prevent react-flow to react to drag and pan actions in modals.
29+
30+
### Changed
31+
32+
- `<EdgeDefault />` and `<EdgeStep />`
33+
- support now v9 and v12 of react flow
1934

2035
### Deprecated
2136

22-
- support for React Flow v9 will be removed
37+
- support for React Flow v9 will be removed in v26
38+
- `<EdgeDefs />`
39+
- use `<ReactFlowMarkers />` or build it on single `<ReactFlowMarker />`
2340

2441
## [24.4.0] - 2025-08-07
2542

@@ -138,7 +155,7 @@ If you use Jest then you can use the same aliases for the `moduleNameMapper` con
138155

139156
### Migration from v24 to v25
140157

141-
- remove deprecated components, properties and imports from your project, if the info cannot be found here then it was already mentioned in **Deprecated** sections of the v24.* changelogs.
158+
- remove deprecated components, properties and imports from your project, if the info cannot be found here then it was already mentioned in **Deprecated** sections of the v24.\* changelogs.
142159
- we changed the integration of the supported react flow versions, formerly names `legacy` and `next` resources were renamed to more precise `v9` and `v10`, please see all info in the section about changes
143160

144161
## [24.1.0] - 2025-04-16

src/extensions/react-flow/edges/EdgeDefs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
22

33
/**
4-
* @deprecated (v26) use `<ReactFlowMarkers /`
4+
* @deprecated (v26) use `<ReactFlowMarkers />`
55
*/
66
export const EdgeDefs = React.memo(() => (
77
<svg style={{ position: "absolute", top: 0, left: 0 }}>

src/extensions/react-flow/edges/edgeTypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { EdgeStep } from "./EdgeStep";
1010
import { EdgeStraight } from "./EdgeStraight";
1111

1212
/**
13-
* @deprecated (v25) will be removed without replacement, define it yourself or use `<ReactFlow/` with `configuration` option.
13+
* @deprecated (v25) will be removed without replacement, define it yourself or use `<ReactFlow />` with `configuration` option.
1414
*/
1515
export const edgeTypes = {
1616
default: EdgeDefault,

0 commit comments

Comments
 (0)