Storage keys now reserve space for per-day session logs that nothing reads or writes.
A project/year/month/day session-log storage area exists only in the key builder and validators.
What's wrong with this entry?
The storage key scheme adds a session-log area addressed by project, year, month, day and a log name, with validation on both the key and its scope. Nothing in this build reads or writes it; it exists only in the key builder and the validators.
- Validation requires a four-digit year and two-digit month and day, a month only alongside a year, and a day only alongside a month.
- The log name must be a short session id of up to eight word characters, optionally followed by a hyphenated lower-case title slug, and cannot be a bare device name.
must be the session-log stem <sessionId8>[-<title-slug>]: up to eight word characters, then lower-case a-z / 0-9 runs joined by single hyphens; not a bare device name, namespace: "sessionLog", must be the session-log stem <sessionId8>[-<title-slug>]
Strings lifted out of the shipped bundle, so the claim above can be checked against them.