@iloveagents/foundry-web-shell 0.2.1 → 1.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +31 -27
  2. package/package.json +5 -7
package/CHANGELOG.md CHANGED
@@ -1,19 +1,30 @@
1
1
  # @iloveagents/foundry-web-shell
2
2
 
3
- ## 0.2.1
3
+ ## 1.0.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - No source changes. Bumped in lock-step with the fixed group so the
8
- whole group can publish at a version number that's free across all
9
- four packages. (`shell@0.2.0` already published cleanly; this is a
10
- follow-the-group patch bump.)
7
+ - e54a336: chore(release): republish web-shell + web-ui (npm refused 1.0.0 version was previously reserved)
11
8
 
12
- ## 0.2.0
9
+ No source changes. The 1.0.0 release ran successfully for
10
+ `@iloveagents/foundry-agent` and `@iloveagents/foundry-web-primitives`,
11
+ but the npm publish for `@iloveagents/foundry-web-shell@1.0.0` and
12
+ `@iloveagents/foundry-web-ui@1.0.0` failed with E400 "Cannot publish
13
+ over previously published version" — those exact version numbers
14
+ appear to have been reserved on the registry from an earlier
15
+ publish-then-unpublish cycle. Bumping the fixed group to 1.0.1 so
16
+ the four packages stay version-aligned and the publish goes through.
17
+
18
+ - Updated dependencies [e54a336]
19
+ - @iloveagents/foundry-web-ui@1.0.1
20
+ - @iloveagents/foundry-agent@1.0.1
21
+ - @iloveagents/foundry-web-primitives@1.0.1
22
+
23
+ ## 1.0.0
13
24
 
14
25
  ### Minor Changes
15
26
 
16
- - shell: ChatConversationConfig API + sticky-runtime threadId
27
+ - 9105483: shell: ChatConversationConfig API + sticky-runtime threadId
17
28
 
18
29
  Lets a downstream module (e.g. `@ltwlf/spaces-web-ui`) attach a
19
30
  `ChatConversationConfig` to its `ChatModule`. The shell then:
@@ -27,28 +38,21 @@
27
38
  `UrlOnlyRuntime`) so optional hooks satisfy Rules-of-Hooks across
28
39
  multi-module config swaps.
29
40
 
41
+ UI: collapsible nav groups in `sidebar.tsx` with persisted state via
42
+ `useSyncExternalStore` + localStorage, plus stable group ordering via
43
+ new `priority` field in `nav-config.ts`.
44
+
45
+ `ag-ui-runtime-provider.tsx` accepts an external `threadId` and
46
+ `historyAdapterFactory` so the consuming app can wire its own
47
+ persistence (e.g. `ThreadHistoryAdapter` → REST `/api/conversations`).
48
+
30
49
  ### Patch Changes
31
50
 
32
- - Move `@iloveagents/foundry-agent`, `-web-primitives`, `-web-ui` from
33
- `peerDependencies` to `dependencies`. They always ship together as a
34
- coordinated fixed group from this monorepo — they were never
35
- independently-versioned peers. Declaring them as peerDeps caused
36
- changesets' `shouldBumpMajor` cascade to promote the entire group to
37
- a major version on every minor changeset. See the root `foundry-agent`
38
- CHANGELOG entry for details.
39
-
40
- - Updated dependencies
41
- - @iloveagents/foundry-web-ui@0.2.0
42
- - @iloveagents/foundry-agent@0.2.0
43
- - @iloveagents/foundry-web-primitives@0.2.0
44
-
45
- ### NOTE: 1.0.1 was accidental
46
-
47
- Version 1.0.1 was published briefly on 2026-05-27 due to the peerDep
48
- cascade bug described above (1.0.0 was reserved but not published —
49
- 1.0.1 was the retry). It has been unpublished. Both 1.0.0 and 1.0.1
50
- are now permanently reserved on npm and CANNOT be re-published. Do
51
- not depend on 1.0.x.
51
+ - Updated dependencies [9105483]
52
+ - Updated dependencies [2b10540]
53
+ - @iloveagents/foundry-web-ui@1.0.0
54
+ - @iloveagents/foundry-agent@1.0.0
55
+ - @iloveagents/foundry-web-primitives@1.0.0
52
56
 
53
57
  ## 0.1.5
54
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iloveagents/foundry-web-shell",
3
- "version": "0.2.1",
3
+ "version": "1.0.1",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "type": "module",
6
6
  "types": "./src/index.ts",
@@ -16,12 +16,10 @@
16
16
  "react-router": "^7.0.0",
17
17
  "@assistant-ui/react": "^0.12.25",
18
18
  "lucide-react": ">=0.400.0",
19
- "zustand": "^5.0.0"
20
- },
21
- "dependencies": {
22
- "@iloveagents/foundry-agent": "0.2.1",
23
- "@iloveagents/foundry-web-primitives": "0.2.1",
24
- "@iloveagents/foundry-web-ui": "0.2.1"
19
+ "zustand": "^5.0.0",
20
+ "@iloveagents/foundry-agent": "1.0.1",
21
+ "@iloveagents/foundry-web-primitives": "1.0.1",
22
+ "@iloveagents/foundry-web-ui": "1.0.1"
25
23
  },
26
24
  "devDependencies": {
27
25
  "typescript": "~5.9.3",