chore: updte change log
This commit is contained in:
parent
a1e85e3c59
commit
46f339dfab
|
@ -136,7 +136,7 @@ create_channel_state(
|
||||||
Keys = maps:with([hash_key, range_key], Conf),
|
Keys = maps:with([hash_key, range_key], Conf),
|
||||||
Keys1 = maps:fold(
|
Keys1 = maps:fold(
|
||||||
fun(K, V, Acc) ->
|
fun(K, V, Acc) ->
|
||||||
Acc#{K := erlang:binary_to_atom(V)}
|
Acc#{K := erlang:binary_to_existing_atom(V)}
|
||||||
end,
|
end,
|
||||||
Keys,
|
Keys,
|
||||||
Keys
|
Keys
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
Complemented some necessary but missed keys for the DynamoDB connector and the action.
|
||||||
|
|
||||||
|
## Breaking changes
|
||||||
|
* The old configuration no longer works, although it actually didn't work properly until this fix.
|
||||||
|
* For DynamoDB connector, a new key `region` is necessary.
|
||||||
|
* `hash_key` and `range_key` are now supported in the DynamoDB action, and `hash_key` is required.
|
|
@ -18,8 +18,8 @@ table.desc:
|
||||||
table.label:
|
table.label:
|
||||||
"""Table """
|
"""Table """
|
||||||
|
|
||||||
region.label:
|
region.desc:
|
||||||
"""Region of the AWS Dynamo"""
|
"""Region of AWS Dynamo"""
|
||||||
|
|
||||||
url.desc:
|
url.desc:
|
||||||
"""The url of DynamoDB endpoint."""
|
"""The url of DynamoDB endpoint."""
|
||||||
|
|
Loading…
Reference in New Issue