17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
+
+
|
- **Double-check crosslinking of other types** and make sure that we are not missing newly-added features.
- **Stash** support. First requires merge support.
- **Unversioned files** should be trivial to do.
- The routine(s) which add file content to a repo must, for compatibility with fossil, reject any blobs which approach 2GB (signed 32 bits) in size. Such a blob will lead to OOM crashes in fossil. We also have to refuse to compress blobs that large, as this limit applies to uncompressed sizes.
- `fsl_deck_F_next()` currently includes F-cards which deleted files via a delta manifest in its iteration results. It really shouldn't, as that only applies to delta manifests and whether or not a manifest is a delta is really a purely internal detail.
# Security-relevant
But not otherwise SCM-relevant...
- **Port over `db_unprotect()` and `db_protect_pop()`** APIs, which allow a db to effectively be made read-only except for limited windows where specific sections of it needs to be writable. Related: `db.c:db_top_autorizer()`.
|