hostdb 0.21.2 → 0.22.1
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 +4 -0
- package/databases.json +42 -0
- package/package.json +2 -1
- package/releases.json +74 -0
package/README.md
CHANGED
|
@@ -141,6 +141,9 @@ Auto-generated manifest updated after each GitHub Release. Structure:
|
|
|
141
141
|
| Meilisearch | Search | In Progress | 1.33.1 | Official binaries |
|
|
142
142
|
| InfluxDB | Time-series | In Progress | 3.8.0 | Official + source build (darwin-x64) |
|
|
143
143
|
| TypeDB | Graph | In Progress | 3.8.0 | Official binaries (Cloudsmith) |
|
|
144
|
+
| FerretDB | Document | Completed | 2.7.0 | MongoDB alternative (PostgreSQL+DocumentDB backend) |
|
|
145
|
+
| FerretDB (v1) | Document | In Progress | 1.24.2 | MongoDB alternative (plain PostgreSQL backend) |
|
|
146
|
+
| PostgreSQL+DocumentDB | Document | Completed | 17-0.107.0 | PostgreSQL with DocumentDB extension for FerretDB |
|
|
144
147
|
|
|
145
148
|
See `pnpm dbs` for the full list.
|
|
146
149
|
|
|
@@ -164,6 +167,7 @@ Some databases depend on other database engines for client tools or as backends:
|
|
|
164
167
|
| Database | Depends On | Cascade Delete | Notes |
|
|
165
168
|
|----------|------------|----------------|-------|
|
|
166
169
|
| FerretDB | postgresql-documentdb | Yes | postgresql-documentdb is removed when FerretDB is removed (no standalone use) |
|
|
170
|
+
| FerretDB (v1) | postgresql | No | Uses plain PostgreSQL as backend; PostgreSQL remains as standalone |
|
|
167
171
|
| QuestDB | postgresql | No | PostgreSQL client tools (psql) used for wire protocol; PostgreSQL remains as standalone |
|
|
168
172
|
|
|
169
173
|
**Cascade Delete** indicates whether removing a database also removes its dependency:
|
package/databases.json
CHANGED
|
@@ -389,6 +389,48 @@
|
|
|
389
389
|
},
|
|
390
390
|
"status": "completed"
|
|
391
391
|
},
|
|
392
|
+
"ferretdb-v1": {
|
|
393
|
+
"displayName": "FerretDB (v1)",
|
|
394
|
+
"description": "Open-source MongoDB alternative using plain PostgreSQL as the backend, wire-protocol compatible (v1.x line)",
|
|
395
|
+
"type": "Document",
|
|
396
|
+
"sourceRepo": "https://github.com/FerretDB/FerretDB",
|
|
397
|
+
"license": "Apache-2.0",
|
|
398
|
+
"commercialUse": true,
|
|
399
|
+
"hostedServiceAllowed": true,
|
|
400
|
+
"protocol": "mongodb",
|
|
401
|
+
"note": "FerretDB v1.x uses plain PostgreSQL (no DocumentDB extension). Lighter weight than v2 but fewer MongoDB features. Linux binaries from official releases; macOS/Windows cross-compiled from source with Go.",
|
|
402
|
+
"dependency": {
|
|
403
|
+
"database": "postgresql",
|
|
404
|
+
"cascadeDelete": false,
|
|
405
|
+
"note": "FerretDB v1 uses plain PostgreSQL as its backend; PostgreSQL remains installed as a standalone database when FerretDB is removed"
|
|
406
|
+
},
|
|
407
|
+
"latestLts": "1.24",
|
|
408
|
+
"versions": {
|
|
409
|
+
"1.24.2": true
|
|
410
|
+
},
|
|
411
|
+
"platforms": {
|
|
412
|
+
"linux-x64": true,
|
|
413
|
+
"linux-arm64": true,
|
|
414
|
+
"darwin-x64": true,
|
|
415
|
+
"darwin-arm64": true,
|
|
416
|
+
"win32-x64": true
|
|
417
|
+
},
|
|
418
|
+
"cliTools": {
|
|
419
|
+
"server": "ferretdb",
|
|
420
|
+
"client": "mongosh",
|
|
421
|
+
"utilities": ["mongodump", "mongorestore"],
|
|
422
|
+
"enhanced": []
|
|
423
|
+
},
|
|
424
|
+
"connection": {
|
|
425
|
+
"runtime": "server",
|
|
426
|
+
"defaultPort": 27017,
|
|
427
|
+
"scheme": "mongodb",
|
|
428
|
+
"defaultDatabase": "test",
|
|
429
|
+
"defaultUser": null,
|
|
430
|
+
"queryLanguage": "MQL"
|
|
431
|
+
},
|
|
432
|
+
"status": "in-progress"
|
|
433
|
+
},
|
|
392
434
|
"firebird": {
|
|
393
435
|
"displayName": "Firebird",
|
|
394
436
|
"description": "Relational database with embedded and client/server modes, full SQL support with stored procedures and triggers",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hostdb",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.1",
|
|
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",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"download:couchdb": "tsx builds/couchdb/download.ts",
|
|
35
35
|
"download:duckdb": "tsx builds/duckdb/download.ts",
|
|
36
36
|
"download:ferretdb": "tsx builds/ferretdb/download.ts",
|
|
37
|
+
"download:ferretdb-v1": "tsx builds/ferretdb-v1/download.ts",
|
|
37
38
|
"download:influxdb": "tsx builds/influxdb/download.ts",
|
|
38
39
|
"download:mariadb": "tsx builds/mariadb/download.ts",
|
|
39
40
|
"download:meilisearch": "tsx builds/meilisearch/download.ts",
|
package/releases.json
CHANGED
|
@@ -71,6 +71,26 @@
|
|
|
71
71
|
"releaseTag": "couchdb-3.5.1",
|
|
72
72
|
"releasedAt": "2026-01-25T18:54:37Z",
|
|
73
73
|
"platforms": {
|
|
74
|
+
"darwin-arm64": {
|
|
75
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/couchdb-3.5.1/couchdb-3.5.1-darwin-arm64.tar.gz",
|
|
76
|
+
"sha256": "e5b96ea40e6b92e441244c52add55192db0c9ffe74a3a296ebf1a87ac35c3ac0",
|
|
77
|
+
"size": 96849038
|
|
78
|
+
},
|
|
79
|
+
"darwin-x64": {
|
|
80
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/couchdb-3.5.1/couchdb-3.5.1-darwin-x64.tar.gz",
|
|
81
|
+
"sha256": "ce596086048fffb63b224612264cd219d4f229bbe2f40aa78154f56866e25391",
|
|
82
|
+
"size": 99325861
|
|
83
|
+
},
|
|
84
|
+
"linux-arm64": {
|
|
85
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/couchdb-3.5.1/couchdb-3.5.1-linux-arm64.tar.gz",
|
|
86
|
+
"sha256": "c74a5f5b37e518879a1f4c856d95594c0e7a0bab0000796693b94c1394a3f9c3",
|
|
87
|
+
"size": 75379710
|
|
88
|
+
},
|
|
89
|
+
"linux-x64": {
|
|
90
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/couchdb-3.5.1/couchdb-3.5.1-linux-x64.tar.gz",
|
|
91
|
+
"sha256": "1d769fb89c28c172bf5d48f44c19c60068411a2717ba72b4a544583d5f77d77e",
|
|
92
|
+
"size": 75806285
|
|
93
|
+
},
|
|
74
94
|
"win32-x64": {
|
|
75
95
|
"url": "https://github.com/robertjbass/hostdb/releases/download/couchdb-3.5.1/couchdb-3.5.1-win32-x64.zip",
|
|
76
96
|
"sha256": "a64726782c4c321b3bf62ccc46e38aa97ad3c3ecbb78288c68a050722acf8a9a",
|
|
@@ -147,6 +167,40 @@
|
|
|
147
167
|
}
|
|
148
168
|
}
|
|
149
169
|
},
|
|
170
|
+
"ferretdb-v1": {
|
|
171
|
+
"1.24.2": {
|
|
172
|
+
"version": "1.24.2",
|
|
173
|
+
"releaseTag": "ferretdb-v1-1.24.2",
|
|
174
|
+
"releasedAt": "2026-02-14T09:39:04Z",
|
|
175
|
+
"platforms": {
|
|
176
|
+
"darwin-arm64": {
|
|
177
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/ferretdb-v1-1.24.2/ferretdb-v1-1.24.2-darwin-arm64.tar.gz",
|
|
178
|
+
"sha256": "f9ad9f835e89beded3e5190f4e9cd4dc480b2cfb5de8eb30ff823efb395385b9",
|
|
179
|
+
"size": 166673908
|
|
180
|
+
},
|
|
181
|
+
"darwin-x64": {
|
|
182
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/ferretdb-v1-1.24.2/ferretdb-v1-1.24.2-darwin-x64.tar.gz",
|
|
183
|
+
"sha256": "675ab30ed20aef3ae554a8de7f5332936d2b055aec0f37aa8f54c314191cb81c",
|
|
184
|
+
"size": 178016566
|
|
185
|
+
},
|
|
186
|
+
"linux-arm64": {
|
|
187
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/ferretdb-v1-1.24.2/ferretdb-v1-1.24.2-linux-arm64.tar.gz",
|
|
188
|
+
"sha256": "8c305584deb421940dc7b2584d63e054b59ef340ba3cb713576d1461c5c6fa8f",
|
|
189
|
+
"size": 171773930
|
|
190
|
+
},
|
|
191
|
+
"linux-x64": {
|
|
192
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/ferretdb-v1-1.24.2/ferretdb-v1-1.24.2-linux-x64.tar.gz",
|
|
193
|
+
"sha256": "c4d691bc459f7b6133446ddc8b411e4ba6db724afb415115587a7bcc6b15c639",
|
|
194
|
+
"size": 180528902
|
|
195
|
+
},
|
|
196
|
+
"win32-x64": {
|
|
197
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/ferretdb-v1-1.24.2/ferretdb-v1-1.24.2-win32-x64.zip",
|
|
198
|
+
"sha256": "309c6ea19aab03c8362c388d12e3ff7b3b7376b9cbd032b8095cd32e9ed4f9f0",
|
|
199
|
+
"size": 147877432
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
},
|
|
150
204
|
"influxdb": {
|
|
151
205
|
"3.8.0": {
|
|
152
206
|
"version": "3.8.0",
|
|
@@ -677,10 +731,30 @@
|
|
|
677
731
|
"releaseTag": "postgresql-documentdb-17-0.107.0",
|
|
678
732
|
"releasedAt": "2026-01-23T23:05:02Z",
|
|
679
733
|
"platforms": {
|
|
734
|
+
"darwin-arm64": {
|
|
735
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/postgresql-documentdb-17-0.107.0/postgresql-documentdb-17-0.107.0-darwin-arm64.tar.gz",
|
|
736
|
+
"sha256": "09298146e0cbb9f668e2d2058280277dee661ce6ece922471c1cfe0b84a0fd1d",
|
|
737
|
+
"size": 37575761
|
|
738
|
+
},
|
|
680
739
|
"darwin-x64": {
|
|
681
740
|
"url": "https://github.com/robertjbass/hostdb/releases/download/postgresql-documentdb-17-0.107.0/postgresql-documentdb-17-0.107.0-darwin-x64.tar.gz",
|
|
682
741
|
"sha256": "15a3e342adbf9007609bd2aa3a69c47264fd97e998f38403b9b461149c0b5a85",
|
|
683
742
|
"size": 38520395
|
|
743
|
+
},
|
|
744
|
+
"linux-arm64": {
|
|
745
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/postgresql-documentdb-17-0.107.0/postgresql-documentdb-17-0.107.0-linux-arm64.tar.gz",
|
|
746
|
+
"sha256": "ab960ac1d5893264299e3ebb5267efe35585a49360da8d51b38d8c8a30893f6d",
|
|
747
|
+
"size": 78415221
|
|
748
|
+
},
|
|
749
|
+
"linux-x64": {
|
|
750
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/postgresql-documentdb-17-0.107.0/postgresql-documentdb-17-0.107.0-linux-x64.tar.gz",
|
|
751
|
+
"sha256": "7c5c3ba0b589dbc2b0dffb9f78fd1479b337ce15fec6b08bc05e0399a0fc7bd8",
|
|
752
|
+
"size": 83019446
|
|
753
|
+
},
|
|
754
|
+
"win32-x64": {
|
|
755
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/postgresql-documentdb-17-0.107.0/postgresql-documentdb-17-0.107.0-win32-x64.zip",
|
|
756
|
+
"sha256": "3305c27b01307c6b3cb43df376d463fd191f2bb12da134f17520a206804eb469",
|
|
757
|
+
"size": 334867318
|
|
684
758
|
}
|
|
685
759
|
}
|
|
686
760
|
}
|