Skip to content

Update persistence coverage table #148

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions scripts/persistence/create_persistence_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ def collect_status() -> dict:
catalog_db = PersistenceCatalog(notion_client=notion_client)
statuses = {}
for item in catalog_db:
# skip services that are not implemented
if not item.implemented:
continue

# we do not want some services to be mentioned in the docs (for instance, not yet released)
if item.exclude:
continue
Expand Down
1 change: 1 addition & 0 deletions scripts/persistence/notion/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class PersistenceServiceItem(Page):
secondary_owner = PeopleProperty("Secondary Owner(s)")
limitations = Text("Limitations (synced with docs)")
exclude = Checkbox("Exclude from docs")
implemented = Checkbox("Implemented")


class PersistenceCatalog(Database[PersistenceServiceItem]):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default function PersistenceCoverage() {
getFilteredRowModel: getFilteredRowModel(),
getPaginationRowModel: getPaginationRowModel(),
debugTable: false,
initialState: { pagination: { pageSize: 10 } },
initialState: { pagination: { pageSize: 12 } },
});

return (
Expand Down
Loading