hostdb 0.24.0 → 0.25.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/databases.json CHANGED
@@ -795,6 +795,43 @@
795
795
  "queryLanguage": "Redis"
796
796
  },
797
797
  "spindbStatus": "completed"
798
+ },
799
+ "weaviate": {
800
+ "displayName": "Weaviate",
801
+ "description": "AI-native vector database with built-in vectorization modules and hybrid search",
802
+ "type": "Vector",
803
+ "sourceRepo": "https://github.com/weaviate/weaviate",
804
+ "license": "BSD-3-Clause",
805
+ "commercialUse": true,
806
+ "hostedServiceAllowed": true,
807
+ "protocol": null,
808
+ "note": "Go-based single binary (CGO_ENABLED=0). Linux from official releases; macOS/Windows cross-compiled from source.",
809
+ "versions": {
810
+ "1.35.7": true
811
+ },
812
+ "platforms": [
813
+ "linux-x64",
814
+ "linux-arm64",
815
+ "darwin-x64",
816
+ "darwin-arm64",
817
+ "win32-x64"
818
+ ],
819
+ "cliTools": {
820
+ "server": "weaviate",
821
+ "client": null,
822
+ "utilities": [],
823
+ "enhanced": [],
824
+ "note": "REST/gRPC API only; use curl or official SDKs"
825
+ },
826
+ "connection": {
827
+ "runtime": "server",
828
+ "defaultPort": 8080,
829
+ "scheme": "http",
830
+ "defaultDatabase": null,
831
+ "defaultUser": null,
832
+ "queryLanguage": "GraphQL"
833
+ },
834
+ "spindbStatus": "completed"
798
835
  }
799
836
  }
800
837
  }
package/lib/checksums.ts CHANGED
@@ -83,13 +83,10 @@ export async function fetchChecksums(
83
83
 
84
84
  // Fallback: try browser_download_url (only works for public repos)
85
85
  if (!process.env.GITHUB_TOKEN) {
86
- const browserResponse = await fetch(
87
- checksumAsset.browser_download_url,
88
- {
89
- headers: { 'User-Agent': 'hostdb-checksums' },
90
- redirect: 'follow',
91
- },
92
- )
86
+ const browserResponse = await fetch(checksumAsset.browser_download_url, {
87
+ headers: { 'User-Agent': 'hostdb-checksums' },
88
+ redirect: 'follow',
89
+ })
93
90
 
94
91
  if (browserResponse.ok) {
95
92
  const content = await browserResponse.text()
package/lib/databases.ts CHANGED
@@ -128,9 +128,10 @@ export function loadReleasesJson(): ReleasesJson {
128
128
  // --- Internal helpers ---
129
129
 
130
130
  /** Get the version's platforms field, handling both array and object forms */
131
- function getVersionPlatformsRaw(
132
- versionEntry: VersionConfig,
133
- ): { list: Platform[]; map: Record<string, PlatformEntry> | null } {
131
+ function getVersionPlatformsRaw(versionEntry: VersionConfig): {
132
+ list: Platform[]
133
+ map: Record<string, PlatformEntry> | null
134
+ } {
134
135
  if (!versionEntry.platforms) {
135
136
  return { list: [], map: null }
136
137
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hostdb",
3
- "version": "0.24.0",
3
+ "version": "0.25.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",
@@ -27,6 +27,7 @@
27
27
  ],
28
28
  "scripts": {
29
29
  "add:engine": "tsx scripts/add-engine.ts",
30
+ "build:releases": "tsx scripts/build-releases-json.ts",
30
31
  "checksums:populate": "tsx scripts/populate-checksums.ts",
31
32
  "dbs": "tsx scripts/list-databases.ts",
32
33
  "delete:releases": "tsx scripts/delete-releases.ts",
@@ -49,12 +50,12 @@
49
50
  "download:surrealdb": "tsx builds/surrealdb/download.ts",
50
51
  "download:typedb": "tsx builds/typedb/download.ts",
51
52
  "download:valkey": "tsx builds/valkey/download.ts",
53
+ "download:weaviate": "tsx builds/weaviate/download.ts",
52
54
  "edb:fileids": "tsx scripts/fetch-edb-fileids.ts",
53
55
  "format": "prettier --write .",
54
56
  "lint": "tsc --noEmit && eslint .",
55
57
  "migrate:r2": "tsx scripts/migrate-to-r2.ts",
56
58
  "prep": "tsx scripts/prep.ts",
57
- "build:releases": "tsx scripts/build-releases-json.ts",
58
59
  "repair:checksums": "tsx scripts/repair-checksums.ts",
59
60
  "start": "tsx cli/bin.ts",
60
61
  "sync:versions": "tsx scripts/sync-versions.ts",
package/releases.json CHANGED
@@ -1058,6 +1058,40 @@
1058
1058
  }
1059
1059
  }
1060
1060
  }
1061
+ },
1062
+ "weaviate": {
1063
+ "1.35.7": {
1064
+ "version": "1.35.7",
1065
+ "releaseTag": "weaviate-1.35.7",
1066
+ "releasedAt": "2026-02-16T05:41:41Z",
1067
+ "platforms": {
1068
+ "darwin-arm64": {
1069
+ "url": "https://registry.layerbase.host/weaviate-1.35.7/weaviate-1.35.7-darwin-arm64.tar.gz",
1070
+ "sha256": "9f762253ff1ff2400df014bd7af3be3fb4b8a924ad8305868539980960e6217c",
1071
+ "size": 63977749
1072
+ },
1073
+ "darwin-x64": {
1074
+ "url": "https://registry.layerbase.host/weaviate-1.35.7/weaviate-1.35.7-darwin-x64.tar.gz",
1075
+ "sha256": "5ad87e45ee7dbe7e2294c14db105db4b314a6a03af48c9099b65558796aa42e6",
1076
+ "size": 65940371
1077
+ },
1078
+ "linux-arm64": {
1079
+ "url": "https://registry.layerbase.host/weaviate-1.35.7/weaviate-1.35.7-linux-arm64.tar.gz",
1080
+ "sha256": "e80d1def0aef5c6cba8ba4a77ee4d88b3d8f7aa1a45b4ecd5b1333477300d0fd",
1081
+ "size": 63941443
1082
+ },
1083
+ "linux-x64": {
1084
+ "url": "https://registry.layerbase.host/weaviate-1.35.7/weaviate-1.35.7-linux-x64.tar.gz",
1085
+ "sha256": "16847addf7e04e9054d3bfc9fd060a08b2d1ffd1f3eeadea0fa5b831f8042561",
1086
+ "size": 66925113
1087
+ },
1088
+ "win32-x64": {
1089
+ "url": "https://registry.layerbase.host/weaviate-1.35.7/weaviate-1.35.7-win32-x64.zip",
1090
+ "sha256": "2e30584e46b28f80046f0e8025e0d713f07b384b607a88f10836413888527252",
1091
+ "size": 65869877
1092
+ }
1093
+ }
1094
+ }
1061
1095
  }
1062
1096
  }
1063
1097
  }