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
pathPattern is intended to check that a provided path consists exclusively of letters, numbers, underscores, ASCII dashes, and separating periods, but because it lacks anchoring, it actually matches any provided path.
To Reproduce
This cannot be reproduced from the JS side, because vat-bridge chainStorageNodes have their own validation.
Expected behavior
The vstorage module should clearly document constraints on paths, and reject any attempt to use a path that does not conform with them.
The text was updated successfully, but these errors were encountered:
Describe the bug
pathPattern
is intended to check that a provided path consists exclusively of letters, numbers, underscores, ASCII dashes, and separating periods, but because it lacks anchoring, it actually matches any provided path.To Reproduce
This cannot be reproduced from the JS side, because vat-bridge chainStorageNodes have their own validation.
Expected behavior
The vstorage module should clearly document constraints on paths, and reject any attempt to use a path that does not conform with them.
The text was updated successfully, but these errors were encountered: