jeopi-catalog 16.2.28 → 16.2.30

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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [16.2.29] - 2026-07-10
6
+
7
+ ### Fixed
8
+
9
+ - Fixed LM Studio's catalog descriptor to treat live endpoint discovery as authoritative, so successful refreshes replace stale bundled/cache entries instead of merging them indefinitely.
10
+
5
11
  ## [16.2.26] - 2026-07-05
6
12
 
7
13
  ### Removed
@@ -174,6 +174,7 @@ export declare const CATALOG_PROVIDERS: readonly [{
174
174
  readonly envVars: readonly ["LM_STUDIO_API_KEY"];
175
175
  readonly createModelManagerOptions: (config: ModelManagerConfig) => import("..").ModelManagerOptions<"openai-completions", unknown>;
176
176
  readonly allowUnauthenticated: true;
177
+ readonly dynamicModelsAuthoritative: true;
177
178
  }, {
178
179
  readonly id: "minimax";
179
180
  readonly defaultModel: "MiniMax-M3";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "jeopi-catalog",
4
- "version": "16.2.28",
4
+ "version": "16.2.30",
5
5
  "description": "Model catalog for jeopi: bundled model database, provider discovery descriptors, model identity, classification, and equivalence",
6
6
  "homepage": "https://github.com/akillness/jeopi",
7
7
  "author": "Can Boluk",
@@ -34,12 +34,12 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@bufbuild/protobuf": "^2.12.0",
37
- "jeopi-utils": "16.2.28",
37
+ "jeopi-utils": "16.2.30",
38
38
  "arktype": "^2.2.0",
39
39
  "zod": "^4"
40
40
  },
41
41
  "devDependencies": {
42
- "jeopi-ai": "16.2.28",
42
+ "jeopi-ai": "16.2.30",
43
43
  "@types/bun": "^1.3.14"
44
44
  },
45
45
  "engines": {