hostdb 0.20.0 → 0.21.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 +1 -0
- package/bin/cli.js +3 -1
- package/cli/bin.ts +117 -60
- package/databases.json +196 -43
- package/package.json +2 -1
- package/releases.json +68 -0
package/README.md
CHANGED
|
@@ -139,6 +139,7 @@ Auto-generated manifest updated after each GitHub Release. Structure:
|
|
|
139
139
|
| ClickHouse | Analytical | Completed | 25.12.3.21 | Official binaries (no Windows) |
|
|
140
140
|
| Qdrant | Vector | Completed | 1.16.3 | Official binaries |
|
|
141
141
|
| Meilisearch | Search | In Progress | 1.33.1 | Official binaries |
|
|
142
|
+
| InfluxDB | Time-series | In Progress | 3.8.0 | Official + source build (darwin-x64) |
|
|
142
143
|
| TypeDB | Graph | In Progress | 3.8.0 | Official binaries (Cloudsmith) |
|
|
143
144
|
|
|
144
145
|
See `pnpm dbs` for the full list.
|
package/bin/cli.js
CHANGED
|
@@ -64,7 +64,9 @@ child.on('exit', (code, signal) => {
|
|
|
64
64
|
|
|
65
65
|
// Exit with same code or signal-based exit code
|
|
66
66
|
if (signal) {
|
|
67
|
-
process.exit(
|
|
67
|
+
process.exit(
|
|
68
|
+
128 + (signal === 'SIGINT' ? 2 : signal === 'SIGTERM' ? 15 : 1),
|
|
69
|
+
)
|
|
68
70
|
}
|
|
69
71
|
process.exit(code ?? 0)
|
|
70
72
|
})
|
package/cli/bin.ts
CHANGED
|
@@ -33,10 +33,10 @@ const PLATFORM_ALIASES: Record<string, Platform[]> = {
|
|
|
33
33
|
// macOS specific
|
|
34
34
|
'mac-arm': ['darwin-arm64'],
|
|
35
35
|
'mac-intel': ['darwin-x64'],
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
m1: ['darwin-arm64'],
|
|
37
|
+
m2: ['darwin-arm64'],
|
|
38
|
+
m3: ['darwin-arm64'],
|
|
39
|
+
m4: ['darwin-arm64'],
|
|
40
40
|
// Windows
|
|
41
41
|
win: ['win32-x64'],
|
|
42
42
|
windows: ['win32-x64'],
|
|
@@ -109,7 +109,9 @@ function resolveTargetPlatform(
|
|
|
109
109
|
const target = platforms[0]
|
|
110
110
|
if (!availablePlatforms[target]) {
|
|
111
111
|
console.error(`Error: Platform '${platformInput}' not found`)
|
|
112
|
-
console.error(
|
|
112
|
+
console.error(
|
|
113
|
+
`\nAvailable: ${Object.keys(availablePlatforms).join(', ')}`,
|
|
114
|
+
)
|
|
113
115
|
process.exit(1)
|
|
114
116
|
}
|
|
115
117
|
return target
|
|
@@ -120,7 +122,9 @@ function resolveTargetPlatform(
|
|
|
120
122
|
const target = platforms.find((p) => availablePlatforms[p])
|
|
121
123
|
if (!target) {
|
|
122
124
|
console.error(`Error: No matching platform for '${platformInput}'`)
|
|
123
|
-
console.error(
|
|
125
|
+
console.error(
|
|
126
|
+
`\nAvailable: ${Object.keys(availablePlatforms).join(', ')}`,
|
|
127
|
+
)
|
|
124
128
|
process.exit(1)
|
|
125
129
|
}
|
|
126
130
|
return target
|
|
@@ -210,7 +214,9 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
210
214
|
dbFilter = resolved
|
|
211
215
|
} else if (resolved) {
|
|
212
216
|
console.error(`Error: Database '${filter}' not found`)
|
|
213
|
-
console.error(
|
|
217
|
+
console.error(
|
|
218
|
+
`\nAvailable: ${Object.keys(releases.databases).join(', ')}`,
|
|
219
|
+
)
|
|
214
220
|
process.exit(1)
|
|
215
221
|
}
|
|
216
222
|
}
|
|
@@ -218,23 +224,27 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
218
224
|
// Determine what to show based on filters
|
|
219
225
|
if (!dbFilter && !versionFilter && !platformFilter) {
|
|
220
226
|
// No filters: show all databases
|
|
221
|
-
const result = Object.keys(releases.databases)
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
227
|
+
const result = Object.keys(releases.databases)
|
|
228
|
+
.sort()
|
|
229
|
+
.map((db) => {
|
|
230
|
+
const versions = Object.keys(releases.databases[db])
|
|
231
|
+
const info = databases.databases[db]
|
|
232
|
+
return {
|
|
233
|
+
database: db,
|
|
234
|
+
displayName: info?.displayName || db,
|
|
235
|
+
type: info?.type || '',
|
|
236
|
+
versions: versions.length,
|
|
237
|
+
}
|
|
238
|
+
})
|
|
231
239
|
|
|
232
240
|
if (jsonOutput) {
|
|
233
241
|
console.log(JSON.stringify(result, null, 2))
|
|
234
242
|
} else {
|
|
235
243
|
console.log('Available databases:\n')
|
|
236
244
|
for (const r of result) {
|
|
237
|
-
console.log(
|
|
245
|
+
console.log(
|
|
246
|
+
` ${r.database.padEnd(15)} ${r.displayName.padEnd(15)} ${r.type.padEnd(20)} (${r.versions} versions)`,
|
|
247
|
+
)
|
|
238
248
|
}
|
|
239
249
|
}
|
|
240
250
|
return
|
|
@@ -267,9 +277,13 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
267
277
|
})
|
|
268
278
|
|
|
269
279
|
if (jsonOutput) {
|
|
270
|
-
console.log(
|
|
280
|
+
console.log(
|
|
281
|
+
JSON.stringify({ database: dbFilter, versions: result }, null, 2),
|
|
282
|
+
)
|
|
271
283
|
} else {
|
|
272
|
-
const platformLabel = platformFilter
|
|
284
|
+
const platformLabel = platformFilter
|
|
285
|
+
? ` (${platformFilter.join(', ')})`
|
|
286
|
+
: ''
|
|
273
287
|
console.log(`Versions for ${dbFilter}${platformLabel}:\n`)
|
|
274
288
|
for (const r of result) {
|
|
275
289
|
console.log(` ${r.version.padEnd(15)} (${r.platforms.join(', ')})`)
|
|
@@ -282,31 +296,43 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
282
296
|
// Database and version: show platforms
|
|
283
297
|
const dbReleases = releases.databases[dbFilter]
|
|
284
298
|
if (!dbReleases[versionFilter]) {
|
|
285
|
-
console.error(
|
|
286
|
-
|
|
299
|
+
console.error(
|
|
300
|
+
`Error: Version '${versionFilter}' not found for ${dbFilter}`,
|
|
301
|
+
)
|
|
302
|
+
console.error(
|
|
303
|
+
`\nAvailable: ${sortVersionsDesc(Object.keys(dbReleases)).join(', ')}`,
|
|
304
|
+
)
|
|
287
305
|
process.exit(1)
|
|
288
306
|
}
|
|
289
307
|
|
|
290
308
|
const release = dbReleases[versionFilter]
|
|
291
|
-
const result = (Object.keys(release.platforms) as Platform[])
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
309
|
+
const result = (Object.keys(release.platforms) as Platform[])
|
|
310
|
+
.sort()
|
|
311
|
+
.map((p) => {
|
|
312
|
+
const asset = release.platforms[p]!
|
|
313
|
+
return {
|
|
314
|
+
platform: p,
|
|
315
|
+
url: asset.url,
|
|
316
|
+
sha256: asset.sha256,
|
|
317
|
+
size: asset.size,
|
|
318
|
+
sizeMB: (asset.size / 1024 / 1024).toFixed(1),
|
|
319
|
+
}
|
|
320
|
+
})
|
|
301
321
|
|
|
302
322
|
if (jsonOutput) {
|
|
303
|
-
console.log(
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
323
|
+
console.log(
|
|
324
|
+
JSON.stringify(
|
|
325
|
+
{
|
|
326
|
+
database: dbFilter,
|
|
327
|
+
version: versionFilter,
|
|
328
|
+
releaseTag: release.releaseTag,
|
|
329
|
+
releasedAt: release.releasedAt,
|
|
330
|
+
platforms: result,
|
|
331
|
+
},
|
|
332
|
+
null,
|
|
333
|
+
2,
|
|
334
|
+
),
|
|
335
|
+
)
|
|
310
336
|
} else {
|
|
311
337
|
console.log(`Platforms for ${dbFilter} ${versionFilter}:\n`)
|
|
312
338
|
for (const r of result) {
|
|
@@ -320,8 +346,12 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
320
346
|
// All three: show specific assets
|
|
321
347
|
const dbReleases = releases.databases[dbFilter]
|
|
322
348
|
if (!dbReleases[versionFilter]) {
|
|
323
|
-
console.error(
|
|
324
|
-
|
|
349
|
+
console.error(
|
|
350
|
+
`Error: Version '${versionFilter}' not found for ${dbFilter}`,
|
|
351
|
+
)
|
|
352
|
+
console.error(
|
|
353
|
+
`\nAvailable: ${sortVersionsDesc(Object.keys(dbReleases)).join(', ')}`,
|
|
354
|
+
)
|
|
325
355
|
process.exit(1)
|
|
326
356
|
}
|
|
327
357
|
|
|
@@ -329,7 +359,9 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
329
359
|
const matchingPlatforms = platformFilter.filter((p) => release.platforms[p])
|
|
330
360
|
|
|
331
361
|
if (matchingPlatforms.length === 0) {
|
|
332
|
-
console.error(
|
|
362
|
+
console.error(
|
|
363
|
+
`Error: No matching platforms for ${dbFilter} ${versionFilter}`,
|
|
364
|
+
)
|
|
333
365
|
console.error(`\nAvailable: ${Object.keys(release.platforms).join(', ')}`)
|
|
334
366
|
console.error(`Requested: ${platformFilter.join(', ')}`)
|
|
335
367
|
process.exit(1)
|
|
@@ -350,7 +382,9 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
350
382
|
})
|
|
351
383
|
|
|
352
384
|
if (jsonOutput) {
|
|
353
|
-
console.log(
|
|
385
|
+
console.log(
|
|
386
|
+
JSON.stringify(result.length === 1 ? result[0] : result, null, 2),
|
|
387
|
+
)
|
|
354
388
|
} else {
|
|
355
389
|
for (const r of result) {
|
|
356
390
|
const sizeMB = (r.size / 1024 / 1024).toFixed(1)
|
|
@@ -366,13 +400,19 @@ function cmdList(filters: string[], jsonOutput: boolean): void {
|
|
|
366
400
|
|
|
367
401
|
if (!dbFilter && platformFilter) {
|
|
368
402
|
// Platform only: show all databases/versions for that platform
|
|
369
|
-
const result: Array<{
|
|
403
|
+
const result: Array<{
|
|
404
|
+
database: string
|
|
405
|
+
version: string
|
|
406
|
+
platforms: string[]
|
|
407
|
+
}> = []
|
|
370
408
|
|
|
371
409
|
for (const db of Object.keys(releases.databases).sort()) {
|
|
372
410
|
const dbReleases = releases.databases[db]
|
|
373
411
|
for (const version of sortVersionsDesc(Object.keys(dbReleases))) {
|
|
374
412
|
const release = dbReleases[version]
|
|
375
|
-
const matchingPlatforms = platformFilter.filter(
|
|
413
|
+
const matchingPlatforms = platformFilter.filter(
|
|
414
|
+
(p) => release.platforms[p],
|
|
415
|
+
)
|
|
376
416
|
if (matchingPlatforms.length > 0) {
|
|
377
417
|
result.push({
|
|
378
418
|
database: db,
|
|
@@ -411,13 +451,17 @@ function cmdUrl(database: string, version: string, platform: string) {
|
|
|
411
451
|
const db = resolveDatabase(database)
|
|
412
452
|
if (!db || !releases.databases[db]) {
|
|
413
453
|
console.error(`Error: Database '${database}' not found`)
|
|
414
|
-
console.error(
|
|
454
|
+
console.error(
|
|
455
|
+
`\nAvailable: ${Object.keys(releases.databases).sort().join(', ')}`,
|
|
456
|
+
)
|
|
415
457
|
process.exit(1)
|
|
416
458
|
}
|
|
417
459
|
|
|
418
460
|
if (!releases.databases[db][version]) {
|
|
419
461
|
console.error(`Error: Version '${version}' not found for ${db}`)
|
|
420
|
-
console.error(
|
|
462
|
+
console.error(
|
|
463
|
+
`\nAvailable: ${sortVersionsDesc(Object.keys(releases.databases[db])).join(', ')}`,
|
|
464
|
+
)
|
|
421
465
|
process.exit(1)
|
|
422
466
|
}
|
|
423
467
|
|
|
@@ -434,13 +478,17 @@ function cmdInfo(database: string, version: string, platform: string) {
|
|
|
434
478
|
const db = resolveDatabase(database)
|
|
435
479
|
if (!db || !releases.databases[db]) {
|
|
436
480
|
console.error(`Error: Database '${database}' not found`)
|
|
437
|
-
console.error(
|
|
481
|
+
console.error(
|
|
482
|
+
`\nAvailable: ${Object.keys(releases.databases).sort().join(', ')}`,
|
|
483
|
+
)
|
|
438
484
|
process.exit(1)
|
|
439
485
|
}
|
|
440
486
|
|
|
441
487
|
if (!releases.databases[db][version]) {
|
|
442
488
|
console.error(`Error: Version '${version}' not found for ${db}`)
|
|
443
|
-
console.error(
|
|
489
|
+
console.error(
|
|
490
|
+
`\nAvailable: ${sortVersionsDesc(Object.keys(releases.databases[db])).join(', ')}`,
|
|
491
|
+
)
|
|
444
492
|
process.exit(1)
|
|
445
493
|
}
|
|
446
494
|
|
|
@@ -448,16 +496,22 @@ function cmdInfo(database: string, version: string, platform: string) {
|
|
|
448
496
|
const targetPlatform = resolveTargetPlatform(platform, release.platforms)
|
|
449
497
|
const asset = release.platforms[targetPlatform]!
|
|
450
498
|
|
|
451
|
-
console.log(
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
499
|
+
console.log(
|
|
500
|
+
JSON.stringify(
|
|
501
|
+
{
|
|
502
|
+
database: db,
|
|
503
|
+
version,
|
|
504
|
+
platform: targetPlatform,
|
|
505
|
+
url: asset.url,
|
|
506
|
+
sha256: asset.sha256,
|
|
507
|
+
size: asset.size,
|
|
508
|
+
releaseTag: release.releaseTag,
|
|
509
|
+
releasedAt: release.releasedAt,
|
|
510
|
+
},
|
|
511
|
+
null,
|
|
512
|
+
2,
|
|
513
|
+
),
|
|
514
|
+
)
|
|
461
515
|
}
|
|
462
516
|
|
|
463
517
|
function main() {
|
|
@@ -516,7 +570,10 @@ function main() {
|
|
|
516
570
|
process.exit(1)
|
|
517
571
|
}
|
|
518
572
|
const db = resolveDatabase(filteredArgs[1])
|
|
519
|
-
cmdList(
|
|
573
|
+
cmdList(
|
|
574
|
+
db ? [db, filteredArgs[2]] : [filteredArgs[1], filteredArgs[2]],
|
|
575
|
+
jsonOutput,
|
|
576
|
+
)
|
|
520
577
|
break
|
|
521
578
|
}
|
|
522
579
|
|
package/databases.json
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"sourceRepo": "https://github.com/apache/cassandra",
|
|
9
9
|
"license": "Apache-2.0",
|
|
10
10
|
"commercialUse": true,
|
|
11
|
+
"hostedServiceAllowed": true,
|
|
11
12
|
"protocol": null,
|
|
12
13
|
"note": "Java-based; requires JVM bundled or installed",
|
|
13
14
|
"latestLts": "5.0",
|
|
@@ -43,20 +44,21 @@
|
|
|
43
44
|
"description": "Multi-model database supporting graphs, documents, and key-value with unified query language",
|
|
44
45
|
"type": "Multi-model",
|
|
45
46
|
"sourceRepo": "https://github.com/arangodb/arangodb",
|
|
46
|
-
"license": "
|
|
47
|
-
"commercialUse":
|
|
47
|
+
"license": "BSL-1.1 / ArangoDB Community License",
|
|
48
|
+
"commercialUse": false,
|
|
49
|
+
"hostedServiceAllowed": false,
|
|
48
50
|
"protocol": null,
|
|
49
|
-
"note": "",
|
|
51
|
+
"note": "Unsupported: License changed to BSL-1.1 (source) + ArangoDB Community License (binaries) in v3.12. Community binaries have 100GB dataset limit. Dropped native macOS and Windows binaries in v3.12 (Docker only). linux-arm64 is evaluation-only, not production-recommended.",
|
|
50
52
|
"latestLts": "3.12",
|
|
51
53
|
"versions": {
|
|
52
|
-
"3.12.6":
|
|
54
|
+
"3.12.6": false
|
|
53
55
|
},
|
|
54
56
|
"platforms": {
|
|
55
57
|
"linux-x64": true,
|
|
56
|
-
"linux-arm64":
|
|
57
|
-
"darwin-x64":
|
|
58
|
-
"darwin-arm64":
|
|
59
|
-
"win32-x64":
|
|
58
|
+
"linux-arm64": false,
|
|
59
|
+
"darwin-x64": false,
|
|
60
|
+
"darwin-arm64": false,
|
|
61
|
+
"win32-x64": false
|
|
60
62
|
},
|
|
61
63
|
"cliTools": {
|
|
62
64
|
"server": "arangod",
|
|
@@ -77,7 +79,7 @@
|
|
|
77
79
|
"defaultUser": "root",
|
|
78
80
|
"queryLanguage": "AQL"
|
|
79
81
|
},
|
|
80
|
-
"status": "
|
|
82
|
+
"status": "unsupported"
|
|
81
83
|
},
|
|
82
84
|
"clickhouse": {
|
|
83
85
|
"displayName": "ClickHouse",
|
|
@@ -86,6 +88,7 @@
|
|
|
86
88
|
"sourceRepo": "https://github.com/ClickHouse/ClickHouse",
|
|
87
89
|
"license": "Apache-2.0",
|
|
88
90
|
"commercialUse": true,
|
|
91
|
+
"hostedServiceAllowed": true,
|
|
89
92
|
"protocol": null,
|
|
90
93
|
"note": "Windows binaries unavailable. Require WSL.",
|
|
91
94
|
"latestLts": "25.12",
|
|
@@ -121,18 +124,19 @@
|
|
|
121
124
|
"sourceRepo": "https://github.com/chroma-core/chroma",
|
|
122
125
|
"license": "Apache-2.0",
|
|
123
126
|
"commercialUse": true,
|
|
127
|
+
"hostedServiceAllowed": true,
|
|
124
128
|
"protocol": null,
|
|
125
|
-
"note": "
|
|
129
|
+
"note": "Unsupported: Python-only distribution via pip. No standalone native binaries for any platform. Rust core is compiled as Python extension, not standalone executable.",
|
|
126
130
|
"latestLts": "1.0",
|
|
127
131
|
"versions": {
|
|
128
|
-
"1.0.12":
|
|
132
|
+
"1.0.12": false
|
|
129
133
|
},
|
|
130
134
|
"platforms": {
|
|
131
|
-
"linux-x64":
|
|
132
|
-
"linux-arm64":
|
|
133
|
-
"darwin-x64":
|
|
134
|
-
"darwin-arm64":
|
|
135
|
-
"win32-x64":
|
|
135
|
+
"linux-x64": false,
|
|
136
|
+
"linux-arm64": false,
|
|
137
|
+
"darwin-x64": false,
|
|
138
|
+
"darwin-arm64": false,
|
|
139
|
+
"win32-x64": false
|
|
136
140
|
},
|
|
137
141
|
"cliTools": {
|
|
138
142
|
"server": "chroma",
|
|
@@ -149,7 +153,7 @@
|
|
|
149
153
|
"defaultUser": null,
|
|
150
154
|
"queryLanguage": "HTTP"
|
|
151
155
|
},
|
|
152
|
-
"status": "
|
|
156
|
+
"status": "unsupported"
|
|
153
157
|
},
|
|
154
158
|
"cockroachdb": {
|
|
155
159
|
"displayName": "CockroachDB",
|
|
@@ -158,6 +162,7 @@
|
|
|
158
162
|
"sourceRepo": "https://github.com/cockroachdb/cockroach",
|
|
159
163
|
"license": "CSL (v24.3+), BSL (older)",
|
|
160
164
|
"commercialUse": true,
|
|
165
|
+
"hostedServiceAllowed": false,
|
|
161
166
|
"protocol": "postgresql",
|
|
162
167
|
"note": "CockroachDB Software License restricts competing cloud services; fine for local dev",
|
|
163
168
|
"latestLts": "25.4",
|
|
@@ -195,6 +200,7 @@
|
|
|
195
200
|
"sourceRepo": "https://github.com/apache/couchdb",
|
|
196
201
|
"license": "Apache-2.0",
|
|
197
202
|
"commercialUse": true,
|
|
203
|
+
"hostedServiceAllowed": true,
|
|
198
204
|
"protocol": null,
|
|
199
205
|
"note": "",
|
|
200
206
|
"latestLts": "3.5",
|
|
@@ -232,6 +238,7 @@
|
|
|
232
238
|
"sourceRepo": "https://github.com/duckdb/duckdb",
|
|
233
239
|
"license": "MIT",
|
|
234
240
|
"commercialUse": true,
|
|
241
|
+
"hostedServiceAllowed": true,
|
|
235
242
|
"protocol": null,
|
|
236
243
|
"note": "",
|
|
237
244
|
"latestLts": "1.4",
|
|
@@ -261,6 +268,47 @@
|
|
|
261
268
|
},
|
|
262
269
|
"status": "completed"
|
|
263
270
|
},
|
|
271
|
+
"duckdb-vss": {
|
|
272
|
+
"displayName": "DuckDB VSS",
|
|
273
|
+
"description": "Vector similarity search extension for DuckDB using HNSW indexing",
|
|
274
|
+
"type": "Vector",
|
|
275
|
+
"sourceRepo": "https://github.com/duckdb/duckdb_vss",
|
|
276
|
+
"license": "MIT",
|
|
277
|
+
"commercialUse": true,
|
|
278
|
+
"hostedServiceAllowed": true,
|
|
279
|
+
"protocol": null,
|
|
280
|
+
"note": "Unsupported: DuckDB extension, not a standalone database. Auto-installs within DuckDB via 'INSTALL vss; LOAD vss;'. Explicitly marked experimental and not production-ready by the DuckDB team — WAL recovery is not implemented for custom HNSW indexes, risking data loss on crash. No separate GitHub releases; distributed through DuckDB's built-in extension hub. Since DuckDB is already in hostdb, this would not be a separate entry — could potentially be pre-bundled with DuckDB releases if it reaches production status. Vectors must be FLOAT[n] type only. Index is in-memory (persisted on checkpoint). Supports L2sq, cosine, and inner product distance metrics.",
|
|
281
|
+
"dependency": {
|
|
282
|
+
"database": "duckdb",
|
|
283
|
+
"cascadeDelete": false,
|
|
284
|
+
"note": "DuckDB extension; requires DuckDB v0.10.0+ as host. Loaded via SQL: INSTALL vss; LOAD vss;"
|
|
285
|
+
},
|
|
286
|
+
"latestLts": "0.0",
|
|
287
|
+
"versions": {},
|
|
288
|
+
"platforms": {
|
|
289
|
+
"linux-x64": true,
|
|
290
|
+
"linux-arm64": true,
|
|
291
|
+
"darwin-x64": true,
|
|
292
|
+
"darwin-arm64": true,
|
|
293
|
+
"win32-x64": true
|
|
294
|
+
},
|
|
295
|
+
"cliTools": {
|
|
296
|
+
"server": null,
|
|
297
|
+
"client": "duckdb",
|
|
298
|
+
"utilities": [],
|
|
299
|
+
"enhanced": [],
|
|
300
|
+
"note": "Loaded as extension within DuckDB CLI; no separate binary. No formal versioned releases — distributed via DuckDB extension hub only."
|
|
301
|
+
},
|
|
302
|
+
"connection": {
|
|
303
|
+
"runtime": "embedded",
|
|
304
|
+
"defaultPort": null,
|
|
305
|
+
"scheme": "duckdb",
|
|
306
|
+
"defaultDatabase": null,
|
|
307
|
+
"defaultUser": null,
|
|
308
|
+
"queryLanguage": "SQL"
|
|
309
|
+
},
|
|
310
|
+
"status": "unsupported"
|
|
311
|
+
},
|
|
264
312
|
"dgraph": {
|
|
265
313
|
"displayName": "Dgraph",
|
|
266
314
|
"description": "Native GraphQL database with horizontal scaling and distributed ACID transactions",
|
|
@@ -268,6 +316,7 @@
|
|
|
268
316
|
"sourceRepo": "https://github.com/dgraph-io/dgraph",
|
|
269
317
|
"license": "Apache-2.0",
|
|
270
318
|
"commercialUse": true,
|
|
319
|
+
"hostedServiceAllowed": true,
|
|
271
320
|
"protocol": null,
|
|
272
321
|
"note": "Unsupported: Official binaries are Linux-only since v21.03.0 (macOS/Windows dropped Feb 2021). Requires two processes (dgraph zero + dgraph alpha) with no single-process mode. Dynamically links jemalloc which blocks Windows builds. Ratel UI removed from binary, now separate project. Acquired twice (Dgraph Labs → Hypermode → Istari Digital Oct 2025).",
|
|
273
322
|
"latestLts": "25.2",
|
|
@@ -305,6 +354,7 @@
|
|
|
305
354
|
"sourceRepo": "https://github.com/FerretDB/FerretDB",
|
|
306
355
|
"license": "Apache-2.0",
|
|
307
356
|
"commercialUse": true,
|
|
357
|
+
"hostedServiceAllowed": true,
|
|
308
358
|
"protocol": "mongodb",
|
|
309
359
|
"note": "Version 2 requires Postgres-DocumentDB (not on windows) but v1 may in theory build on windows",
|
|
310
360
|
"dependency": {
|
|
@@ -346,6 +396,7 @@
|
|
|
346
396
|
"sourceRepo": "https://github.com/FirebirdSQL/firebird",
|
|
347
397
|
"license": "IDPL-1.0",
|
|
348
398
|
"commercialUse": true,
|
|
399
|
+
"hostedServiceAllowed": true,
|
|
349
400
|
"protocol": null,
|
|
350
401
|
"note": "Single-file database. Supports both embedded (no server process, single-file like SQLite) and client/server modes. Official pre-built binaries available for all platforms.",
|
|
351
402
|
"latestLts": "5.0",
|
|
@@ -382,18 +433,19 @@
|
|
|
382
433
|
"sourceRepo": "https://github.com/geldata/gel",
|
|
383
434
|
"license": "Apache-2.0",
|
|
384
435
|
"commercialUse": true,
|
|
436
|
+
"hostedServiceAllowed": true,
|
|
385
437
|
"protocol": "postgresql",
|
|
386
|
-
"note": "Formerly EdgeDB; PostgreSQL-based with graph capabilities",
|
|
438
|
+
"note": "Formerly EdgeDB; PostgreSQL-based with graph capabilities. No Windows binary (Docker only). No GitHub Release assets; distributed via custom install script. linux-arm64 support uncertain.",
|
|
387
439
|
"latestLts": "7.0",
|
|
388
440
|
"versions": {
|
|
389
441
|
"7.0.0": true
|
|
390
442
|
},
|
|
391
443
|
"platforms": {
|
|
392
444
|
"linux-x64": true,
|
|
393
|
-
"linux-arm64":
|
|
445
|
+
"linux-arm64": false,
|
|
394
446
|
"darwin-x64": true,
|
|
395
447
|
"darwin-arm64": true,
|
|
396
|
-
"win32-x64":
|
|
448
|
+
"win32-x64": false
|
|
397
449
|
},
|
|
398
450
|
"cliTools": {
|
|
399
451
|
"server": "gel-server",
|
|
@@ -412,6 +464,44 @@
|
|
|
412
464
|
},
|
|
413
465
|
"status": "pending"
|
|
414
466
|
},
|
|
467
|
+
"influxdb": {
|
|
468
|
+
"displayName": "InfluxDB",
|
|
469
|
+
"description": "Purpose-built time-series database with SQL support, rewritten in Rust for InfluxDB 3.0",
|
|
470
|
+
"type": "Time-series",
|
|
471
|
+
"sourceRepo": "https://github.com/influxdata/influxdb",
|
|
472
|
+
"license": "Apache-2.0 AND MIT",
|
|
473
|
+
"commercialUse": true,
|
|
474
|
+
"hostedServiceAllowed": true,
|
|
475
|
+
"protocol": null,
|
|
476
|
+
"note": "v3.0 is a Rust rewrite using Apache Arrow/DataFusion. Single binary with bundled Python runtime for plugin system. Most popular time-series database by adoption.",
|
|
477
|
+
"latestLts": "3.0",
|
|
478
|
+
"versions": {
|
|
479
|
+
"3.8.0": true
|
|
480
|
+
},
|
|
481
|
+
"platforms": {
|
|
482
|
+
"linux-x64": true,
|
|
483
|
+
"linux-arm64": true,
|
|
484
|
+
"darwin-x64": true,
|
|
485
|
+
"darwin-arm64": true,
|
|
486
|
+
"win32-x64": true
|
|
487
|
+
},
|
|
488
|
+
"cliTools": {
|
|
489
|
+
"server": "influxdb3",
|
|
490
|
+
"client": null,
|
|
491
|
+
"utilities": [],
|
|
492
|
+
"enhanced": [],
|
|
493
|
+
"note": "HTTP API; use official SDKs or SQL via CLI"
|
|
494
|
+
},
|
|
495
|
+
"connection": {
|
|
496
|
+
"runtime": "server",
|
|
497
|
+
"defaultPort": 8086,
|
|
498
|
+
"scheme": "http",
|
|
499
|
+
"defaultDatabase": null,
|
|
500
|
+
"defaultUser": null,
|
|
501
|
+
"queryLanguage": "SQL"
|
|
502
|
+
},
|
|
503
|
+
"status": "in-progress"
|
|
504
|
+
},
|
|
415
505
|
"kuzu": {
|
|
416
506
|
"displayName": "Kuzu",
|
|
417
507
|
"description": "Embedded graph database with Cypher query language, designed as the DuckDB/SQLite of graph databases",
|
|
@@ -419,8 +509,9 @@
|
|
|
419
509
|
"sourceRepo": "https://github.com/kuzudb/kuzu",
|
|
420
510
|
"license": "MIT",
|
|
421
511
|
"commercialUse": true,
|
|
512
|
+
"hostedServiceAllowed": true,
|
|
422
513
|
"protocol": null,
|
|
423
|
-
"note": "
|
|
514
|
+
"note": "Unsupported: Repo archived Oct 2025 ('Kuzu is working on something new'). Community forks: Ladybug (ex-Facebook/Google lead), Bighorn (Kineviz), RyuGraph (Predictable Labs). No clear successor yet. Last release v0.11.3 binaries still downloadable but unmaintained.",
|
|
424
515
|
"latestLts": "0.11",
|
|
425
516
|
"versions": {
|
|
426
517
|
"0.11.3": false
|
|
@@ -447,7 +538,7 @@
|
|
|
447
538
|
"defaultUser": null,
|
|
448
539
|
"queryLanguage": "Cypher"
|
|
449
540
|
},
|
|
450
|
-
"status": "
|
|
541
|
+
"status": "unsupported"
|
|
451
542
|
},
|
|
452
543
|
"mariadb": {
|
|
453
544
|
"displayName": "MariaDB",
|
|
@@ -456,6 +547,7 @@
|
|
|
456
547
|
"sourceRepo": "https://github.com/MariaDB/server",
|
|
457
548
|
"license": "GPL-2.0",
|
|
458
549
|
"commercialUse": true,
|
|
550
|
+
"hostedServiceAllowed": true,
|
|
459
551
|
"protocol": null,
|
|
460
552
|
"note": "",
|
|
461
553
|
"latestLts": "11.8",
|
|
@@ -494,6 +586,7 @@
|
|
|
494
586
|
"sourceRepo": "https://github.com/meilisearch/meilisearch",
|
|
495
587
|
"license": "MIT",
|
|
496
588
|
"commercialUse": true,
|
|
589
|
+
"hostedServiceAllowed": true,
|
|
497
590
|
"protocol": null,
|
|
498
591
|
"note": "",
|
|
499
592
|
"latestLts": "1.33",
|
|
@@ -531,18 +624,19 @@
|
|
|
531
624
|
"sourceRepo": "https://github.com/milvus-io/milvus",
|
|
532
625
|
"license": "Apache-2.0",
|
|
533
626
|
"commercialUse": true,
|
|
627
|
+
"hostedServiceAllowed": true,
|
|
534
628
|
"protocol": null,
|
|
535
|
-
"note": "
|
|
629
|
+
"note": "Unsupported: Docker-only distribution. No native binaries for any platform. Complex multi-component architecture requiring etcd + MinIO. GitHub releases contain only Docker Compose files.",
|
|
536
630
|
"latestLts": "2.5",
|
|
537
631
|
"versions": {
|
|
538
|
-
"2.5.4":
|
|
632
|
+
"2.5.4": false
|
|
539
633
|
},
|
|
540
634
|
"platforms": {
|
|
541
|
-
"linux-x64":
|
|
542
|
-
"linux-arm64":
|
|
543
|
-
"darwin-x64":
|
|
544
|
-
"darwin-arm64":
|
|
545
|
-
"win32-x64":
|
|
635
|
+
"linux-x64": false,
|
|
636
|
+
"linux-arm64": false,
|
|
637
|
+
"darwin-x64": false,
|
|
638
|
+
"darwin-arm64": false,
|
|
639
|
+
"win32-x64": false
|
|
546
640
|
},
|
|
547
641
|
"cliTools": {
|
|
548
642
|
"server": "milvus",
|
|
@@ -559,7 +653,7 @@
|
|
|
559
653
|
"defaultUser": null,
|
|
560
654
|
"queryLanguage": "HTTP"
|
|
561
655
|
},
|
|
562
|
-
"status": "
|
|
656
|
+
"status": "unsupported"
|
|
563
657
|
},
|
|
564
658
|
"mongodb": {
|
|
565
659
|
"displayName": "MongoDB",
|
|
@@ -567,9 +661,10 @@
|
|
|
567
661
|
"type": "Document",
|
|
568
662
|
"sourceRepo": "https://github.com/mongodb/mongo",
|
|
569
663
|
"license": "SSPL-1.0",
|
|
570
|
-
"commercialUse":
|
|
664
|
+
"commercialUse": true,
|
|
665
|
+
"hostedServiceAllowed": false,
|
|
571
666
|
"protocol": null,
|
|
572
|
-
"note": "
|
|
667
|
+
"note": "SSPL restricts offering MongoDB as a competing managed database service (i.e., MongoDB Atlas competitors). Commercial use in applications, local dev, and internal use is fine. FerretDB available as fully open-source alternative.",
|
|
573
668
|
"latestLts": "8.0",
|
|
574
669
|
"versions": {
|
|
575
670
|
"8.2.3": true,
|
|
@@ -611,6 +706,7 @@
|
|
|
611
706
|
"sourceRepo": "https://github.com/mysql/mysql-server",
|
|
612
707
|
"license": "GPL-2.0",
|
|
613
708
|
"commercialUse": true,
|
|
709
|
+
"hostedServiceAllowed": true,
|
|
614
710
|
"protocol": null,
|
|
615
711
|
"note": "",
|
|
616
712
|
"latestLts": "8.4",
|
|
@@ -650,6 +746,7 @@
|
|
|
650
746
|
"sourceRepo": "https://github.com/opensearch-project/OpenSearch",
|
|
651
747
|
"license": "Apache-2.0",
|
|
652
748
|
"commercialUse": true,
|
|
749
|
+
"hostedServiceAllowed": true,
|
|
653
750
|
"protocol": "elasticsearch",
|
|
654
751
|
"note": "",
|
|
655
752
|
"latestLts": "3.4",
|
|
@@ -687,6 +784,7 @@
|
|
|
687
784
|
"sourceRepo": "https://github.com/postgres/postgres",
|
|
688
785
|
"license": "PostgreSQL",
|
|
689
786
|
"commercialUse": true,
|
|
787
|
+
"hostedServiceAllowed": true,
|
|
690
788
|
"protocol": null,
|
|
691
789
|
"note": "",
|
|
692
790
|
"latestLts": "18",
|
|
@@ -732,6 +830,7 @@
|
|
|
732
830
|
"sourceRepo": "https://github.com/FerretDB/documentdb",
|
|
733
831
|
"license": "Apache-2.0",
|
|
734
832
|
"commercialUse": true,
|
|
833
|
+
"hostedServiceAllowed": true,
|
|
735
834
|
"protocol": "postgresql",
|
|
736
835
|
"note": "Backend for FerretDB; includes pg_cron, pgvector, PostGIS, rum extensions",
|
|
737
836
|
"latestLts": "17",
|
|
@@ -768,6 +867,7 @@
|
|
|
768
867
|
"sourceRepo": "https://github.com/qdrant/qdrant",
|
|
769
868
|
"license": "Apache-2.0",
|
|
770
869
|
"commercialUse": true,
|
|
870
|
+
"hostedServiceAllowed": true,
|
|
771
871
|
"protocol": null,
|
|
772
872
|
"note": "",
|
|
773
873
|
"latestLts": "1.16",
|
|
@@ -805,6 +905,7 @@
|
|
|
805
905
|
"sourceRepo": "https://github.com/questdb/questdb",
|
|
806
906
|
"license": "Apache-2.0",
|
|
807
907
|
"commercialUse": true,
|
|
908
|
+
"hostedServiceAllowed": true,
|
|
808
909
|
"protocol": null,
|
|
809
910
|
"note": "",
|
|
810
911
|
"dependency": {
|
|
@@ -846,9 +947,10 @@
|
|
|
846
947
|
"type": "Key-Value",
|
|
847
948
|
"sourceRepo": "https://github.com/redis/redis",
|
|
848
949
|
"license": "RSALv2/SSPLv1 (7.4+), AGPL-3.0 (8.0+)",
|
|
849
|
-
"commercialUse":
|
|
950
|
+
"commercialUse": true,
|
|
951
|
+
"hostedServiceAllowed": false,
|
|
850
952
|
"protocol": null,
|
|
851
|
-
"note": "
|
|
953
|
+
"note": "RSALv2 restricts building competing products to Redis itself. AGPL-3.0 (8.0+) requires source disclosure if you modify Redis and offer it as a network service. Commercial use in applications, local dev, and internal use is fine. Valkey available as BSD-licensed drop-in alternative.",
|
|
852
954
|
"latestLts": "8.4",
|
|
853
955
|
"versions": {
|
|
854
956
|
"8.4.0": true,
|
|
@@ -884,6 +986,7 @@
|
|
|
884
986
|
"sourceRepo": "https://github.com/facebook/rocksdb",
|
|
885
987
|
"license": "GPL-2.0 OR Apache-2.0",
|
|
886
988
|
"commercialUse": true,
|
|
989
|
+
"hostedServiceAllowed": true,
|
|
887
990
|
"protocol": null,
|
|
888
991
|
"note": "Single-file database. Library-first with ldb and sst_dump CLI tools. No official pre-built binaries - build from source required for all platforms. Widely used as storage engine by CockroachDB, TiKV, MySQL/MyRocks.",
|
|
889
992
|
"latestLts": "10.10",
|
|
@@ -920,6 +1023,7 @@
|
|
|
920
1023
|
"sourceRepo": "https://github.com/sqlite/sqlite",
|
|
921
1024
|
"license": "Public Domain",
|
|
922
1025
|
"commercialUse": true,
|
|
1026
|
+
"hostedServiceAllowed": true,
|
|
923
1027
|
"protocol": null,
|
|
924
1028
|
"note": "",
|
|
925
1029
|
"latestLts": "3.51",
|
|
@@ -949,15 +1053,59 @@
|
|
|
949
1053
|
},
|
|
950
1054
|
"status": "completed"
|
|
951
1055
|
},
|
|
1056
|
+
"sqlite-vec": {
|
|
1057
|
+
"displayName": "sqlite-vec",
|
|
1058
|
+
"description": "Vector search SQLite extension for similarity search and KNN queries, pure C with zero dependencies",
|
|
1059
|
+
"type": "Vector",
|
|
1060
|
+
"sourceRepo": "https://github.com/asg017/sqlite-vec",
|
|
1061
|
+
"license": "Apache-2.0",
|
|
1062
|
+
"commercialUse": true,
|
|
1063
|
+
"hostedServiceAllowed": true,
|
|
1064
|
+
"protocol": null,
|
|
1065
|
+
"note": "SQLite loadable extension (.so/.dylib/.dll), not a standalone database. Adds vec0 virtual table for vector indexing with k-nearest-neighbor (KNN) queries. Pure C, zero dependencies — runs anywhere SQLite runs. Pre-built loadable extensions available for all 5 hostdb platforms on GitHub Releases. Loaded in sqlite3 CLI via '.load vec0'. Mozilla Builders backed. Last stable release v0.1.6 (Nov 2024), alpha v0.1.7 (Jan 2025) — development pace is slow but project is not abandoned. Successor to the deprecated sqlite-vss (which used FAISS). Natural fit for hostdb since SQLite is already distributed; could bundle the extension with SQLite releases or distribute as a separate entry. Supports metadata columns, partition keys, and auxiliary columns as of v0.1.6.",
|
|
1066
|
+
"dependency": {
|
|
1067
|
+
"database": "sqlite",
|
|
1068
|
+
"cascadeDelete": false,
|
|
1069
|
+
"note": "SQLite loadable extension; requires SQLite 3.41+ as host. Loaded via '.load vec0' in sqlite3 CLI. Removing sqlite-vec does not remove SQLite (standalone database)."
|
|
1070
|
+
},
|
|
1071
|
+
"latestLts": "0.1",
|
|
1072
|
+
"versions": {
|
|
1073
|
+
"0.1.6": true
|
|
1074
|
+
},
|
|
1075
|
+
"platforms": {
|
|
1076
|
+
"linux-x64": true,
|
|
1077
|
+
"linux-arm64": true,
|
|
1078
|
+
"darwin-x64": true,
|
|
1079
|
+
"darwin-arm64": true,
|
|
1080
|
+
"win32-x64": true
|
|
1081
|
+
},
|
|
1082
|
+
"cliTools": {
|
|
1083
|
+
"server": null,
|
|
1084
|
+
"client": "sqlite3",
|
|
1085
|
+
"utilities": [],
|
|
1086
|
+
"enhanced": ["litecli"],
|
|
1087
|
+
"note": "Loaded as extension within sqlite3 CLI via '.load vec0'; no separate binary"
|
|
1088
|
+
},
|
|
1089
|
+
"connection": {
|
|
1090
|
+
"runtime": "embedded",
|
|
1091
|
+
"defaultPort": null,
|
|
1092
|
+
"scheme": "sqlite",
|
|
1093
|
+
"defaultDatabase": null,
|
|
1094
|
+
"defaultUser": null,
|
|
1095
|
+
"queryLanguage": "SQL"
|
|
1096
|
+
},
|
|
1097
|
+
"status": "pending"
|
|
1098
|
+
},
|
|
952
1099
|
"surrealdb": {
|
|
953
1100
|
"displayName": "SurrealDB",
|
|
954
1101
|
"description": "Multi-model database combining graph, document, key-value, and time-series with SQL-like syntax",
|
|
955
1102
|
"type": "Multi-model",
|
|
956
1103
|
"sourceRepo": "https://github.com/surrealdb/surrealdb",
|
|
957
|
-
"license": "
|
|
1104
|
+
"license": "BSL-1.1",
|
|
958
1105
|
"commercialUse": true,
|
|
1106
|
+
"hostedServiceAllowed": false,
|
|
959
1107
|
"protocol": null,
|
|
960
|
-
"note": "Rust-based; single binary;
|
|
1108
|
+
"note": "Rust-based; single binary. License is BSL-1.1 (not Apache-2.0); prohibits competing DBaaS offerings. Converts to Apache-2.0 after 4 years per release. Fine for local dev and internal use.",
|
|
961
1109
|
"latestLts": "2.3",
|
|
962
1110
|
"versions": {
|
|
963
1111
|
"2.3.2": true
|
|
@@ -993,8 +1141,9 @@
|
|
|
993
1141
|
"sourceRepo": "https://github.com/pingcap/tidb",
|
|
994
1142
|
"license": "Apache-2.0",
|
|
995
1143
|
"commercialUse": true,
|
|
1144
|
+
"hostedServiceAllowed": true,
|
|
996
1145
|
"protocol": "mysql",
|
|
997
|
-
"note": "",
|
|
1146
|
+
"note": "No native Windows binary. macOS binaries only available via TiUP package manager, not direct download. Can run standalone with UniStore (without TiKV/PD).",
|
|
998
1147
|
"latestLts": "8.5",
|
|
999
1148
|
"versions": {
|
|
1000
1149
|
"8.5.4": true
|
|
@@ -1004,7 +1153,7 @@
|
|
|
1004
1153
|
"linux-arm64": true,
|
|
1005
1154
|
"darwin-x64": true,
|
|
1006
1155
|
"darwin-arm64": true,
|
|
1007
|
-
"win32-x64":
|
|
1156
|
+
"win32-x64": false
|
|
1008
1157
|
},
|
|
1009
1158
|
"cliTools": {
|
|
1010
1159
|
"server": "tidb-server",
|
|
@@ -1030,6 +1179,7 @@
|
|
|
1030
1179
|
"sourceRepo": "https://github.com/typedb/typedb",
|
|
1031
1180
|
"license": "MPL-2.0",
|
|
1032
1181
|
"commercialUse": true,
|
|
1182
|
+
"hostedServiceAllowed": true,
|
|
1033
1183
|
"protocol": null,
|
|
1034
1184
|
"note": "Rewritten from Java to Rust in v3.0 (Dec 2024). Binaries distributed via Cloudsmith and GitHub Releases.",
|
|
1035
1185
|
"latestLts": "3.8",
|
|
@@ -1058,17 +1208,18 @@
|
|
|
1058
1208
|
"defaultUser": null,
|
|
1059
1209
|
"queryLanguage": "TypeQL"
|
|
1060
1210
|
},
|
|
1061
|
-
"status": "
|
|
1211
|
+
"status": "completed"
|
|
1062
1212
|
},
|
|
1063
1213
|
"timescaledb": {
|
|
1064
1214
|
"displayName": "TimescaleDB",
|
|
1065
1215
|
"description": "Time-series database built on PostgreSQL for fast analytics and scalability",
|
|
1066
1216
|
"type": "Time-series",
|
|
1067
1217
|
"sourceRepo": "https://github.com/timescale/timescaledb",
|
|
1068
|
-
"license": "Apache-2.0",
|
|
1218
|
+
"license": "Apache-2.0 / TSL",
|
|
1069
1219
|
"commercialUse": true,
|
|
1220
|
+
"hostedServiceAllowed": false,
|
|
1070
1221
|
"protocol": "postgresql",
|
|
1071
|
-
"note": "",
|
|
1222
|
+
"note": "Dual-licensed: core is Apache-2.0, advanced features under Timescale License (TSL) which restricts competing DBaaS. PostgreSQL extension, not standalone.",
|
|
1072
1223
|
"latestLts": "2.24",
|
|
1073
1224
|
"versions": {
|
|
1074
1225
|
"2.24.0": true
|
|
@@ -1104,6 +1255,7 @@
|
|
|
1104
1255
|
"sourceRepo": "https://github.com/valkey-io/valkey",
|
|
1105
1256
|
"license": "BSD-3-Clause",
|
|
1106
1257
|
"commercialUse": true,
|
|
1258
|
+
"hostedServiceAllowed": true,
|
|
1107
1259
|
"protocol": "redis",
|
|
1108
1260
|
"note": "",
|
|
1109
1261
|
"latestLts": "9.0",
|
|
@@ -1141,8 +1293,9 @@
|
|
|
1141
1293
|
"sourceRepo": "https://github.com/weaviate/weaviate",
|
|
1142
1294
|
"license": "BSD-3-Clause",
|
|
1143
1295
|
"commercialUse": true,
|
|
1296
|
+
"hostedServiceAllowed": true,
|
|
1144
1297
|
"protocol": null,
|
|
1145
|
-
"note": "
|
|
1298
|
+
"note": "Go-based single binary. No official Windows binary; macOS distributed as universal binary (x64+arm64).",
|
|
1146
1299
|
"latestLts": "1.29",
|
|
1147
1300
|
"versions": {
|
|
1148
1301
|
"1.29.0": true
|
|
@@ -1152,7 +1305,7 @@
|
|
|
1152
1305
|
"linux-arm64": true,
|
|
1153
1306
|
"darwin-x64": true,
|
|
1154
1307
|
"darwin-arm64": true,
|
|
1155
|
-
"win32-x64":
|
|
1308
|
+
"win32-x64": false
|
|
1156
1309
|
},
|
|
1157
1310
|
"cliTools": {
|
|
1158
1311
|
"server": "weaviate",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hostdb",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.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:influxdb": "tsx builds/influxdb/download.ts",
|
|
37
38
|
"download:mariadb": "tsx builds/mariadb/download.ts",
|
|
38
39
|
"download:meilisearch": "tsx builds/meilisearch/download.ts",
|
|
39
40
|
"download:mongodb": "tsx builds/mongodb/download.ts",
|
package/releases.json
CHANGED
|
@@ -147,6 +147,40 @@
|
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
},
|
|
150
|
+
"influxdb": {
|
|
151
|
+
"3.8.0": {
|
|
152
|
+
"version": "3.8.0",
|
|
153
|
+
"releaseTag": "influxdb-3.8.0",
|
|
154
|
+
"releasedAt": "2026-02-09T03:31:54Z",
|
|
155
|
+
"platforms": {
|
|
156
|
+
"darwin-arm64": {
|
|
157
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/influxdb-3.8.0/influxdb-3.8.0-darwin-arm64.tar.gz",
|
|
158
|
+
"sha256": "c5d0e6bc8cfbd4f71d7ced053e7449b818578bd6b68ef21adc6a16fe5d10d55f",
|
|
159
|
+
"size": 58768862
|
|
160
|
+
},
|
|
161
|
+
"darwin-x64": {
|
|
162
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/influxdb-3.8.0/influxdb-3.8.0-darwin-x64.tar.gz",
|
|
163
|
+
"sha256": "8c8d4143253529eb7aac4aaf4e92a2ea416840d285c7d5e6e6134e112b3ce162",
|
|
164
|
+
"size": 64047518
|
|
165
|
+
},
|
|
166
|
+
"linux-arm64": {
|
|
167
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/influxdb-3.8.0/influxdb-3.8.0-linux-arm64.tar.gz",
|
|
168
|
+
"sha256": "a91ee3030ce5f3afe00af1fe495b2e8f2f69a9440ae4e704aa3ecbb95284dd1d",
|
|
169
|
+
"size": 72030503
|
|
170
|
+
},
|
|
171
|
+
"linux-x64": {
|
|
172
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/influxdb-3.8.0/influxdb-3.8.0-linux-x64.tar.gz",
|
|
173
|
+
"sha256": "0855d06bc3bb6522df091ece6873327cb852cb796107a0f9453da3f7a8d3b7ff",
|
|
174
|
+
"size": 81202742
|
|
175
|
+
},
|
|
176
|
+
"win32-x64": {
|
|
177
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/influxdb-3.8.0/influxdb-3.8.0-win32-x64.zip",
|
|
178
|
+
"sha256": "c3c8d51ea8fced3e24f25eec263a125363385a4dcb92519481f1a5b6bbb06c6a",
|
|
179
|
+
"size": 70251913
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
},
|
|
150
184
|
"mariadb": {
|
|
151
185
|
"11.8.5": {
|
|
152
186
|
"version": "11.8.5",
|
|
@@ -853,6 +887,40 @@
|
|
|
853
887
|
}
|
|
854
888
|
}
|
|
855
889
|
},
|
|
890
|
+
"typedb": {
|
|
891
|
+
"3.8.0": {
|
|
892
|
+
"version": "3.8.0",
|
|
893
|
+
"releaseTag": "typedb-3.8.0",
|
|
894
|
+
"releasedAt": "2026-02-08T18:21:49Z",
|
|
895
|
+
"platforms": {
|
|
896
|
+
"darwin-arm64": {
|
|
897
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/typedb-3.8.0/typedb-3.8.0-darwin-arm64.tar.gz",
|
|
898
|
+
"sha256": "faff22f18304a28ae02ad2a7db1981dfabc23041ec2061597bc0d60db0efac51",
|
|
899
|
+
"size": 25309984
|
|
900
|
+
},
|
|
901
|
+
"darwin-x64": {
|
|
902
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/typedb-3.8.0/typedb-3.8.0-darwin-x64.tar.gz",
|
|
903
|
+
"sha256": "be456e44eea2721e8134934586e6f8d91cf6aea46d5f445e03719b188d6b0cb1",
|
|
904
|
+
"size": 26717845
|
|
905
|
+
},
|
|
906
|
+
"linux-arm64": {
|
|
907
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/typedb-3.8.0/typedb-3.8.0-linux-arm64.tar.gz",
|
|
908
|
+
"sha256": "69668be944fde20bddf8932192d1387fa02cf2d55cbfb39daa4e6a312f59a342",
|
|
909
|
+
"size": 29852879
|
|
910
|
+
},
|
|
911
|
+
"linux-x64": {
|
|
912
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/typedb-3.8.0/typedb-3.8.0-linux-x64.tar.gz",
|
|
913
|
+
"sha256": "b524826c72008cad7bea27dfc5c10bec8692b39636e937887eca4b7a380f6acb",
|
|
914
|
+
"size": 30190104
|
|
915
|
+
},
|
|
916
|
+
"win32-x64": {
|
|
917
|
+
"url": "https://github.com/robertjbass/hostdb/releases/download/typedb-3.8.0/typedb-3.8.0-win32-x64.zip",
|
|
918
|
+
"sha256": "a34ef0180278bef570c7bd4b9e64423c49c3d81977b0eb6d5d897e5f8af9aaeb",
|
|
919
|
+
"size": 24220045
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
}
|
|
923
|
+
},
|
|
856
924
|
"valkey": {
|
|
857
925
|
"9.0.1": {
|
|
858
926
|
"version": "9.0.1",
|