@bjornpagen/bumbledb-log 0.20.0 → 0.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/keys.ts +8 -2
- package/src/tilde-family.json +21 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bjornpagen/bumbledb-log",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.1",
|
|
4
4
|
"description": "Braided object-store replication for bumbledb: the command codec, theory-derived braids, and replica/writer over five store verbs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"arkregex": "^0.0.8"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@bjornpagen/bumbledb": "^0.20.
|
|
40
|
+
"@bjornpagen/bumbledb": "^0.20.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@biomejs/biome": "2.5.4",
|
package/src/keys.ts
CHANGED
|
@@ -27,8 +27,14 @@ const LOCK_SUFFIX = ".lock"
|
|
|
27
27
|
const TEMP_NAMESPACE = "~tmp"
|
|
28
28
|
const LEASE_NAMESPACE = "~lease"
|
|
29
29
|
|
|
30
|
-
/**
|
|
31
|
-
|
|
30
|
+
/**
|
|
31
|
+
* The one tilde table both drivers consume: ASCII `~`, its lookalikes, and
|
|
32
|
+
* the NFKC preimage of U+007E. The packaged copy beside this module is the
|
|
33
|
+
* census-pinned byte-identical twin of the generator's output at
|
|
34
|
+
* crates/bumbledb-log/conformance/v3/keys/tilde-family.json, so the read
|
|
35
|
+
* never leaves the published files roster.
|
|
36
|
+
*/
|
|
37
|
+
const TILDE_TABLE_URL = new URL("./tilde-family.json", import.meta.url)
|
|
32
38
|
|
|
33
39
|
const CODE_POINT_SPELLING = regex("^U\\+[0-9A-F]{4,6}$")
|
|
34
40
|
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"surface": "key-grammar/tilde-family",
|
|
3
|
+
"rule": "a segment whose first code point is in this set is reserved; the set is ASCII tilde, its lookalikes, and the NFKC preimage of U+007E, one closed table both drivers consume",
|
|
4
|
+
"codePoints": [
|
|
5
|
+
"U+007E",
|
|
6
|
+
"U+02DC",
|
|
7
|
+
"U+02F7",
|
|
8
|
+
"U+1FC0",
|
|
9
|
+
"U+2053",
|
|
10
|
+
"U+223C",
|
|
11
|
+
"U+223D",
|
|
12
|
+
"U+223F",
|
|
13
|
+
"U+2E1E",
|
|
14
|
+
"U+2E1F",
|
|
15
|
+
"U+301C",
|
|
16
|
+
"U+3030",
|
|
17
|
+
"U+FE4B",
|
|
18
|
+
"U+FE4F",
|
|
19
|
+
"U+FF5E"
|
|
20
|
+
]
|
|
21
|
+
}
|