Releases: kamiazya/rediagram
Releases · kamiazya/rediagram
@rediagram/[email protected]
0.4.3 (2022-01-27)
Bug Fixes
- @rediagram/aws: fix path to aws transfer family icons #536
Special thanks for @mattfirtion ✨
[email protected]
@rediagram/[email protected]
[email protected]
@rediagram/[email protected]
0.3.0 (2020-12-07)
API Changes
Since there was a problem that the direction of the arrows of upstream and downstream was incorrect( #145 ), we provide an API that allows you to specify the direction such as forward
and backward
in upstream
.
If you used to use downstream
, you need to move to upstream.backward
.
-<AppEngine type="Instance" name="instance2" upstream={['instance1', { destination: 'instance3', position: 'backward' }]}>
+<AppEngine
+ type="Instance"
+ name="instance2"
+ upstream={{
+ forword: ['instance1'],
+ backward: ['instance3'],
+ }} />
Features
@rediagram/[email protected]
@rediagram/[email protected]
0.4.0 (2020-12-07)
API Changes
Since there was a problem that the direction of the arrows of upstream and downstream was incorrect( #145 ), we provide an API that allows you to specify the direction such as forward
and backward
in upstream
.
If you used to use downstream
, you need to move to upstream.backward
.
-<EC2 type="Instance" name="instance2" upstream={['instance1', { destination: 'instance3', position: 'backward' }]}>
+<EC2
+ type="Instance"
+ name="instance2"
+ upstream={{
+ forword: ['instance1'],
+ backward: ['instance3'],
+ }} />