mirror of
https://github.com/servo/servo.git
synced 2025-09-19 03:18:20 +01:00
indexeddb: Use UUIDs instead of sanitization of object store names (#38944)
Sanitization of object store names brought some problems because of replacing special characters and making it impossible to have certain object store names that are allowed by the spec. These changes make sure deterministic UUIDs are used for file paths plus object store names are inserted into SQLite without sanitization. Testing: Covered by existing tests and new unit tests were added. Fixes: #37569 --------- Signed-off-by: Rodion Borovyk <rodion.borovyk@gmail.com>
This commit is contained in:
parent
559b05c1b3
commit
0089e652c5
6 changed files with 119 additions and 111 deletions
|
@ -168,7 +168,7 @@ unicode-script = "0.5"
|
|||
unicode-segmentation = "1.12.0"
|
||||
url = "2.5"
|
||||
urlpattern = "0.3"
|
||||
uuid = { version = "1.18.0", features = ["v4"] }
|
||||
uuid = { version = "1.18.0", features = ["v4", "v5"] }
|
||||
vello = { git = "https://github.com/linebender/vello", rev = "472c43ccc80c731d32d167c9e9748c78df1977f4" }
|
||||
vello_cpu = { git = "https://github.com/linebender/vello", rev = "472c43ccc80c731d32d167c9e9748c78df1977f4" }
|
||||
webdriver = "0.53.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue