hostdb 0.12.4 → 0.13.0
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 +13 -9
- package/databases.json +5 -5
- package/package.json +2 -1
- package/releases.json +5 -5
package/README.md
CHANGED
|
@@ -126,15 +126,19 @@ Auto-generated manifest updated after each GitHub Release. Structure:
|
|
|
126
126
|
|
|
127
127
|
## Current Status
|
|
128
128
|
|
|
129
|
-
| Database | Status | Versions | Notes |
|
|
130
|
-
|
|
131
|
-
| MySQL | Completed | 8.4.
|
|
132
|
-
| PostgreSQL | In Progress | 18.1.0, 17.7.0, 16.11.0, 15.15.0 | Source builds + EDB (Windows) |
|
|
133
|
-
| MariaDB | Completed | 11.8.5, 11.4.5, 10.11.15 | Official + source builds |
|
|
134
|
-
|
|
|
135
|
-
|
|
|
136
|
-
|
|
|
137
|
-
|
|
|
129
|
+
| Database | Type | Status | Versions | Notes |
|
|
130
|
+
|----------|------|--------|----------|-------|
|
|
131
|
+
| MySQL | Relational | Completed | 9.5.0, 9.1.0, 8.4.3, 8.0.40 | Official binaries |
|
|
132
|
+
| PostgreSQL | Relational | In Progress | 18.1.0, 17.7.0, 16.11.0, 15.15.0 | Source builds + EDB (Windows) |
|
|
133
|
+
| MariaDB | Relational | Completed | 11.8.5, 11.4.5, 10.11.15 | Official + source builds |
|
|
134
|
+
| SQLite | Embedded | In Progress | 3.51.2 | Official amalgamation |
|
|
135
|
+
| MongoDB | Document | Completed | 8.2.3, 8.0.17, 7.0.28 | Official binaries (SSPL license) |
|
|
136
|
+
| Redis | Key-Value | Completed | 8.4.0, 7.4.7 | Source builds |
|
|
137
|
+
| Valkey | Key-Value | In Progress | 9.0.1, 8.0.6 | Redis-compatible, BSD-3 license |
|
|
138
|
+
| DuckDB | Analytical | Completed | 1.4.3 | Official binaries |
|
|
139
|
+
| ClickHouse | Analytical | Completed | 25.12.3.21 | Official binaries (no Windows) |
|
|
140
|
+
| Qdrant | Vector | Completed | 1.16.3 | Official binaries |
|
|
141
|
+
| Meilisearch | Search | In Progress | 1.33.1 | Official binaries |
|
|
138
142
|
|
|
139
143
|
See `pnpm dbs` for the full list.
|
|
140
144
|
|
package/databases.json
CHANGED
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"defaultUser": "default",
|
|
113
113
|
"queryLanguage": "SQL"
|
|
114
114
|
},
|
|
115
|
-
"status": "
|
|
115
|
+
"status": "completed"
|
|
116
116
|
},
|
|
117
117
|
"cockroachdb": {
|
|
118
118
|
"displayName": "CockroachDB",
|
|
@@ -452,9 +452,9 @@
|
|
|
452
452
|
"commercialUse": true,
|
|
453
453
|
"protocol": null,
|
|
454
454
|
"note": "",
|
|
455
|
-
"latestLts": "1.
|
|
455
|
+
"latestLts": "1.33",
|
|
456
456
|
"versions": {
|
|
457
|
-
"1.
|
|
457
|
+
"1.33.1": true
|
|
458
458
|
},
|
|
459
459
|
"platforms": {
|
|
460
460
|
"linux-x64": true,
|
|
@@ -478,7 +478,7 @@
|
|
|
478
478
|
"defaultUser": null,
|
|
479
479
|
"queryLanguage": "HTTP"
|
|
480
480
|
},
|
|
481
|
-
"status": "
|
|
481
|
+
"status": "in-progress"
|
|
482
482
|
},
|
|
483
483
|
"mongodb": {
|
|
484
484
|
"displayName": "MongoDB",
|
|
@@ -679,7 +679,7 @@
|
|
|
679
679
|
"defaultUser": null,
|
|
680
680
|
"queryLanguage": "HTTP"
|
|
681
681
|
},
|
|
682
|
-
"status": "
|
|
682
|
+
"status": "completed"
|
|
683
683
|
},
|
|
684
684
|
"questdb": {
|
|
685
685
|
"displayName": "QuestDB",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hostdb",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
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",
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"download:clickhouse": "tsx builds/clickhouse/download.ts",
|
|
33
33
|
"download:duckdb": "tsx builds/duckdb/download.ts",
|
|
34
34
|
"download:mariadb": "tsx builds/mariadb/download.ts",
|
|
35
|
+
"download:meilisearch": "tsx builds/meilisearch/download.ts",
|
|
35
36
|
"download:mongodb": "tsx builds/mongodb/download.ts",
|
|
36
37
|
"download:mysql": "tsx builds/mysql/download.ts",
|
|
37
38
|
"download:postgresql": "tsx builds/postgresql/download.ts",
|
package/releases.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "./schemas/releases.schema.json",
|
|
3
3
|
"repository": "robertjbass/hostdb",
|
|
4
|
-
"lastUpdated": "2026-01-
|
|
4
|
+
"lastUpdated": "2026-01-21T07:12:12.164Z",
|
|
5
5
|
"databases": {
|
|
6
6
|
"clickhouse": {
|
|
7
7
|
"25.12.3.21": {
|
|
@@ -401,12 +401,12 @@
|
|
|
401
401
|
"darwin-arm64": {
|
|
402
402
|
"url": "https://github.com/robertjbass/hostdb/releases/download/postgresql-18.1.0/postgresql-18.1.0-darwin-arm64.tar.gz",
|
|
403
403
|
"sha256": "41b9a9f0b02d6bb9d4960a0fed4949e413d5dd4c9087d1ef9fff80480ad26221",
|
|
404
|
-
"size":
|
|
404
|
+
"size": 29191486
|
|
405
405
|
},
|
|
406
406
|
"darwin-x64": {
|
|
407
407
|
"url": "https://github.com/robertjbass/hostdb/releases/download/postgresql-18.1.0/postgresql-18.1.0-darwin-x64.tar.gz",
|
|
408
408
|
"sha256": "7dbbf27186e1cb8ce630c3a4f87a239dfb2593fb35e319a16d963892f0b8df5c",
|
|
409
|
-
"size":
|
|
409
|
+
"size": 28944135
|
|
410
410
|
},
|
|
411
411
|
"linux-arm64": {
|
|
412
412
|
"url": "https://github.com/robertjbass/hostdb/releases/download/postgresql-18.1.0/postgresql-18.1.0-linux-arm64.tar.gz",
|
|
@@ -465,12 +465,12 @@
|
|
|
465
465
|
"darwin-arm64": {
|
|
466
466
|
"url": "https://github.com/robertjbass/hostdb/releases/download/postgresql-16.11.0/postgresql-16.11.0-darwin-arm64.tar.gz",
|
|
467
467
|
"sha256": "14263aa593747300d1b11c766810a3949e2d5f14e79c6bed4ed4224072ebac2e",
|
|
468
|
-
"size":
|
|
468
|
+
"size": 28101046
|
|
469
469
|
},
|
|
470
470
|
"darwin-x64": {
|
|
471
471
|
"url": "https://github.com/robertjbass/hostdb/releases/download/postgresql-16.11.0/postgresql-16.11.0-darwin-x64.tar.gz",
|
|
472
472
|
"sha256": "83ea273c6cc8f40ebd53bfce819d80f8437724344053f4920201a00f70a13ac0",
|
|
473
|
-
"size":
|
|
473
|
+
"size": 27299374
|
|
474
474
|
},
|
|
475
475
|
"linux-arm64": {
|
|
476
476
|
"url": "https://github.com/robertjbass/hostdb/releases/download/postgresql-16.11.0/postgresql-16.11.0-linux-arm64.tar.gz",
|