@iloveagents/foundry-web-ui 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 +35 -26
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,19 +1,43 @@
1
1
  # @iloveagents/foundry-web-ui
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. (`ui@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-agent@1.0.1
20
+ - @iloveagents/foundry-web-primitives@1.0.1
21
+
22
+ ## 1.0.0
13
23
 
14
24
  ### Minor Changes
15
25
 
16
- - UI: collapsible nav groups in `sidebar.tsx` with persisted state via
26
+ - 9105483: shell: ChatConversationConfig API + sticky-runtime threadId
27
+
28
+ Lets a downstream module (e.g. `@ltwlf/spaces-web-ui`) attach a
29
+ `ChatConversationConfig` to its `ChatModule`. The shell then:
30
+ - Pre-mints a fresh thread UUID via `useRef` so the AG-UI runtime's
31
+ `threadId` is defined from first render — no `undefined → defined`
32
+ remount mid-conversation when the user sends the first message.
33
+ - Calls `config.useStickyConversationId()` (when declared) and
34
+ feeds the resulting id into the runtime so the chat stays "live"
35
+ while the user browses non-chat routes (Workspaces, Jobs, etc.).
36
+ - Per-config keyed child components (`StickyAwareRuntime` vs
37
+ `UrlOnlyRuntime`) so optional hooks satisfy Rules-of-Hooks across
38
+ multi-module config swaps.
39
+
40
+ UI: collapsible nav groups in `sidebar.tsx` with persisted state via
17
41
  `useSyncExternalStore` + localStorage, plus stable group ordering via
18
42
  new `priority` field in `nav-config.ts`.
19
43
 
@@ -23,25 +47,10 @@
23
47
 
24
48
  ### Patch Changes
25
49
 
26
- - Move `@iloveagents/foundry-agent`, `-web-primitives` from
27
- `peerDependencies` to `dependencies`. They always ship together as a
28
- coordinated fixed group from this monorepo — they were never
29
- independently-versioned peers. Declaring them as peerDeps caused
30
- changesets' `shouldBumpMajor` cascade to promote the entire group to
31
- a major version on every minor changeset. See the root `foundry-agent`
32
- CHANGELOG entry for details.
33
-
34
- - Updated dependencies
35
- - @iloveagents/foundry-agent@0.2.0
36
- - @iloveagents/foundry-web-primitives@0.2.0
37
-
38
- ### NOTE: 1.0.1 was accidental
39
-
40
- Version 1.0.1 was published briefly on 2026-05-27 due to the peerDep
41
- cascade bug described above (1.0.0 was reserved but not published —
42
- 1.0.1 was the retry). It has been unpublished. Both 1.0.0 and 1.0.1
43
- are now permanently reserved on npm and CANNOT be re-published. Do
44
- not depend on 1.0.x.
50
+ - Updated dependencies [9105483]
51
+ - Updated dependencies [2b10540]
52
+ - @iloveagents/foundry-agent@1.0.0
53
+ - @iloveagents/foundry-web-primitives@1.0.0
45
54
 
46
55
  ## 0.1.5
47
56
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iloveagents/foundry-web-ui",
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",
@@ -22,7 +22,9 @@
22
22
  "zustand": "^5.0.0",
23
23
  "lucide-react": ">=0.400.0",
24
24
  "@azure/msal-browser": "^5.0.0",
25
- "@azure/msal-react": "^5.0.0"
25
+ "@azure/msal-react": "^5.0.0",
26
+ "@iloveagents/foundry-agent": "1.0.1",
27
+ "@iloveagents/foundry-web-primitives": "1.0.1"
26
28
  },
27
29
  "peerDependenciesMeta": {
28
30
  "@azure/msal-browser": {
@@ -45,9 +47,7 @@
45
47
  "tailwind-merge": "^3.5.0",
46
48
  "react-markdown": "^10.0.0",
47
49
  "remark-gfm": "^4.0.0",
48
- "shiki": "^4.0.0",
49
- "@iloveagents/foundry-agent": "0.2.1",
50
- "@iloveagents/foundry-web-primitives": "0.2.1"
50
+ "shiki": "^4.0.0"
51
51
  },
52
52
  "devDependencies": {
53
53
  "typescript": "~5.9.3",