database migration 1.0.4, store topic fetch etag/last-modified, provide these when...
authorJustin Wind <justin.wind+git@gmail.com>
Tue, 5 Apr 2022 01:04:02 +0000 (18:04 -0700)
committerJustin Wind <justin.wind+git@gmail.com>
Tue, 5 Apr 2022 01:04:02 +0000 (18:04 -0700)
commit71efac9dcd7dc219cb83799391e7adc63cd4c662
tree8cbf0478d8472c2a89ef8162d04e1c9d9956f18f
parent8ac5b7115094d9044ee26a1a4e2334b5ff6ef40c
database migration 1.0.4, store topic fetch etag/last-modified, provide these when fetching topic contents.  last-modified is specifically stored/requested as-is to simplify handling of odd topic servers.
16 files changed:
README.md
documentation/media/postgres-er.svg
documentation/media/sqlite-er.svg
src/communication.js
src/db/base.js
src/db/postgres/index.js
src/db/postgres/sql/schema/1.0.4/apply.sql [new file with mode: 0644]
src/db/postgres/sql/schema/1.0.4/er.dot [new file with mode: 0644]
src/db/postgres/sql/schema/1.0.4/revert.sql [new file with mode: 0644]
src/db/postgres/sql/topic-set-content.sql
src/db/sqlite/index.js
src/db/sqlite/sql/schema/1.0.4/apply.sql [new file with mode: 0644]
src/db/sqlite/sql/schema/1.0.4/er.dot [new file with mode: 0644]
src/db/sqlite/sql/schema/1.0.4/revert.sql [new file with mode: 0644]
src/db/sqlite/sql/topic-set-content.sql
test/src/communication.js