You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
All UUIDs are normalized to lower case with '-' separators. We need to note that in the docs so that app creators who use the UUID as a string index don't get random failures or unexpected results.
The text was updated successfully, but these errors were encountered:
Let's also have process_register return an error for channel IDs that aren't in that form. I think this would be less surprising than our current behavior, where we accept the ID, but then deliver to the normalized form.
The code normalizes UUIDs used for channelIDs and UIADs to lower case,
dashed format. The docs now state that and the code will reject UUIDs
that are not well formatted. This is important for clients that may
normalize differently.
Fixes#392
The code normalizes UUIDs used for channelIDs and UIADs to lower case,
dashed format. The docs now state that and the code will reject UUIDs
that are not well formatted. This is important for clients that may
normalize differently.
BREAKING CHANGE: This patch will reject UUIDs that are not expressed as
lower case, dash formatted (e.g. "00001111-aaaa-bbbb-cccc-222233334444")
Closes#392
The code normalizes UUIDs used for channelIDs and UIADs to lower case,
dashed format. The docs now state that and the code will reject UUIDs
that are not well formatted. This is important for clients that may
normalize differently.
BREAKING CHANGE: This patch will reject UUIDs that are not expressed as
lower case, dash formatted (e.g. "00001111-aaaa-bbbb-cccc-222233334444")
Closes#392
All UUIDs are normalized to lower case with '-' separators. We need to note that in the docs so that app creators who use the UUID as a string index don't get random failures or unexpected results.
The text was updated successfully, but these errors were encountered: