update dependencies, fixes to support new authentication features
authorJustin Wind <justin.wind+git@gmail.com>
Fri, 21 Jun 2024 00:47:28 +0000 (17:47 -0700)
committerJustin Wind <justin.wind+git@gmail.com>
Fri, 21 Jun 2024 00:47:28 +0000 (17:47 -0700)
commit3ca7fccb306d0b23626befc3791ffa360b3db1e7
tree9aa1f9f3e8a4db027026397c026bb2932d7408de
parent1c37a7c533a5530390489ea9a49dcca492db1074
update dependencies, fixes to support new authentication features
34 files changed:
CHANGELOG.md
config/index.js
documentation/media/postgres-er.svg
documentation/media/sqlite-er.svg
package-lock.json
package.json
src/common.js
src/db/base.js
src/db/postgres/index.js
src/db/postgres/sql/authentication-update-credential.sql [new file with mode: 0644]
src/db/postgres/sql/authentication-update-otp-key.sql [new file with mode: 0644]
src/db/postgres/sql/authentication-upsert.sql
src/db/postgres/sql/schema/1.1.0/apply.sql [new file with mode: 0644]
src/db/postgres/sql/schema/1.1.0/er.dot [new file with mode: 0644]
src/db/postgres/sql/schema/1.1.0/revert.sql [new file with mode: 0644]
src/db/sqlite/index.js
src/db/sqlite/sql/authentication-update-credential.sql [new file with mode: 0644]
src/db/sqlite/sql/authentication-update-otp-key.sql [new file with mode: 0644]
src/db/sqlite/sql/authentication-upsert.sql
src/db/sqlite/sql/schema/1.1.0/apply.sql [new file with mode: 0644]
src/db/sqlite/sql/schema/1.1.0/er.dot [new file with mode: 0644]
src/db/sqlite/sql/schema/1.1.0/revert.sql [new file with mode: 0644]
src/service.js
src/template/admin-overview-html.js
src/template/admin-topic-details-html.js
src/template/root-html.js
src/template/template-helper.js
static/theme.css
test/src/db/factory.js
test/src/db/integration.js
test/src/db/postgres.js
test/src/db/sqlite.js
test/src/service.js
test/stub-db.js