hostdb 0.19.0 → 0.19.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -155,6 +155,19 @@ Some databases have restrictive licenses that limit commercial and closed-source
155
155
 
156
156
  If you need MongoDB or Redis compatibility for commercial/closed-source projects, use FerretDB or Valkey instead.
157
157
 
158
+ ### Database Dependencies
159
+
160
+ Some databases depend on other database engines for client tools or as backends:
161
+
162
+ | Database | Depends On | Cascade Delete | Notes |
163
+ |----------|------------|----------------|-------|
164
+ | FerretDB | postgresql-documentdb | Yes | postgresql-documentdb is removed when FerretDB is removed (no standalone use) |
165
+ | QuestDB | postgresql | No | PostgreSQL client tools (psql) used for wire protocol; PostgreSQL remains as standalone |
166
+
167
+ **Cascade Delete** indicates whether removing a database also removes its dependency:
168
+ - **Yes**: The dependency exists solely to support this database and is removed together
169
+ - **No**: The dependency is a standalone database that remains installed
170
+
158
171
  ## GitHub Actions
159
172
 
160
173
  Each database has a release workflow triggered via `workflow_dispatch`:
package/databases.json CHANGED
@@ -307,6 +307,11 @@
307
307
  "commercialUse": true,
308
308
  "protocol": "mongodb",
309
309
  "note": "Version 2 requires Postgres-DocumentDB (not on windows) but v1 may in theory build on windows",
310
+ "dependency": {
311
+ "database": "postgresql-documentdb",
312
+ "cascadeDelete": true,
313
+ "note": "FerretDB uses postgresql-documentdb as its backend; removing FerretDB also removes postgresql-documentdb since it has no standalone use"
314
+ },
310
315
  "latestLts": "2.7",
311
316
  "versions": {
312
317
  "2.7.0": true
@@ -729,6 +734,11 @@
729
734
  "commercialUse": true,
730
735
  "protocol": null,
731
736
  "note": "",
737
+ "dependency": {
738
+ "database": "postgresql",
739
+ "cascadeDelete": false,
740
+ "note": "QuestDB uses PostgreSQL client tools (psql, pgcli) for its wire protocol; PostgreSQL remains installed as a standalone database when QuestDB is removed"
741
+ },
732
742
  "latestLts": "9.2",
733
743
  "versions": {
734
744
  "9.2.3": true
@@ -755,7 +765,7 @@
755
765
  "defaultUser": "admin",
756
766
  "queryLanguage": "SQL"
757
767
  },
758
- "status": "in-progress"
768
+ "status": "completed"
759
769
  },
760
770
  "redis": {
761
771
  "displayName": "Redis",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hostdb",
3
- "version": "0.19.0",
3
+ "version": "0.19.2",
4
4
  "description": "Source and download pre-built database binaries for multiple platforms, distributed via GitHub Releases",
5
5
  "private": false,
6
6
  "type": "module",
package/releases.json CHANGED
@@ -685,6 +685,40 @@
685
685
  }
686
686
  }
687
687
  },
688
+ "questdb": {
689
+ "9.2.3": {
690
+ "version": "9.2.3",
691
+ "releaseTag": "questdb-9.2.3",
692
+ "releasedAt": "2026-01-27T04:54:06Z",
693
+ "platforms": {
694
+ "darwin-arm64": {
695
+ "url": "https://github.com/robertjbass/hostdb/releases/download/questdb-9.2.3/questdb-9.2.3-darwin-arm64.tar.gz",
696
+ "sha256": "3a64985680c4dbebce92870af7c0caac989329727a851e3a571005c879b8556c",
697
+ "size": 76357339
698
+ },
699
+ "darwin-x64": {
700
+ "url": "https://github.com/robertjbass/hostdb/releases/download/questdb-9.2.3/questdb-9.2.3-darwin-x64.tar.gz",
701
+ "sha256": "d1ad6f5f91794f61f1cd27369e1cba32fadc6663660e2dc3948e19896b14d402",
702
+ "size": 70211948
703
+ },
704
+ "linux-arm64": {
705
+ "url": "https://github.com/robertjbass/hostdb/releases/download/questdb-9.2.3/questdb-9.2.3-linux-arm64.tar.gz",
706
+ "sha256": "543c127c37e1d5ae75b351376c24739f1ff3339704e7b52098027d0a87c27238",
707
+ "size": 79498762
708
+ },
709
+ "linux-x64": {
710
+ "url": "https://github.com/robertjbass/hostdb/releases/download/questdb-9.2.3/questdb-9.2.3-linux-x64.tar.gz",
711
+ "sha256": "2943e964e763bac1f0849b5eaea2015b4e4d8115ab5a95002de6eec2c03e0775",
712
+ "size": 84233128
713
+ },
714
+ "win32-x64": {
715
+ "url": "https://github.com/robertjbass/hostdb/releases/download/questdb-9.2.3/questdb-9.2.3-win32-x64.zip",
716
+ "sha256": "5e8bbe40459b5362dda2563bf217261cee95aaa7c1940b711c4ef688e01fe7ed",
717
+ "size": 75651203
718
+ }
719
+ }
720
+ }
721
+ },
688
722
  "redis": {
689
723
  "8.4.0": {
690
724
  "version": "8.4.0",