You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expose DatabaseRow stored properties for SQLiteDatabase extensibility (#1056):DatabaseRow's stored properties (cacheKey and storedInfo) are now public, complementing the public initializer added in #664. This lets adopters build wrapper or decorator implementations of the public SQLiteDatabase protocol — for encryption, compression, logging, metrics, and similar use cases — without duplicating Apollo's SQLite implementation. This change only expands the public API surface and introduces no behavioral changes. Thank you to @ErShubhShankar for the contribution.