hostdb 0.13.1 → 0.14.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/databases.json +37 -1
- package/package.json +3 -1
- package/releases.json +1 -1
package/databases.json
CHANGED
|
@@ -259,7 +259,7 @@
|
|
|
259
259
|
"defaultUser": null,
|
|
260
260
|
"queryLanguage": "MQL"
|
|
261
261
|
},
|
|
262
|
-
"status": "
|
|
262
|
+
"status": "in-progress"
|
|
263
263
|
},
|
|
264
264
|
"foundationdb": {
|
|
265
265
|
"displayName": "FoundationDB",
|
|
@@ -644,6 +644,42 @@
|
|
|
644
644
|
},
|
|
645
645
|
"status": "in-progress"
|
|
646
646
|
},
|
|
647
|
+
"postgresql-documentdb": {
|
|
648
|
+
"displayName": "PostgreSQL + DocumentDB",
|
|
649
|
+
"description": "PostgreSQL with DocumentDB extension for FerretDB backend",
|
|
650
|
+
"type": "Document",
|
|
651
|
+
"sourceRepo": "https://github.com/FerretDB/documentdb",
|
|
652
|
+
"license": "Apache-2.0",
|
|
653
|
+
"commercialUse": true,
|
|
654
|
+
"protocol": "postgresql",
|
|
655
|
+
"note": "Backend for FerretDB; includes pg_cron, pgvector, PostGIS, rum extensions",
|
|
656
|
+
"latestLts": "17",
|
|
657
|
+
"versions": {
|
|
658
|
+
"17-0.107.0": true
|
|
659
|
+
},
|
|
660
|
+
"platforms": {
|
|
661
|
+
"linux-x64": true,
|
|
662
|
+
"linux-arm64": true,
|
|
663
|
+
"darwin-x64": true,
|
|
664
|
+
"darwin-arm64": true,
|
|
665
|
+
"win32-x64": false
|
|
666
|
+
},
|
|
667
|
+
"cliTools": {
|
|
668
|
+
"server": "postgres",
|
|
669
|
+
"client": "psql",
|
|
670
|
+
"utilities": ["pg_dump", "pg_restore", "initdb", "pg_ctl"],
|
|
671
|
+
"enhanced": ["pgcli"]
|
|
672
|
+
},
|
|
673
|
+
"connection": {
|
|
674
|
+
"runtime": "server",
|
|
675
|
+
"defaultPort": 5432,
|
|
676
|
+
"scheme": "postgresql",
|
|
677
|
+
"defaultDatabase": "postgres",
|
|
678
|
+
"defaultUser": "postgres",
|
|
679
|
+
"queryLanguage": "SQL"
|
|
680
|
+
},
|
|
681
|
+
"status": "in-progress"
|
|
682
|
+
},
|
|
647
683
|
"qdrant": {
|
|
648
684
|
"displayName": "Qdrant",
|
|
649
685
|
"description": "High-performance vector database for AI applications, semantic search, and similarity matching",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hostdb",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.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",
|
|
@@ -31,11 +31,13 @@
|
|
|
31
31
|
"dbs": "tsx scripts/list-databases.ts",
|
|
32
32
|
"download:clickhouse": "tsx builds/clickhouse/download.ts",
|
|
33
33
|
"download:duckdb": "tsx builds/duckdb/download.ts",
|
|
34
|
+
"download:ferretdb": "tsx builds/ferretdb/download.ts",
|
|
34
35
|
"download:mariadb": "tsx builds/mariadb/download.ts",
|
|
35
36
|
"download:meilisearch": "tsx builds/meilisearch/download.ts",
|
|
36
37
|
"download:mongodb": "tsx builds/mongodb/download.ts",
|
|
37
38
|
"download:mysql": "tsx builds/mysql/download.ts",
|
|
38
39
|
"download:postgresql": "tsx builds/postgresql/download.ts",
|
|
40
|
+
"download:postgresql-documentdb": "tsx builds/postgresql-documentdb/download.ts",
|
|
39
41
|
"download:qdrant": "tsx builds/qdrant/download.ts",
|
|
40
42
|
"download:redis": "tsx builds/redis/download.ts",
|
|
41
43
|
"download:sqlite": "tsx builds/sqlite/download.ts",
|