@memori.ai/memori-react 9.0.0-alpha.22 → 9.0.0-alpha.24
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 +289 -682
- package/dist/components/ChatBubble/ChatBubble.js +12 -7
- package/dist/components/ChatBubble/ChatBubble.js.map +1 -1
- package/dist/components/FeedbackButtons/FeedbackButtons.js +2 -2
- package/dist/components/FeedbackButtons/FeedbackButtons.js.map +1 -1
- package/dist/components/MemoriWidget/MemoriWidget.d.ts +1 -0
- package/dist/components/MemoriWidget/MemoriWidget.js +58 -1
- package/dist/components/MemoriWidget/MemoriWidget.js.map +1 -1
- package/dist/components/UploadButton/UploadButton.js +3 -0
- package/dist/components/UploadButton/UploadButton.js.map +1 -1
- package/dist/components/UploadButton/UploadDocuments/UploadDocuments.js +15 -3
- package/dist/components/UploadButton/UploadDocuments/UploadDocuments.js.map +1 -1
- package/dist/components/layouts/chat.css +5 -2
- package/dist/helpers/constants.d.ts +3 -2
- package/dist/helpers/constants.js +19 -20
- package/dist/helpers/constants.js.map +1 -1
- package/dist/helpers/nats/getNatsConfig.js.map +1 -1
- package/dist/helpers/nats/useNats.d.ts +2 -1
- package/dist/helpers/nats/useNats.js +87 -20
- package/dist/helpers/nats/useNats.js.map +1 -1
- package/dist/helpers/nats/useNatsSession.d.ts +6 -1
- package/dist/helpers/nats/useNatsSession.js +48 -7
- package/dist/helpers/nats/useNatsSession.js.map +1 -1
- package/dist/helpers/utils.d.ts +2 -1
- package/dist/helpers/utils.js +7 -1
- package/dist/helpers/utils.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/esm/components/ChatBubble/ChatBubble.js +12 -7
- package/esm/components/ChatBubble/ChatBubble.js.map +1 -1
- package/esm/components/FeedbackButtons/FeedbackButtons.js +2 -2
- package/esm/components/FeedbackButtons/FeedbackButtons.js.map +1 -1
- package/esm/components/MemoriWidget/MemoriWidget.d.ts +1 -0
- package/esm/components/MemoriWidget/MemoriWidget.js +57 -1
- package/esm/components/MemoriWidget/MemoriWidget.js.map +1 -1
- package/esm/components/UploadButton/UploadButton.js +4 -1
- package/esm/components/UploadButton/UploadButton.js.map +1 -1
- package/esm/components/UploadButton/UploadDocuments/UploadDocuments.js +16 -4
- package/esm/components/UploadButton/UploadDocuments/UploadDocuments.js.map +1 -1
- package/esm/components/layouts/chat.css +5 -2
- package/esm/helpers/constants.d.ts +3 -2
- package/esm/helpers/constants.js +18 -19
- package/esm/helpers/constants.js.map +1 -1
- package/esm/helpers/nats/getNatsConfig.js.map +1 -1
- package/esm/helpers/nats/useNats.d.ts +2 -1
- package/esm/helpers/nats/useNats.js +87 -20
- package/esm/helpers/nats/useNats.js.map +1 -1
- package/esm/helpers/nats/useNatsSession.d.ts +6 -1
- package/esm/helpers/nats/useNatsSession.js +48 -8
- package/esm/helpers/nats/useNatsSession.js.map +1 -1
- package/esm/helpers/utils.d.ts +2 -1
- package/esm/helpers/utils.js +6 -1
- package/esm/helpers/utils.js.map +1 -1
- package/esm/styles.css +1 -1
- package/esm/version.d.ts +1 -1
- package/esm/version.js +1 -1
- package/package.json +4 -46
- package/src/components/Chat/__snapshots__/Chat.test.tsx.snap +71 -71
- package/src/components/ChatBubble/ChatBubble.stories.tsx +11 -0
- package/src/components/ChatBubble/ChatBubble.test.tsx +16 -0
- package/src/components/ChatBubble/ChatBubble.tsx +307 -292
- package/src/components/ChatBubble/__snapshots__/ChatBubble.test.tsx.snap +268 -121
- package/src/components/FeedbackButtons/FeedbackButtons.tsx +2 -0
- package/src/components/FeedbackButtons/__snapshots__/FeedbackButtons.test.tsx.snap +1 -1
- package/src/components/KnownFacts/__snapshots__/KnownFacts.test.tsx.snap +6 -2
- package/src/components/LoginDrawer/__snapshots__/LoginDrawer.test.tsx.snap +33 -11
- package/src/components/MemoriWidget/MemoriWidget.tsx +65 -1
- package/src/components/UploadButton/UploadButton.tsx +4 -0
- package/src/components/UploadButton/UploadDocuments/UploadDocuments.tsx +21 -5
- package/src/components/UploadButton/__snapshots__/UploadButton.test.tsx.snap +2 -2
- package/src/components/WhyThisAnswer/__snapshots__/WhyThisAnswer.test.tsx.snap +9 -3
- package/src/components/layouts/chat.css +5 -2
- package/src/helpers/constants.ts +21 -20
- package/src/helpers/nats/getNatsConfig.ts +4 -1
- package/src/helpers/nats/useNats.test.tsx +81 -0
- package/src/helpers/nats/useNats.ts +109 -29
- package/src/helpers/nats/useNatsSession.test.ts +16 -0
- package/src/helpers/nats/useNatsSession.ts +79 -13
- package/src/helpers/utils.test.ts +14 -4
- package/src/helpers/utils.ts +6 -1
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,758 +1,205 @@
|
|
|
1
|
+
# Changelog
|
|
1
2
|
|
|
2
|
-
|
|
3
|
-
## [9.0.0-alpha.22](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.21...v9.0.0-alpha.22) (2026-09-07)
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### Features
|
|
7
|
-
|
|
8
|
-
* align widget with [@memori](https://github.com/memori).ai/ui 1.17 overlay and token contract ([84b623b](https://github.com/memori-ai/memori-react/commit/84b623b81096efec4b56be5c6d454ec1829aae69))
|
|
9
|
-
* enhance Auth component with error handling and styling improvements ([a7449bf](https://github.com/memori-ai/memori-react/commit/a7449bfab3a83d4dfb8f2332a42095bc5bbf1182))
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
### Maintenance
|
|
13
|
-
|
|
14
|
-
* reorganize Storybook around layouts and live demos ([a1973d0](https://github.com/memori-ai/memori-react/commit/a1973d0bc31be13beccdd351edbaa29881b09c66))
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
### Changes
|
|
18
|
-
|
|
19
|
-
* remove unused story components and clean up Storybook files ([a0a983d](https://github.com/memori-ai/memori-react/commit/a0a983d000c897cdbeb036a151041fbf0ce16d4b))
|
|
20
|
-
|
|
21
|
-
## [9.0.0-alpha.21](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-09-02)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
### Features
|
|
25
|
-
|
|
26
|
-
* add document count display in FilePreview component and enhance modal styles ([709c5f0](https://github.com/memori-ai/memori-react/commit/709c5f0d9d206c811e0aabe415586cae29abbcd2))
|
|
27
|
-
* add isMaleExcludedAnimation function and corresponding tests ([5d13dfd](https://github.com/memori-ai/memori-react/commit/5d13dfdce63b5d9ff6fc7f087065aa804b016ad4))
|
|
28
|
-
* enhance StartPanel with collapsible description and improve CSS for preview list ([363b34f](https://github.com/memori-ai/memori-react/commit/363b34fc79ff7ca4025b0a77fa1c25f31a7edbde))
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
### Changes
|
|
32
|
-
|
|
33
|
-
* simplify dropdown implementation in ArtifactActions and CopyButtonWithDropdown components ([345cdfc](https://github.com/memori-ai/memori-react/commit/345cdfcfb08c83d3f3f97f29e18842b3bd519ddc))
|
|
34
|
-
|
|
35
|
-
## [9.0.0-alpha.20](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-09-01)
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
### Features
|
|
39
|
-
|
|
40
|
-
* implement mute speaker functionality with TTS audio control ([adc4bf5](https://github.com/memori-ai/memori-react/commit/adc4bf5f5fe044923eb21b203b65c7b3c92dcb25))
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
### Bug Fixes
|
|
44
|
-
|
|
45
|
-
* update default layout value to FULLPAGE in MemoriWidget and SettingsDrawer components ([a6e4e85](https://github.com/memori-ai/memori-react/commit/a6e4e850fdaf2eefb68f684154dc4b06945128a4))
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
### Maintenance
|
|
49
|
-
|
|
50
|
-
* release v9.0.0-alpha.20 ([b14d198](https://github.com/memori-ai/memori-react/commit/b14d198edd845b64bac17768fed30c8a6aff34d0))
|
|
51
|
-
|
|
52
|
-
## [9.0.0-alpha.19](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-08-28)
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
### Maintenance
|
|
56
|
-
|
|
57
|
-
* release v9.0.0-alpha.19 ([8f3c09e](https://github.com/memori-ai/memori-react/commit/8f3c09eae10764cb6422407ffab14f9ea855ef4c))
|
|
58
|
-
|
|
59
|
-
## [9.0.0-alpha.18](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-08-27)
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
### Maintenance
|
|
63
|
-
|
|
64
|
-
* release v9.0.0-alpha.18 ([3bc6775](https://github.com/memori-ai/memori-react/commit/3bc677517e058e00713aa9ffce8f0786864c6606))
|
|
65
|
-
|
|
66
|
-
## [9.0.0-alpha.17](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-08-26)
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
### Maintenance
|
|
70
|
-
|
|
71
|
-
* release v9.0.0-alpha.17 ([e435fb2](https://github.com/memori-ai/memori-react/commit/e435fb2634152b2b06c3e82c3618540956f1b50c))
|
|
72
|
-
|
|
73
|
-
## [9.0.0-alpha.16](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-08-26)
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
### Changes
|
|
77
|
-
|
|
78
|
-
* simplify theme handling in MemoriWidget and related components ([bdd4315](https://github.com/memori-ai/memori-react/commit/bdd43159c849cd3915181ff8a05da3906cd0cfd8))
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
### Maintenance
|
|
82
|
-
|
|
83
|
-
* release v9.0.0-alpha.16 ([8ee7ec5](https://github.com/memori-ai/memori-react/commit/8ee7ec5036891edb5731517d050ba6c6152574d6))
|
|
84
|
-
|
|
85
|
-
## [9.0.0-alpha.14](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-08-25)
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
### Maintenance
|
|
89
|
-
|
|
90
|
-
* release v9.0.0-alpha.14 ([cf7f130](https://github.com/memori-ai/memori-react/commit/cf7f130649b5c73e3112ac1917dea25d58086dc4))
|
|
91
|
-
|
|
92
|
-
## [9.0.0-alpha.13](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-08-25)
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
### Maintenance
|
|
96
|
-
|
|
97
|
-
* release v9.0.0-alpha.13 ([c8944f6](https://github.com/memori-ai/memori-react/commit/c8944f6f23214b137dd1997d4dbcfdae235b9739))
|
|
98
|
-
|
|
99
|
-
## [9.0.0-alpha.12](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-08-24)
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
### Maintenance
|
|
103
|
-
|
|
104
|
-
* bump package version to 9.0.0-alpha.12 ([670138f](https://github.com/memori-ai/memori-react/commit/670138f5fbe4926cf3b8fa30536d774cdf78be8e))
|
|
105
|
-
* release v9.0.0-alpha.12 ([f49302f](https://github.com/memori-ai/memori-react/commit/f49302f85ca0d69a25d34348ccceeb17d4b855f2))
|
|
106
|
-
|
|
107
|
-
## [9.0.0-alpha.11](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-08-24)
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
### Features
|
|
111
|
-
|
|
112
|
-
* add support for global background images in chat layout and improved responsivness ([2dfe436](https://github.com/memori-ai/memori-react/commit/2dfe43646e044ac8cec896c9fae8a2675d4897a5))
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
### Bug Fixes
|
|
116
|
-
|
|
117
|
-
* update layout storybook configuration with new memoriName and memoriID, adjust layout type and enable showSettings ([ccc98d3](https://github.com/memori-ai/memori-react/commit/ccc98d31244156d515ff60d5f57fb5fd6b273e9e))
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
### Changes
|
|
121
|
-
|
|
122
|
-
* remove AlertViewport from index.tsx and add it to MemoriWidget for improved alert theming ([0869c2a](https://github.com/memori-ai/memori-react/commit/0869c2aa465415f4efcc431a7a135ca0b0357b7a))
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
### Maintenance
|
|
126
|
-
|
|
127
|
-
* release v9.0.0-alpha.11 ([c639b78](https://github.com/memori-ai/memori-react/commit/c639b7891d5477bf618aee8ba380c94ffbbec809))
|
|
128
|
-
|
|
129
|
-
## [9.0.0-alpha.10](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-08-19)
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
### Features
|
|
133
|
-
|
|
134
|
-
* add AgeVerificationModal to Showcase ([cb8e5bd](https://github.com/memori-ai/memori-react/commit/cb8e5bdc75b22b9132b454b9b8df40e2fd84b133))
|
|
135
|
-
* add AI icon display in ChatBubble component with tooltip support ([b9eb8ee](https://github.com/memori-ai/memori-react/commit/b9eb8eeac44dfe8469d03bbdc4fe1d457ed576fb))
|
|
136
|
-
* add ArtifactDrawer stories and fix hooks order bug ([5bab851](https://github.com/memori-ai/memori-react/commit/5bab85162c58f0263cdc1037406064991a8a3bb4))
|
|
137
|
-
* add avatar-configurator support in Avatar component and related tests ([1d5cfcf](https://github.com/memori-ai/memori-react/commit/1d5cfcf34d72924b8251ac5ad0db8b05b594a28f))
|
|
138
|
-
* add back button functionality and improve header layout in ChatHistoryDrawer ([9522f3f](https://github.com/memori-ai/memori-react/commit/9522f3fe47892cc6ffb5a3bc09ca34c96e0bbe9e))
|
|
139
|
-
* add ChatResumeDrawer and MobileSessionPanel styles to main stylesheet ([0863dca](https://github.com/memori-ai/memori-react/commit/0863dca0e8d61e4b977ab90eb79a701bab57f920))
|
|
140
|
-
* add dark theme detection to MemoriWidget ([7b4cf2e](https://github.com/memori-ai/memori-react/commit/7b4cf2e9441ea11e225ac8eb8c004e525e771f2e))
|
|
141
|
-
* add disablePastedText prop to control pasted text ([adc224e](https://github.com/memori-ai/memori-react/commit/adc224e56a53d4a8cee1661263f337c0564fcb97))
|
|
142
|
-
* add DrawerFooter component ([e126ae8](https://github.com/memori-ai/memori-react/commit/e126ae8df5d5612a137451ad5a209506d662f62d))
|
|
143
|
-
* add expandable object for localization in multiple languages ([549a73a](https://github.com/memori-ai/memori-react/commit/549a73a0d60889c8b68b903ecf6ce5a2fc9276d4))
|
|
144
|
-
* add function call tracking to chat history and update styles for function badges ([2df9f4f](https://github.com/memori-ai/memori-react/commit/2df9f4ffa2ff77895245a40a45469fb6198689e7))
|
|
145
|
-
* add GasStation icon and update Header component for sustainability button ([92ac136](https://github.com/memori-ai/memori-react/commit/92ac13625c777fb7d2bac762ed928a173d368978))
|
|
146
|
-
* add maxTextareaCharacters prop to limit chat input ([0d9f1b6](https://github.com/memori-ai/memori-react/commit/0d9f1b6f9457da1c09218be5c6fd5e3c515ecd2d))
|
|
147
|
-
* add media handling and AI-generated note to Chat components, update button styles in Header ([9619830](https://github.com/memori-ai/memori-react/commit/9619830a0aeff6b539f75803d60035393816de35))
|
|
148
|
-
* add session management improvements in MemoriWidget ([c8159a8](https://github.com/memori-ai/memori-react/commit/c8159a888c9b2220c5214fe69ed96c323c1ed266))
|
|
149
|
-
* add skeleton loading indicators and upload state management for file previews ([8a363ae](https://github.com/memori-ai/memori-react/commit/8a363ae2fe429256f2c67c50a7dfc1ce513f38c6))
|
|
150
|
-
* add social media icons ([dda3fcc](https://github.com/memori-ai/memori-react/commit/dda3fcc154129880eb9fa735cdb81271e954a60a))
|
|
151
|
-
* add styling for combobox group labels and disable hover effect on expandable button ([a8aef46](https://github.com/memori-ai/memori-react/commit/a8aef46e78747f8a65d0b6a2fa0cfe179798a171))
|
|
152
|
-
* add styling for combobox group labels and disable hover effect on expandable button ([65604c6](https://github.com/memori-ai/memori-react/commit/65604c648c4524661c95e210b59c1a357b78ce1a))
|
|
153
|
-
* add support for custom trigger node in ChatConsumptionDropdown component ([9aa576c](https://github.com/memori-ai/memori-react/commit/9aa576ced88c997065365f6c709944fe724e2356))
|
|
154
|
-
* add support for DOTX file format in file preview and media components ([3c95348](https://github.com/memori-ai/memori-react/commit/3c953484ecb7cc1b2ef1dee7cf2a0527103aea81))
|
|
155
|
-
* add support for Office native file formats in file upload and preview components ([d6376de](https://github.com/memori-ai/memori-react/commit/d6376de207f2d62619264e7d5894d44be1dbe7e1))
|
|
156
|
-
* add unwrapDialogState function to handle nested currentState in NATS responses ([93023e6](https://github.com/memori-ai/memori-react/commit/93023e6f591ff6ac89600880fc71873f28a7848e))
|
|
157
|
-
* add venue management to Chat, FullPage, HiddenChat, and ZoomedFullBody layouts ([5ae3160](https://github.com/memori-ai/memori-react/commit/5ae31609b223a9c65d3dbbd5d3c40ce5474be845))
|
|
158
|
-
* added total consumptin as new popover button in the Header ([eef32aa](https://github.com/memori-ai/memori-react/commit/eef32aaf3d270bdf6c814a737eb8ff9fc30560b6))
|
|
159
|
-
* artifact MIME icons, drawer context, and chat UI polish ([3ca7d96](https://github.com/memori-ai/memori-react/commit/3ca7d966f72e50dc38f4893de0e42513e248fe51))
|
|
160
|
-
* enhance accessibility and improving responsivness ([1dd4b2a](https://github.com/memori-ai/memori-react/commit/1dd4b2af93d809c01c990aa9cca8b151b3675948))
|
|
161
|
-
* enhance accessibility and localization across various components ([2841b2f](https://github.com/memori-ai/memori-react/commit/2841b2fe44259d8aae0e180901e59697a4f0b6ad))
|
|
162
|
-
* enhance Avatar component with totem layout support and improve animation handling ([9dab8f0](https://github.com/memori-ai/memori-react/commit/9dab8f084107e7d151e307d4933729b657f4f139))
|
|
163
|
-
* enhance Chat and ChatBubble components with new media handling and styling improvements ([079cc7d](https://github.com/memori-ai/memori-react/commit/079cc7d856f62294b87645c590248fa368a83e29))
|
|
164
|
-
* enhance chat layout styles with unified background and input designs across all themes ([bdf878e](https://github.com/memori-ai/memori-react/commit/bdf878e172621c852f70ed505aac6feaea242077))
|
|
165
|
-
* enhance ChatBubble and MemoriWidget components with function cache handling ([b28b474](https://github.com/memori-ai/memori-react/commit/b28b4740806aabe10eb3415fc2974c45ff88a498))
|
|
166
|
-
* enhance ChatConsumptionDropdown with open state management ([1e10b7c](https://github.com/memori-ai/memori-react/commit/1e10b7cd9cdf118b81413cab9233970d8ba1f933))
|
|
167
|
-
* enhance ChatHistoryDrawer and ShareButton components with new styles and functionality ([2173dd0](https://github.com/memori-ai/memori-react/commit/2173dd034e3d856744346ad5654a4c95611f53d5))
|
|
168
|
-
* enhance component styles and layout across various modules, including z-index adjustments, responsive design improvements, and updated button interactions ([01536b8](https://github.com/memori-ai/memori-react/commit/01536b8ed44dfbc863fcb5d718d3e14a045abe62))
|
|
169
|
-
* enhance FeedbackButtons and Header components with alert integration ([7e1faa8](https://github.com/memori-ai/memori-react/commit/7e1faa8c2a70953ddfb73428e61ce0a772bd65e9))
|
|
170
|
-
* enhance Header and HiddenChat components with new user actions and layout adjustments ([07e4599](https://github.com/memori-ai/memori-react/commit/07e459912b9bc440702fd0d684a1e13aa67a9c7d))
|
|
171
|
-
* enhance Header component with responsive chat history button and brand avatar handling ([feec235](https://github.com/memori-ai/memori-react/commit/feec235e29977ebc34fd50d84caf3e56db408bdf))
|
|
172
|
-
* enhance LoginDrawer and StartPanel components with improved styling and structure ([cd18ba0](https://github.com/memori-ai/memori-react/commit/cd18ba0520fdd6566ae76eb8113609f2dd39a8b5))
|
|
173
|
-
* enhance MemoriWidget and MobileSessionPanel with new layout options and session info display ([a67aab8](https://github.com/memori-ai/memori-react/commit/a67aab8b49f9ee00efc94b7f5920c2a0e32a821d))
|
|
174
|
-
* enhance message sanitization across components by implementing stripAllInternalTags function ([671a9d2](https://github.com/memori-ai/memori-react/commit/671a9d27a629746e08d4e0853f44b8e5bb14ca02))
|
|
175
|
-
* enhance mobile experience with modal for privacy and deep thought information ([feea227](https://github.com/memori-ai/memori-react/commit/feea227fadb27af8c7df749d0fc13d3c87f66da4))
|
|
176
|
-
* enhance pagination in ChatHistory and KnownFacts ([13713aa](https://github.com/memori-ai/memori-react/commit/13713aa18b2242e59dcf2a200495718653aa36d1))
|
|
177
|
-
* enhance paste handling with boundary checks ([fe24c1b](https://github.com/memori-ai/memori-react/commit/fe24c1b338c665e82dbbf38294f7c4af24ff41dd))
|
|
178
|
-
* enhance styling and layout across components ([df1809f](https://github.com/memori-ai/memori-react/commit/df1809fa91ea30157252b067c4d1e64ae40b0ecb))
|
|
179
|
-
* enhance styling and layout for chat and start panel ([bf80729](https://github.com/memori-ai/memori-react/commit/bf807294925add9dc9883fca7eaafce79f7c6439))
|
|
180
|
-
* enhance Typing component layout and add tooltip support for UploadButton ([72bae78](https://github.com/memori-ai/memori-react/commit/72bae7868b7410919f4fda516463f8c16e3c6785))
|
|
181
|
-
* enhance UI and UX across various components ([96b8b55](https://github.com/memori-ai/memori-react/commit/96b8b55d9f10f6e07b43193067cd43dda8d42bf9))
|
|
182
|
-
* enhance UI components by integrating new input ([f083bd1](https://github.com/memori-ai/memori-react/commit/f083bd15af6267881b010deb7a99b616ec0e70d9))
|
|
183
|
-
* enhance upload modal styling and layout for image previews ([ba08194](https://github.com/memori-ai/memori-react/commit/ba081940131c2d3578bc53e13d8adc7880da5d29))
|
|
184
|
-
* enhance user identification for credit verification by adding ownerUserName ([d883f5d](https://github.com/memori-ai/memori-react/commit/d883f5d17226d3596ce7bb9232a7a368a122d556))
|
|
185
|
-
* extend ChatBubble component to support function cache copy functionality ([6c1ad00](https://github.com/memori-ai/memori-react/commit/6c1ad00efde745c235ffb1e971e316522f53f3ea))
|
|
186
|
-
* implement ChatResumeDrawer component with new styles and functionality for resuming conversations ([0cef69c](https://github.com/memori-ai/memori-react/commit/0cef69cbe38f164ef551cf24143bed9359e70e67))
|
|
187
|
-
* implement credit verification and UI updates ([fbd0d32](https://github.com/memori-ai/memori-react/commit/fbd0d3206591964d13f6d1d25adc4f778f9749ce))
|
|
188
|
-
* implement custom markdown rendering in ArtifactDrawer ([1405c48](https://github.com/memori-ai/memori-react/commit/1405c48a89e5815bd7031265e4f39cd061227682))
|
|
189
|
-
* implement custom trigger functionality in ChatConsumptionDropdown tests ([8e742d8](https://github.com/memori-ai/memori-react/commit/8e742d84f8d89d06706def494c9088e0f38564a9))
|
|
190
|
-
* implement partial asset upload handling and add corresponding translations ([8f0797e](https://github.com/memori-ai/memori-react/commit/8f0797edfe559847dcd51a113860a7a08c985e6d))
|
|
191
|
-
* implement paste handling for text input ([33561d3](https://github.com/memori-ai/memori-react/commit/33561d3125d7e8359cc448bd937a6ac0b310cbda))
|
|
192
|
-
* implement session expiration handling in MemoriWidget and add related tests ([a9e904b](https://github.com/memori-ai/memori-react/commit/a9e904bb9286fecaac1fec8c8a413cc0a8e63824))
|
|
193
|
-
* implement theme-aware styling ([af72e67](https://github.com/memori-ai/memori-react/commit/af72e67fde6027bf8f577473a09952b234d49fbe))
|
|
194
|
-
* implement totem rail with session utilities ([ff58ce4](https://github.com/memori-ai/memori-react/commit/ff58ce4845dcaddd9feb71d57dfce00708badaa8))
|
|
195
|
-
* implement widget surface context for improved modal and drawer containment ([eb8fb1e](https://github.com/memori-ai/memori-react/commit/eb8fb1e6536587dfef7cc937959f538ac03766d6))
|
|
196
|
-
* improve accessibility and localization by adding aria attribute--no-verify ([ebc6167](https://github.com/memori-ai/memori-react/commit/ebc6167b852b0a96a9784cad4fb28cd7dc126438))
|
|
197
|
-
* improve accessibility by adding aria-labels and aria-hidden attributes to ShareButton ([6d8cbd0](https://github.com/memori-ai/memori-react/commit/6d8cbd087b67a4e83a1ecead353ad85d93b1124b))
|
|
198
|
-
* improve CSS styling for Blob component ([92bed78](https://github.com/memori-ai/memori-react/commit/92bed7807d0762c30615a571d56f36b958632a0e))
|
|
199
|
-
* improve file preview interactions ([5eda278](https://github.com/memori-ai/memori-react/commit/5eda27835e0a70a4b30a0812e8866dc14d50822c))
|
|
200
|
-
* improve mobile chat and session panel UX ([09c22cc](https://github.com/memori-ai/memori-react/commit/09c22cc9fc4dc4372f8a738573ac0e0ff071873b))
|
|
201
|
-
* integrate [@memori](https://github.com/memori).ai/ui components ([82e4d9f](https://github.com/memori-ai/memori-react/commit/82e4d9f348eabd468071fedef72941d596a11623))
|
|
202
|
-
* integrate alert system in ChatHistoryDrawer ([51775e3](https://github.com/memori-ai/memori-react/commit/51775e3def6b07caa2095ef23f1af88c902277da))
|
|
203
|
-
* integrate artifact drawer column into chat layouts ([78d389d](https://github.com/memori-ai/memori-react/commit/78d389dabe3437652243d1e9d62f1068c7023919))
|
|
204
|
-
* integrate JetStream support in NATS configuration and session handling ([4a3a0c8](https://github.com/memori-ai/memori-react/commit/4a3a0c815a5a4887ddcf64890c42eb35dc2d4a52))
|
|
205
|
-
* integrate Memori table into i18n and enhance ChatHistoryDrawer styles for improved layout ([f121690](https://github.com/memori-ai/memori-react/commit/f121690f1b473e1062e501f9c00fb08fb8d4ae41))
|
|
206
|
-
* integrate NATS support for real-time event handling in MemoriWidget ([bbb7a7f](https://github.com/memori-ai/memori-react/commit/bbb7a7f33ac2ee5a0cf57c4ace4714849ec3fe44))
|
|
207
|
-
* localize pasted text label ([3a6bf5d](https://github.com/memori-ai/memori-react/commit/3a6bf5d7e8a3fddf30a2cb58c5419f3bdf1a82d3))
|
|
208
|
-
* refactor XLSX file handling in UploadDocuments component to improve text extraction ([5ca2e0f](https://github.com/memori-ai/memori-react/commit/5ca2e0f5949685f3a826e8c75b38e876d1c4a682))
|
|
209
|
-
* refine chat layouts with global backgrounds and danger cancel buttons ([3f28abc](https://github.com/memori-ai/memori-react/commit/3f28abc6311e890a5777a662352b5c0e863c4e13))
|
|
210
|
-
* reorganized Website Assistant layout stories ([ba9c9b1](https://github.com/memori-ai/memori-react/commit/ba9c9b130821141de93c48d31e10b24da21b166a))
|
|
211
|
-
* synchronize local state with fullscreen changes in Header component ([2fa1a1d](https://github.com/memori-ai/memori-react/commit/2fa1a1d35ebc7ecde87a2c93e7823127bde021bc))
|
|
212
|
-
* **ui:** add margin to chat inputs in website assistant layout ([d488e14](https://github.com/memori-ai/memori-react/commit/d488e1412c3d0ef266af79bf818e516e3fe65790))
|
|
213
|
-
* **ui:** enhance responsiveness of chat and start panel components ([cad3abf](https://github.com/memori-ai/memori-react/commit/cad3abf7c2e468ae65f4606072540ac4fef3e311))
|
|
214
|
-
* **ui:** enhance styling and responsiveness across components, update translations for clarity ([3e13a9f](https://github.com/memori-ai/memori-react/commit/3e13a9fac79ac35372ad30930cc334ab8df3b772))
|
|
215
|
-
* **ui:** implement text sanitization for ChatBubble and WhyThisAnswer components ([1759b5b](https://github.com/memori-ai/memori-react/commit/1759b5bd660afc17aece24a682052e2f3d9c0364))
|
|
216
|
-
* **ui:** improve MobileSessionPanel button styles and update translations for consistency ([8fa0078](https://github.com/memori-ai/memori-react/commit/8fa007820ed4d0b5fd5aa39c088c36ba2ab7295f))
|
|
217
|
-
* **ui:** refine fullpage/zoomed layouts and storybook setup ([470d059](https://github.com/memori-ai/memori-react/commit/470d059b43b43d012c63d7d1796a595a7fdb353c))
|
|
218
|
-
* **ui:** refresh header, layouts, powered-by, and i18n ([1c3c8e2](https://github.com/memori-ai/memori-react/commit/1c3c8e2d8c697ccf64749eb27a1d6a96ab375fa4))
|
|
219
|
-
* **ui:** update [@memori](https://github.com/memori).ai/ui to version 1.14.0 and enhance popover trigger button active states ([637d944](https://github.com/memori-ai/memori-react/commit/637d9444f45d66380bb32d1ab875f667cb9ab04a))
|
|
220
|
-
* **ui:** update styling for header and chat components, enhance position popover functionality ([bc7cdba](https://github.com/memori-ai/memori-react/commit/bc7cdba1361eb3a0707475d58a5d38150aa8a32d))
|
|
221
|
-
* update [@memori](https://github.com/memori).ai/ui ([e8ca002](https://github.com/memori-ai/memori-react/commit/e8ca002a61bbfb8054a43d5db6abafa81fc3eb1a))
|
|
222
|
-
* update chat inputs styles over all layouts ([9657d05](https://github.com/memori-ai/memori-react/commit/9657d054c76385c6b7a617d8a87db9974a882b84))
|
|
223
|
-
* update ChatConsumptionDropdown to improve AI usage display and improved responsivness ([0e6b189](https://github.com/memori-ai/memori-react/commit/0e6b1891161b97260adafc0269811dc264a393c3))
|
|
224
|
-
* update Header component to use localized strings for total chat consumption ([87f21c5](https://github.com/memori-ai/memori-react/commit/87f21c5cc5eed59babbe32c322bb9033ba280fee))
|
|
225
|
-
* update paste handling to allow inline pastes ([64f0ee2](https://github.com/memori-ai/memori-react/commit/64f0ee282a6e5d8e77bf3fb307d9f58a853aae6f))
|
|
226
|
-
* update styles for responsive alert viewport, enhance button styles, and improve layout consistency across components ([435d310](https://github.com/memori-ai/memori-react/commit/435d310db86c399df1d0a2cd6ceccabc5b33f01c))
|
|
227
|
-
* **upload:** enhance error handling and user feedback ([bac9431](https://github.com/memori-ai/memori-react/commit/bac943132cb017799d9a0ac6f7341890fcfac628))
|
|
228
|
-
* **upload:** smart upload — partial upload when over file or payload limits ([45b7825](https://github.com/memori-ai/memori-react/commit/45b78259eacd79a4401e71073a793eeae9dc416a))
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
### Bug Fixes
|
|
232
|
-
|
|
233
|
-
* enhance file selection handling in UploadButton ([0651d2d](https://github.com/memori-ai/memori-react/commit/0651d2d9815823a719cd557fdd6d9451be8b0e66))
|
|
234
|
-
* ensure aria-label is a string for accessibility compliance in Header component ([9d04426](https://github.com/memori-ai/memori-react/commit/9d04426d3b4bf92e7399ad61275f627352c9e64c))
|
|
235
|
-
* ensure audio playback respects defaultEnableAudio ([0ec1da5](https://github.com/memori-ai/memori-react/commit/0ec1da5f7444edfff23c8165484cf64bfc6b87e7))
|
|
236
|
-
* improve cleanup commands in package.json ([18cddfb](https://github.com/memori-ai/memori-react/commit/18cddfb11211749984631f815c19d1b5553b4acd))
|
|
237
|
-
* login token async conditions ([10ce585](https://github.com/memori-ai/memori-react/commit/10ce58543b1597084f5e58b0c1a14d0a4822a697))
|
|
238
|
-
* prevent chat history clearance when dismissing popovers ([19ec445](https://github.com/memori-ai/memori-react/commit/19ec4455549b5e28af88c6e31f30ba4dad8f1de7))
|
|
239
|
-
* prevent sending messages while uploading files ([93004c5](https://github.com/memori-ai/memori-react/commit/93004c505a4c646cb989e7a0cd00106bab2a454b))
|
|
240
|
-
* prevent XSS vulnerability among sanification ([a432905](https://github.com/memori-ai/memori-react/commit/a4329053411f47e25662c6937c35f86764189839))
|
|
241
|
-
* reference error on MAX_DOCUMENTS_PER_MESSAGE ([53dc3b7](https://github.com/memori-ai/memori-react/commit/53dc3b773fcee6b36214408a0ffd3da6884d0e36))
|
|
242
|
-
* remove '.xls' from office native extensions ([5958e02](https://github.com/memori-ai/memori-react/commit/5958e02dc602ca4d7a9503625ad5e653250df4c5))
|
|
243
|
-
* reset clickedStart state in multiple scenarios within MemoriWidget ([f4a296d](https://github.com/memori-ai/memori-react/commit/f4a296d41282b792bc0e5a7f0caf8fcb1d95f986))
|
|
244
|
-
* streamline cleanup commands in package.json ([066e522](https://github.com/memori-ai/memori-react/commit/066e52235744d9020b2ed0f5a3e573c195594c24))
|
|
245
|
-
* **ui:** adjust height of MemoriWidget grid column for improved layout consistency ([58551d2](https://github.com/memori-ai/memori-react/commit/58551d2c9ade5320e44cbda71b5b865d20268e4b))
|
|
246
|
-
* **ui:** align content preview modal and assistant drawer z-index ([4431f08](https://github.com/memori-ai/memori-react/commit/4431f089cf07874019aa16d6a25781991d27819e))
|
|
247
|
-
* unify login token resolution logic in MemoriWidget component ([215e69f](https://github.com/memori-ai/memori-react/commit/215e69fa351d187ea220d6211fa96f7b1ec3be37))
|
|
248
|
-
* update active file count during document validation and processing ([ea998fc](https://github.com/memori-ai/memori-react/commit/ea998fc3539b70ef3670d96faed6ee6581fe9c42))
|
|
249
|
-
* update Anthropic status URL to use status.claude.com ([97da113](https://github.com/memori-ai/memori-react/commit/97da11397068c80019f77ecc96374d8f737a1777))
|
|
250
|
-
* update ChatBubble to conditionally truncate messages ([0cde2ab](https://github.com/memori-ai/memori-react/commit/0cde2aba665629e3f6546e64ab40ea4384eb085c))
|
|
251
|
-
* update file type display logic in FilePreview ([43e18c3](https://github.com/memori-ai/memori-react/commit/43e18c312204b6b1866106a8930a8f4c9b696dd5))
|
|
252
|
-
* update mouth smile blend shape constants ([cd05104](https://github.com/memori-ai/memori-react/commit/cd0510421cb409d7dae21b2a3b31e9b93009c97e))
|
|
253
|
-
* update NATS subject default value to include session ID format ([56bcbf4](https://github.com/memori-ai/memori-react/commit/56bcbf4d6e87a2966b874048f95cdfc919ca47a8))
|
|
254
|
-
* update snapshot ([73fb756](https://github.com/memori-ai/memori-react/commit/73fb756b3032296ab84c58e68f110064d0a546a4))
|
|
255
|
-
* update text in Header component and add OTP digit paste functionality in LoginDrawer ([09ef8aa](https://github.com/memori-ai/memori-react/commit/09ef8aab17de321f5eea4c7229727330355e39f7))
|
|
256
|
-
* update timestamp in Chat component snapshot to reflect recent changes ([f4b0ef4](https://github.com/memori-ai/memori-react/commit/f4b0ef43aec3fc877c75879c71a50853e9962b39))
|
|
257
|
-
* update venue handling and improve user experience in location management ([9e3a871](https://github.com/memori-ai/memori-react/commit/9e3a8714e8edad12cd3bb96a5a04d4f5f69d93ac))
|
|
258
|
-
* upload docx media type card opens up a link instead of a modal ([5fb0b34](https://github.com/memori-ai/memori-react/commit/5fb0b34178cbd43859894cb76ef0c925c7f34157))
|
|
259
|
-
* use primary-color for user bubble background in dark theme ([c7eceda](https://github.com/memori-ai/memori-react/commit/c7eceda840630264dfc24c73df79fc502cf9fadd))
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
### Changes
|
|
263
|
-
|
|
264
|
-
* adjust padding and layout for ChatHistoryDrawer ([ff0b6ef](https://github.com/memori-ai/memori-react/commit/ff0b6ef6b52aa0aaeec1044d5d3852e63e584d27))
|
|
265
|
-
* adjust positioning of "Powered by" element and update chat input border styles ([b3250df](https://github.com/memori-ai/memori-react/commit/b3250df7eba5f30e73b163d7e792581c74390bfa))
|
|
266
|
-
* **chat:** render message media inside ChatBubble ([356ed22](https://github.com/memori-ai/memori-react/commit/356ed2280f79a0c1ccf71ed818d36d9969ffb85f))
|
|
267
|
-
* clean up and enhance styling for Chat and MicrophoneButton components ([6feb5d2](https://github.com/memori-ai/memori-react/commit/6feb5d224330e9fff15a11f6488333999d95e8e6))
|
|
268
|
-
* clean up Header component code for better readability and maintainability ([3f79c44](https://github.com/memori-ai/memori-react/commit/3f79c446b028943af016903f3eb078513cd6fd24))
|
|
269
|
-
* clean up HiddenChat component by removing header prop component ([c9d5559](https://github.com/memori-ai/memori-react/commit/c9d5559795b66401c92eda97b75571528bafef05))
|
|
270
|
-
* comment out unused CSS rules in chat layout for clarity ([69ad366](https://github.com/memori-ai/memori-react/commit/69ad3662e8d39fcb52c5860cb51b287f1710cb69))
|
|
271
|
-
* comment out unused CSS rules in fullpage layout for clarity ([63e55ea](https://github.com/memori-ai/memori-react/commit/63e55eab2dec526ed58d6f4e32a13763bb038d47))
|
|
272
|
-
* **components:** adapt to [@memori](https://github.com/memori).ai/ui 1.5.2 ([e7a24ea](https://github.com/memori-ai/memori-react/commit/e7a24ea3109bc77c742bebc5d79c047a1c3323e5))
|
|
273
|
-
* enhance credit check logic in MemoriWidget to conditionally start session ([30d3fdb](https://github.com/memori-ai/memori-react/commit/30d3fdb8a2c1c4606306416bc408c102cfd62bb0))
|
|
274
|
-
* enhance CSS variables and styling for Artifact components ([cbf4087](https://github.com/memori-ai/memori-react/commit/cbf4087616b2a9b4d3d11dea741751f141d1d2c0))
|
|
275
|
-
* improve code readability and formatting in MemoriWidget component ([0fee720](https://github.com/memori-ai/memori-react/commit/0fee720b5e79ccea2e745dc97f4c756d25317b45))
|
|
276
|
-
* improve date handling in AgeVerificationModal ([0d806c8](https://github.com/memori-ai/memori-react/commit/0d806c80e403a76e421ff3560c47aa472b6c9e14))
|
|
277
|
-
* improve error logging and clean up debug statements in MemoriWidget ([dca8bb8](https://github.com/memori-ai/memori-react/commit/dca8bb89fc2eecc9d4f2f937bbf9384025778283))
|
|
278
|
-
* introduce PositionPopover component with styles and stories for enhanced functionality ([fe88857](https://github.com/memori-ai/memori-react/commit/fe888571611cea6ffdbbe340a1bbe086aae5a7c6))
|
|
279
|
-
* organize CSS layers for theme and integration overrides ([f89785d](https://github.com/memori-ai/memori-react/commit/f89785dd71c1a7fd44833284ee6f5b81b6c64cc3))
|
|
280
|
-
* organize CSS layers for theme and integration overrides ([3b31619](https://github.com/memori-ai/memori-react/commit/3b31619381018cfb3056b6ab4bd89ce85555be84))
|
|
281
|
-
* remove disablePastedText prop ([9e11114](https://github.com/memori-ai/memori-react/commit/9e111140051ae70f8298f91e634d84602a08461a))
|
|
282
|
-
* remove unused artifact regex and related code in ArtifactHandler for improved clarity ([ef59c01](https://github.com/memori-ai/memori-react/commit/ef59c016157c7be2be59bdd018c5504184f44611))
|
|
283
|
-
* remove unused CSS import ([f54fc76](https://github.com/memori-ai/memori-react/commit/f54fc7611ccfa42333a07501a675963869d0876c))
|
|
284
|
-
* remove unused NATS timeout logic from MemoriWidget ([4d2a451](https://github.com/memori-ai/memori-react/commit/4d2a451833860ddfa5325751c531a8d209f33adb))
|
|
285
|
-
* replace Dropdown with Popover in Header component ([d52c9f8](https://github.com/memori-ai/memori-react/commit/d52c9f8b2d2fdb10d63ba3e0982b12abb84a1f43))
|
|
286
|
-
* replace file extension extraction with document badge labels ([13afcdd](https://github.com/memori-ai/memori-react/commit/13afcdd3b955aba35a2085305f0c23985e277727))
|
|
287
|
-
* replace hasTouchscreen with isMobileOrTablet ([7a995d2](https://github.com/memori-ai/memori-react/commit/7a995d267225ef3393447820917d0a1fee9015ea))
|
|
288
|
-
* replace icon imports with lucide-react ([5807c45](https://github.com/memori-ai/memori-react/commit/5807c45d102313d986208a021086982958667d09))
|
|
289
|
-
* replace react-hot-toast with custom alert manager ([941914a](https://github.com/memori-ai/memori-react/commit/941914a86ad6fe3b90b546b79ad2a3f0542b1d8b))
|
|
290
|
-
* replace setShowPositionDrawer with setVenue and introduce PositionPopover in Header ([45e7a74](https://github.com/memori-ai/memori-react/commit/45e7a742c9e9aded549da229ec56cef078baff52))
|
|
291
|
-
* restructure ChatBubble component layout and enhance media handling ([2a1b088](https://github.com/memori-ai/memori-react/commit/2a1b0888e0ec9f40180d3231bea86a6b59b1cd61))
|
|
292
|
-
* show ai disclaimer under chat inputs ([5699c6d](https://github.com/memori-ai/memori-react/commit/5699c6d3d103e1b76e7c96f642013181474f50bb))
|
|
293
|
-
* simplify ChatBubble and ChatHistoryDrawer components by removing unnecessary styles ([777acb7](https://github.com/memori-ai/memori-react/commit/777acb7679f5ee09aa6fe0919e596aa09499c91b))
|
|
294
|
-
* simplify document processing by removing truncation logic from file extraction ([207e83c](https://github.com/memori-ai/memori-react/commit/207e83c59b71b5b25b88a6283c23ea5178d7a67b))
|
|
295
|
-
* streamline ChatHistoryDrawer and ChatInputs, enhance styling in hidden-chat layout ([ab860ff](https://github.com/memori-ai/memori-react/commit/ab860ff5d3cccaa57e6636af55867ceb01bae38c))
|
|
296
|
-
* streamline CSS styles for ChatHistoryDrawer ([fba9d1e](https://github.com/memori-ai/memori-react/commit/fba9d1e2bc0c9ee2b00a78c9876a3ba3151e8db6))
|
|
297
|
-
* streamline error handling ([c052a81](https://github.com/memori-ai/memori-react/commit/c052a81765b362f0b2d29b03206f9639a8c23d20))
|
|
298
|
-
* **ui:** improve layout consistency and add popover presentation to MobileSessionPanel ([a9f00e7](https://github.com/memori-ai/memori-react/commit/a9f00e7f869fb3054d6d2b9a1fa54a8707182716))
|
|
299
|
-
* update PositionPopover with new Popover component ([522ba47](https://github.com/memori-ai/memori-react/commit/522ba47f9642a484f6f09272b4df095a48cb76d7))
|
|
300
|
-
* update component logic and structure ([7271495](https://github.com/memori-ai/memori-react/commit/727149588feb47b0424bd44ff19a2e456dc00e99))
|
|
301
|
-
* update CSS styles for ChatInputs, ContentPreviewModal, FilePreview, MediaItemWidget, and MemoriWidget components ([a7207b5](https://github.com/memori-ai/memori-react/commit/a7207b5f4f9f647fbc2eff5e96371127bc78386a))
|
|
302
|
-
* update CSS styles for MemoriWidget and ArtifactActions components, adjusting background colors ([37ea36a](https://github.com/memori-ai/memori-react/commit/37ea36a3dc2b90c3243cdaa26a60a98fb7581dc5))
|
|
303
|
-
* update Header by replacing Info icon with MoreVertical, remove unused settings popover state ([0e4c684](https://github.com/memori-ai/memori-react/commit/0e4c68480479e14a77a918be0ee1d8891c3a5572))
|
|
304
|
-
* update snapshot styles for various components ([8bafaca](https://github.com/memori-ai/memori-react/commit/8bafacac510713778112de43667b5c6f3057d74e))
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
### Maintenance
|
|
308
|
-
|
|
309
|
-
* refactor MemoriWidget for improved NATS event handling ([7de1051](https://github.com/memori-ai/memori-react/commit/7de105174d24b2e770bf3d738efd91cf0a42f004))
|
|
310
|
-
* add @base-ui/react dependency ([fc158f2](https://github.com/memori-ai/memori-react/commit/fc158f206b512acb95a201da1f7f6b7587c40594))
|
|
311
|
-
* bump package version to 9.0.0-alpha.6 ([89bb42b](https://github.com/memori-ai/memori-react/commit/89bb42bd99fd11257746bb2befbb3d6340e2ba99))
|
|
312
|
-
* bump package version to 9.0.0-alpha.7 ([c72b769](https://github.com/memori-ai/memori-react/commit/c72b7691624f52acccd7f2e26cbe658027e102b5))
|
|
313
|
-
* bump package version to 9.0.0-alpha.8 ([44526b2](https://github.com/memori-ai/memori-react/commit/44526b2942fde0660f3ca56d209e0352eb81179a))
|
|
314
|
-
* bump package version to 9.0.0-alpha.9 ([0be7121](https://github.com/memori-ai/memori-react/commit/0be7121f824c6392d040eea7f0e244c2c785212c))
|
|
315
|
-
* **deps:** bump [@memori](https://github.com/memori).ai/ui to ^1.5.2 ([de74299](https://github.com/memori-ai/memori-react/commit/de74299807a0d0a295855240d82d7828b41097b3))
|
|
316
|
-
* **deps:** update dependencies ([729688f](https://github.com/memori-ai/memori-react/commit/729688f6c0b29079e9d594bc006f3f3928c0cbc9))
|
|
317
|
-
* enhance build process with PostCSS integration and add CSS build scripts ([0d3af95](https://github.com/memori-ai/memori-react/commit/0d3af959b99f123b5a392f1f017a044c46760b88))
|
|
318
|
-
* refactor MemoriWidget to utilize MemoriUIProvider for improved theme management ([1cff0e9](https://github.com/memori-ai/memori-react/commit/1cff0e9266eeeef48123a9af1bf5eea6ca642b2c))
|
|
319
|
-
* release v8.17.3 ([81347cf](https://github.com/memori-ai/memori-react/commit/81347cf06f1e35e5a75b26fe0b44e4c919cd7352))
|
|
320
|
-
* release v8.18.0 ([34d0faf](https://github.com/memori-ai/memori-react/commit/34d0fafab825a80c7a8a3c9ec102aa22b4acef96))
|
|
321
|
-
* release v8.18.1 ([20c00fe](https://github.com/memori-ai/memori-react/commit/20c00fe9d61bc809973c86d345fe727534b0554a))
|
|
322
|
-
* release v8.18.2 ([27cdab4](https://github.com/memori-ai/memori-react/commit/27cdab4c10d0ead3b4a0f9405317629b9880ae4c))
|
|
323
|
-
* release v8.19.0 ([63a2d16](https://github.com/memori-ai/memori-react/commit/63a2d16a00295a63d357283f65df5b4e6712005b))
|
|
324
|
-
* release v8.19.1 ([f308716](https://github.com/memori-ai/memori-react/commit/f308716588d1a56ab11298c18ba566db1dfbaf6f))
|
|
325
|
-
* release v8.19.2 ([6a01759](https://github.com/memori-ai/memori-react/commit/6a01759aa6705f387746f806cffb602ffe07c559))
|
|
326
|
-
* release v8.19.3 ([275e533](https://github.com/memori-ai/memori-react/commit/275e533734d82bdc8ad3bfe07f31e1544eb009eb))
|
|
327
|
-
* release v8.30.1 ([13d29f1](https://github.com/memori-ai/memori-react/commit/13d29f1020da76f43c3a5d5568cfa0fad9b2c2e3))
|
|
328
|
-
* release v8.31.0 ([ad31500](https://github.com/memori-ai/memori-react/commit/ad3150056d9793a4f8795803a7de1b0666295e46))
|
|
329
|
-
* release v8.32.0 ([ac8f19a](https://github.com/memori-ai/memori-react/commit/ac8f19a996a8a0f5b20bd1df89a711c97903de35))
|
|
330
|
-
* release v8.34.0 ([2fcc8bd](https://github.com/memori-ai/memori-react/commit/2fcc8bdf96b018a322cc7ce3d5f703c74d9261ec))
|
|
331
|
-
* release v8.36.0 ([f6d6c92](https://github.com/memori-ai/memori-react/commit/f6d6c92ae9e0a337a3db215ea1ff7fed17725227))
|
|
332
|
-
* release v8.37.0 ([80b208c](https://github.com/memori-ai/memori-react/commit/80b208cad3abed75703d8cd45c4b98182bf36564))
|
|
333
|
-
* release v8.38.0 ([536d919](https://github.com/memori-ai/memori-react/commit/536d919b9a01ad178cbba6be9e845be038baf5a8))
|
|
334
|
-
* release v8.38.1 ([d19a323](https://github.com/memori-ai/memori-react/commit/d19a3232d5ad7677c77e65a35fcacc9edc7c77f6))
|
|
335
|
-
* release v8.38.2 ([94fc800](https://github.com/memori-ai/memori-react/commit/94fc8006306bdc1b8a44c601b20283cfdcb9a388))
|
|
336
|
-
* release v8.38.3 ([55deed8](https://github.com/memori-ai/memori-react/commit/55deed80fe13b3c69cadf9bae44ba62d6d2589f1))
|
|
337
|
-
* release v8.38.4 ([81b6116](https://github.com/memori-ai/memori-react/commit/81b61161ef22621166014a2f258c45f653105857))
|
|
338
|
-
* release v9.0.0-alpha.0 ([1b74d07](https://github.com/memori-ai/memori-react/commit/1b74d07256b6611a13617d94964824b99434b88c))
|
|
339
|
-
* release v9.0.0-alpha.1 ([7e63a0c](https://github.com/memori-ai/memori-react/commit/7e63a0cd2738c8fb742b4a66879fdd7039a2798c))
|
|
340
|
-
* release v9.0.0-alpha.10 ([f2706ab](https://github.com/memori-ai/memori-react/commit/f2706ab4958b029d675b78ca6d774f96d7705df5))
|
|
341
|
-
* release v9.0.0-alpha.2 ([27de450](https://github.com/memori-ai/memori-react/commit/27de4502f538bc3abaf517b8350f2fbdb00b78df))
|
|
342
|
-
* release v9.0.0-alpha.3 ([c663433](https://github.com/memori-ai/memori-react/commit/c663433bee38490aa0db6153a02ca0c56d15071a))
|
|
343
|
-
* release v9.0.0-alpha.4 ([4a9a96f](https://github.com/memori-ai/memori-react/commit/4a9a96f04b5222c7a8e11ea96c9a08a85313f977))
|
|
344
|
-
* release v9.0.0-alpha.5 ([74522be](https://github.com/memori-ai/memori-react/commit/74522be64d9ffa9ca0b1a61b52e99781170a79a7))
|
|
345
|
-
* release v9.0.0-alpha.6 ([2f938a3](https://github.com/memori-ai/memori-react/commit/2f938a3611e9f5c5d54e34540bf3c1f3123bd7de))
|
|
346
|
-
* release v9.0.0-alpha.7 ([7c0769d](https://github.com/memori-ai/memori-react/commit/7c0769d905851962517e4f02ac99bd47c28d39d9))
|
|
347
|
-
* release v9.0.0-alpha.8 ([47c1bd8](https://github.com/memori-ai/memori-react/commit/47c1bd8c262921a3de9a9c5a32fefcc6f8de04cc))
|
|
348
|
-
* release v9.0.0-alpha.9 ([a5119f8](https://github.com/memori-ai/memori-react/commit/a5119f8a8f596540c3e364b9b550e7f1694d0413))
|
|
349
|
-
* remove unused dependencies from package.json ([5ea6c79](https://github.com/memori-ai/memori-react/commit/5ea6c795dc104772f572cbbadc8fedb07ef42666))
|
|
350
|
-
* **storybook:** add theme decorator and sync with background control ([4787d5b](https://github.com/memori-ai/memori-react/commit/4787d5b915dc74ad1a0867ba2846789a946145dc))
|
|
351
|
-
* update [@memori](https://github.com/memori).ai/ui ([3177beb](https://github.com/memori-ai/memori-react/commit/3177bebc8e212de5fb20f5f82a6473fdb9d2ae48))
|
|
352
|
-
* update [@memori](https://github.com/memori).ai/ui ([800908c](https://github.com/memori-ai/memori-react/commit/800908cb78a2bb82d7fe3c4780420645b8df05a0))
|
|
353
|
-
* update [@memori](https://github.com/memori).ai/ui ([bf447f1](https://github.com/memori-ai/memori-react/commit/bf447f199f2281c557e3fb66bc36edae894df100))
|
|
354
|
-
* update [@memori](https://github.com/memori).ai/ui dependency ([9f7a967](https://github.com/memori-ai/memori-react/commit/9f7a9675576bb090da1700756328414413889a4e))
|
|
355
|
-
* update [@memori](https://github.com/memori).ai/ui dependency ([42ad4c6](https://github.com/memori-ai/memori-react/commit/42ad4c6a216f9e2881c4117fdf60c05a399d9521))
|
|
356
|
-
* update [@memori](https://github.com/memori).ai/ui dependency ([a310624](https://github.com/memori-ai/memori-react/commit/a310624b1e26e75dbfc5b4ef18058baab3e33fac))
|
|
357
|
-
* update [@memori](https://github.com/memori).ai/ui dependency ([892be2d](https://github.com/memori-ai/memori-react/commit/892be2d0deb977cd3664ffab475a60a7ae3763e6))
|
|
358
|
-
* update [@memori](https://github.com/memori).ai/ui to and adjust theme colors in Storybook preview ([a0d7116](https://github.com/memori-ai/memori-react/commit/a0d7116dda3705efe0ea6078f362af6f8e99e9ca))
|
|
359
|
-
* update [@memori](https://github.com/memori).ai/ui to version 1.14.1 ([65f4b10](https://github.com/memori-ai/memori-react/commit/65f4b10fc6afd16a9e5adc1adcfcb18aace8448a))
|
|
360
|
-
* update [@memori](https://github.com/memori).ai/ui to version 1.16.0 and adjust FullPage and ZoomedFullBody styles ([1ff5a22](https://github.com/memori-ai/memori-react/commit/1ff5a2298a8b1ff5e836092869679e05b629c824))
|
|
361
|
-
* update deps following npm audit ([f7a109f](https://github.com/memori-ai/memori-react/commit/f7a109f7055c37d8b5190a3f5148e428c140625a))
|
|
362
|
-
* update dompurify ([e9aad6e](https://github.com/memori-ai/memori-react/commit/e9aad6e9d6d25bad597cda1078a988737698819b))
|
|
363
|
-
* update dompurify dependency to version 3.4.11 ([da25688](https://github.com/memori-ai/memori-react/commit/da256880de277d939a2ca41293300a184f8e53e7))
|
|
364
|
-
* update mocks and PDF export helper ([ef74575](https://github.com/memori-ai/memori-react/commit/ef7457578144ce680618682e33c404b2c4606daa))
|
|
365
|
-
|
|
366
|
-
## [8.44.0](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-09-02)
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
### Features
|
|
370
|
-
|
|
371
|
-
* enhance artifact preview by sanitizing content and adding iframe sandboxing ([d7c5f9f](https://github.com/memori-ai/memori-react/commit/d7c5f9ff5b6a5dc6fd53f218c23da759ece5f735))
|
|
372
|
-
* enhance resource URL handling by appending session ID for specific asset paths ([8c2f3dc](https://github.com/memori-ai/memori-react/commit/8c2f3dcf27a7fb3148914f8ec63a115d492b32f3))
|
|
373
|
-
* file conversion migrated over new internal api ([4efeef0](https://github.com/memori-ai/memori-react/commit/4efeef0990537a4cc93dcfd06e31507b6fde33a2))
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
### Bug Fixes
|
|
377
|
-
|
|
378
|
-
* prevent XSS vulnerability among sanification ([6d2eb29](https://github.com/memori-ai/memori-react/commit/6d2eb2980542bd5c992452a115a9c5920a70f42e))
|
|
379
|
-
* print icon jsx attributes ([75aeecb](https://github.com/memori-ai/memori-react/commit/75aeecb2123ec7c62ae3dc3cf12802863e34807e))
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
### Changes
|
|
383
|
-
|
|
384
|
-
* clean up media URL handling ([d98986d](https://github.com/memori-ai/memori-react/commit/d98986d5b334fe36622a05de804ade6969c9d3ef))
|
|
385
|
-
* improve date handling in AgeVerificationModal ([0e4a54d](https://github.com/memori-ai/memori-react/commit/0e4a54d45b8a0fd149fc9f046f8904c219e49d25))
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
### Maintenance
|
|
389
|
-
|
|
390
|
-
* release v8.41.5 ([4576a98](https://github.com/memori-ai/memori-react/commit/4576a985a20d6cf8e305df5aedfaa407dfd2068a))
|
|
391
|
-
* release v8.41.6 ([ba775a9](https://github.com/memori-ai/memori-react/commit/ba775a96dcf56dfa05024d948dcbf1b65d375288))
|
|
392
|
-
* release v8.42.0 ([abdeeb6](https://github.com/memori-ai/memori-react/commit/abdeeb6d1beaf49df5524fdbec6f67b928f5deb3))
|
|
393
|
-
* release v8.43.0 ([5f0d9d0](https://github.com/memori-ai/memori-react/commit/5f0d9d049d3abb8ac38481acca5c7ceeb391ebbc))
|
|
394
|
-
* release v8.44.0 ([1429d47](https://github.com/memori-ai/memori-react/commit/1429d471b38243b52555c032ec5d506b6bd32791))
|
|
395
|
-
* update dompurify ([18bb60e](https://github.com/memori-ai/memori-react/commit/18bb60e1d9660712475e86c3aabf0e344616f658))
|
|
396
|
-
* update dompurify to version 3.4.13 and remove iframe sandbox attribute in ArtifactPreview ([793925b](https://github.com/memori-ai/memori-react/commit/793925bfa6bf8f6786eb5e4a14bf9d2ee9de0ba9))
|
|
397
|
-
|
|
398
|
-
## [8.43.0](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-09-01)
|
|
3
|
+
## [9.0.0-alpha.24](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.23...v9.0.0-alpha.24) (2026-09-10)
|
|
399
4
|
|
|
400
5
|
|
|
401
6
|
### Features
|
|
402
7
|
|
|
403
|
-
*
|
|
404
|
-
* implement artifact update ([90886fe](https://github.com/memori-ai/memori-react/commit/90886feddf8fab88c4bef3ad4ad63acdbd94c435))
|
|
8
|
+
* add release-it configuration for automated versioning and changelog generation ([6a4eee6](https://github.com/memori-ai/memori-react/commit/6a4eee674a9b034f4b8a131d3bdbd5c929596ecc))
|
|
405
9
|
|
|
406
10
|
|
|
407
11
|
### Bug Fixes
|
|
408
12
|
|
|
409
|
-
*
|
|
13
|
+
* upload document skip native file parsing for non-text formats ([8db4328](https://github.com/memori-ai/memori-react/commit/8db432874473bbe83d0b60a0fef5764c745ae632))
|
|
410
14
|
|
|
411
15
|
|
|
412
16
|
### Maintenance
|
|
413
17
|
|
|
414
|
-
* release v8.
|
|
415
|
-
|
|
416
|
-
## [9.0.0-alpha.20](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.19...v9.0.0-alpha.20) (2026-09-01)
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
### Features
|
|
18
|
+
* release v8.45.2 ([73fc1bf](https://github.com/memori-ai/memori-react/commit/73fc1bf06bff091a58bf60ea0cd40272e96a8103))
|
|
19
|
+
* update marked-katex-extension to version 5.1.10 and adjust peer dependencies ([934d15c](https://github.com/memori-ai/memori-react/commit/934d15cc3d5a71a0064d942a8ebed68048ca925d))
|
|
420
20
|
|
|
421
|
-
|
|
422
|
-
* implement mute speaker functionality with TTS audio control ([adc4bf5](https://github.com/memori-ai/memori-react/commit/adc4bf5f5fe044923eb21b203b65c7b3c92dcb25))
|
|
21
|
+
## [8.45.2](https://github.com/memori-ai/memori-react/compare/v8.45.1...v8.45.2) (2026-09-10)
|
|
423
22
|
|
|
424
23
|
|
|
425
24
|
### Bug Fixes
|
|
426
25
|
|
|
427
|
-
*
|
|
428
|
-
* update default layout value to FULLPAGE in MemoriWidget and SettingsDrawer components ([a6e4e85](https://github.com/memori-ai/memori-react/commit/a6e4e850fdaf2eefb68f684154dc4b06945128a4))
|
|
26
|
+
* upload document skip native file parsing for non-text formats ([8db4328](https://github.com/memori-ai/memori-react/commit/8db432874473bbe83d0b60a0fef5764c745ae632))
|
|
429
27
|
|
|
430
|
-
## [
|
|
28
|
+
## [9.0.0-alpha.23](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.22...v9.0.0-alpha.23) (2026-09-09)
|
|
431
29
|
|
|
432
30
|
|
|
433
31
|
### Features
|
|
434
32
|
|
|
435
|
-
*
|
|
436
|
-
* enhance artifact preview by sanitizing content and adding iframe sandboxing ([d7c5f9f](https://github.com/memori-ai/memori-react/commit/d7c5f9ff5b6a5dc6fd53f218c23da759ece5f735))
|
|
437
|
-
* enhance resource URL handling by appending session ID for specific asset paths ([8c2f3dc](https://github.com/memori-ai/memori-react/commit/8c2f3dcf27a7fb3148914f8ec63a115d492b32f3))
|
|
438
|
-
* file conversion migrated over new internal api ([4efeef0](https://github.com/memori-ai/memori-react/commit/4efeef0990537a4cc93dcfd06e31507b6fde33a2))
|
|
439
|
-
* implement artifact update ([90886fe](https://github.com/memori-ai/memori-react/commit/90886feddf8fab88c4bef3ad4ad63acdbd94c435))
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
### Bug Fixes
|
|
443
|
-
|
|
444
|
-
* prevent XSS vulnerability among sanification ([6d2eb29](https://github.com/memori-ai/memori-react/commit/6d2eb2980542bd5c992452a115a9c5920a70f42e))
|
|
445
|
-
* print icon jsx attributes ([75aeecb](https://github.com/memori-ai/memori-react/commit/75aeecb2123ec7c62ae3dc3cf12802863e34807e))
|
|
446
|
-
* update Anthropic status URL to use status.claude.com ([3ebf0aa](https://github.com/memori-ai/memori-react/commit/3ebf0aa1a9de9a231bda070bcba4bd2e808e653b))
|
|
33
|
+
* handle newline for user messages ([1858620](https://github.com/memori-ai/memori-react/commit/18586205c53ca18f97d94be9bac68ca3e8770ac2))
|
|
447
34
|
|
|
448
35
|
|
|
449
36
|
### Changes
|
|
450
37
|
|
|
451
|
-
*
|
|
452
|
-
* improve date handling in AgeVerificationModal ([0e4a54d](https://github.com/memori-ai/memori-react/commit/0e4a54d45b8a0fd149fc9f046f8904c219e49d25))
|
|
38
|
+
* chatbubble addon buttons sm ([47af063](https://github.com/memori-ai/memori-react/commit/47af06344aae10ce41eb1e0ef0a93224965ec9ba))
|
|
453
39
|
|
|
454
40
|
|
|
455
41
|
### Maintenance
|
|
456
42
|
|
|
457
|
-
*
|
|
458
|
-
* release v8.41.6 ([ba775a9](https://github.com/memori-ai/memori-react/commit/ba775a96dcf56dfa05024d948dcbf1b65d375288))
|
|
459
|
-
* release v8.42.0 ([abdeeb6](https://github.com/memori-ai/memori-react/commit/abdeeb6d1beaf49df5524fdbec6f67b928f5deb3))
|
|
460
|
-
* release v8.43.0 ([5f0d9d0](https://github.com/memori-ai/memori-react/commit/5f0d9d049d3abb8ac38481acca5c7ceeb391ebbc))
|
|
461
|
-
* update dompurify ([18bb60e](https://github.com/memori-ai/memori-react/commit/18bb60e1d9660712475e86c3aabf0e344616f658))
|
|
462
|
-
* update dompurify to version 3.4.13 and remove iframe sandbox attribute in ArtifactPreview ([793925b](https://github.com/memori-ai/memori-react/commit/793925bfa6bf8f6786eb5e4a14bf9d2ee9de0ba9))
|
|
463
|
-
|
|
464
|
-
## [8.43.0](https://github.com/memori-ai/memori-react/compare/v8.42.0...v8.43.0) (2026-09-01)
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
### Features
|
|
468
|
-
|
|
469
|
-
* enhance artifact preview by sanitizing content and adding iframe sandboxing ([353ec87](https://github.com/memori-ai/memori-react/commit/353ec87e60634cd8797af728e18257a719931524))
|
|
470
|
-
* file conversion migrated over new internal api ([3991f99](https://github.com/memori-ai/memori-react/commit/3991f99123bece3833be63660351e3705e75bef2))
|
|
471
|
-
|
|
472
|
-
## [9.0.0-alpha.19](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.18...v9.0.0-alpha.19) (2026-08-28)
|
|
473
|
-
|
|
474
|
-
## [9.0.0-alpha.18](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.17...v9.0.0-alpha.18) (2026-08-27)
|
|
475
|
-
|
|
476
|
-
## [9.0.0-alpha.17](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.16...v9.0.0-alpha.17) (2026-08-26)
|
|
477
|
-
|
|
478
|
-
## [9.0.0-alpha.16](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.14...v9.0.0-alpha.16) (2026-08-26)
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
### Changes
|
|
482
|
-
|
|
483
|
-
* simplify theme handling in MemoriWidget and related components ([bdd4315](https://github.com/memori-ai/memori-react/commit/bdd43159c849cd3915181ff8a05da3906cd0cfd8))
|
|
484
|
-
|
|
485
|
-
## [9.0.0-alpha.14](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.13...v9.0.0-alpha.14) (2026-08-25)
|
|
486
|
-
|
|
487
|
-
## [9.0.0-alpha.13](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.12...v9.0.0-alpha.13) (2026-08-25)
|
|
488
|
-
|
|
489
|
-
## [9.0.0-alpha.12](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.11...v9.0.0-alpha.12) (2026-08-24)
|
|
490
|
-
|
|
491
|
-
## [9.0.0-alpha.11](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.10...v9.0.0-alpha.11) (2026-08-24)
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
### Features
|
|
43
|
+
* add bun.lock file and update package.json dependencies ([b50b1a1](https://github.com/memori-ai/memori-react/commit/b50b1a15df94d8bbe547074ceb855dce23fb8970))
|
|
495
44
|
|
|
496
|
-
|
|
497
|
-
* enhance artifact preview by sanitizing content and adding iframe sandboxing ([353ec87](https://github.com/memori-ai/memori-react/commit/353ec87e60634cd8797af728e18257a719931524))
|
|
45
|
+
## [8.45.1](https://github.com/memori-ai/memori-react/compare/v8.45.0...v8.45.1) (2026-09-08)
|
|
498
46
|
|
|
499
47
|
|
|
500
48
|
### Bug Fixes
|
|
501
49
|
|
|
502
|
-
*
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
### Maintenance
|
|
506
|
-
|
|
507
|
-
* update dompurify to version 3.4.13 and remove iframe sandbox attribute in ArtifactPreview ([1f719b9](https://github.com/memori-ai/memori-react/commit/1f719b9bc51da7f1f488426d6f70bbb4d22328df))
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
### Changes
|
|
511
|
-
|
|
512
|
-
* remove AlertViewport from index.tsx and add it to MemoriWidget for improved alert theming ([0869c2a](https://github.com/memori-ai/memori-react/commit/0869c2aa465415f4efcc431a7a135ca0b0357b7a))
|
|
50
|
+
* **nats:** fix baseUrl in get nats config ([8833c0f](https://github.com/memori-ai/memori-react/commit/8833c0fc0cddafb0a74520f6f7ea2174b6058fc1))
|
|
513
51
|
|
|
514
|
-
## [8.
|
|
52
|
+
## [8.45.0](https://github.com/memori-ai/memori-react/compare/v8.44.0...v8.45.0) (2026-09-08)
|
|
515
53
|
|
|
516
54
|
|
|
517
55
|
### Features
|
|
518
56
|
|
|
519
|
-
*
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
### Changes
|
|
523
|
-
|
|
524
|
-
* clean up media URL handling ([a917b60](https://github.com/memori-ai/memori-react/commit/a917b60aa2324a7015d5655d19a0ec9a30c01453))
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
### Maintenance
|
|
528
|
-
|
|
529
|
-
* release v8.42.0 ([b86a073](https://github.com/memori-ai/memori-react/commit/b86a073e43a2b42357855e09f277dca4a2fa60d7))
|
|
530
|
-
|
|
531
|
-
## [8.41.6](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.10...v9.0.0-alpha.11) (2026-07-24)
|
|
57
|
+
* **nats:** implement catch-up mechanism for pending turns and enhance NATS session lifecycle management ([25090a5](https://github.com/memori-ai/memori-react/commit/25090a5e45633ee36652544e6ccb7dfd96d8db65))
|
|
532
58
|
|
|
533
59
|
|
|
534
60
|
### Changes
|
|
535
61
|
|
|
536
|
-
* improve
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
### Maintenance
|
|
540
|
-
|
|
541
|
-
* release v8.41.6 ([5883b46](https://github.com/memori-ai/memori-react/commit/5883b462175a39259b65ae2136d06c7503c95c83))
|
|
542
|
-
* update dompurify ([66aa725](https://github.com/memori-ai/memori-react/commit/66aa72599369c4f34773030bd3121f49b0f9610e))
|
|
543
|
-
|
|
544
|
-
## [8.41.5](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.10...v9.0.0-alpha.11) (2026-07-21)
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
### Bug Fixes
|
|
548
|
-
|
|
549
|
-
* prevent XSS vulnerability among sanification ([2ca6262](https://github.com/memori-ai/memori-react/commit/2ca6262873c8e44c7b6d34c7d69baa920e097b7a))
|
|
550
|
-
* update Anthropic status URL to use status.claude.com ([2b889ac](https://github.com/memori-ai/memori-react/commit/2b889acc318e2c10e7207d546e136ec0f18b4087))
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
### Maintenance
|
|
554
|
-
|
|
555
|
-
* release v8.41.5 ([f73615c](https://github.com/memori-ai/memori-react/commit/f73615c43e56fc608cbee319e8c358182b399278))
|
|
556
|
-
|
|
557
|
-
## [8.41.4](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.10...v9.0.0-alpha.11) (2026-07-15)
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
### Bug Fixes
|
|
561
|
-
|
|
562
|
-
* login token async conditions ([28ec006](https://github.com/memori-ai/memori-react/commit/28ec006c296a2045a775fe6adfdf369f7c135c60))
|
|
563
|
-
* remove '.xls' from office native extensions ([3890334](https://github.com/memori-ai/memori-react/commit/3890334fed4f6f6e7c8fbfbb5afbbe23989ff5f0))
|
|
564
|
-
* unify login token resolution logic in MemoriWidget component ([c84f305](https://github.com/memori-ai/memori-react/commit/c84f305246a4a868fbfadecbf0febb635623fdb5))
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
### Maintenance
|
|
568
|
-
|
|
569
|
-
* release v8.41.4 ([6c92373](https://github.com/memori-ai/memori-react/commit/6c9237368b701126988fd854aca8565236a1b826))
|
|
570
|
-
|
|
571
|
-
## [8.41.3](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.10...v9.0.0-alpha.11) (2026-07-02)
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
### Features
|
|
575
|
-
|
|
576
|
-
* enhance Avatar component with totem layout support and improve animation handling ([78af528](https://github.com/memori-ai/memori-react/commit/78af52838927646bdec47a450097acd0e813904b))
|
|
577
|
-
* extend ChatBubble component to support function cache copy functionality ([333df37](https://github.com/memori-ai/memori-react/commit/333df374b5fca920b46b6eb6a480d6af1e6fbd03))
|
|
578
|
-
* refactor XLSX file handling in UploadDocuments component to improve text extraction ([601418c](https://github.com/memori-ai/memori-react/commit/601418c08e1cb6c94fca0e00fa05cb0acf385b70))
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
### Bug Fixes
|
|
582
|
-
|
|
583
|
-
* update mouth smile blend shape constants ([a44c9ad](https://github.com/memori-ai/memori-react/commit/a44c9ad025a70181857b003875834de28b28578b))
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
### Maintenance
|
|
587
|
-
|
|
588
|
-
* release v8.41.3 ([2ee5fab](https://github.com/memori-ai/memori-react/commit/2ee5fab3bbeaa03d6d11f08f3d141a3d88997630))
|
|
589
|
-
|
|
590
|
-
## [8.41.2](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.10...v9.0.0-alpha.11) (2026-06-25)
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
### Features
|
|
594
|
-
|
|
595
|
-
* add avatar-configurator support in Avatar component and related tests ([1575bd8](https://github.com/memori-ai/memori-react/commit/1575bd8c48b6a15f2790e3a0fb64aaca2f991861))
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
### Maintenance
|
|
599
|
-
|
|
600
|
-
* release v8.41.2 ([b206c77](https://github.com/memori-ai/memori-react/commit/b206c77120f95bfadaa4caf7417838037916a457))
|
|
601
|
-
|
|
602
|
-
## [8.41.1](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.10...v9.0.0-alpha.11) (2026-06-25)
|
|
62
|
+
* **nats:** update NATS configuration to use per-session JWT and improve connection handling ([efc054b](https://github.com/memori-ai/memori-react/commit/efc054ba007839bc2eb6654f58d585b058a20653))
|
|
603
63
|
|
|
604
|
-
|
|
605
|
-
### Features
|
|
606
|
-
|
|
607
|
-
* implement session expiration handling in MemoriWidget and add related tests ([65e96fa](https://github.com/memori-ai/memori-react/commit/65e96fa561462fc60abbcd71ef461cacd7b2b263))
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
### Maintenance
|
|
611
|
-
|
|
612
|
-
* release v8.41.1 ([0e67279](https://github.com/memori-ai/memori-react/commit/0e672799eb19e6b51a939989b8a755aeda11b972))
|
|
613
|
-
|
|
614
|
-
## [8.41.0](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.10...v9.0.0-alpha.11) (2026-06-22)
|
|
64
|
+
## [9.0.0-alpha.22](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.21...v9.0.0-alpha.22) (2026-09-07)
|
|
615
65
|
|
|
616
66
|
|
|
617
67
|
### Features
|
|
618
68
|
|
|
619
|
-
*
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
### Bug Fixes
|
|
623
|
-
|
|
624
|
-
* update NATS subject default value to include session ID format ([dc0e7ea](https://github.com/memori-ai/memori-react/commit/dc0e7ea0a1c0eba5fb8f834df3ef55d598e05166))
|
|
69
|
+
* align widget with @memori.ai/ui 1.17 overlay and token contract ([84b623b](https://github.com/memori-ai/memori-react/commit/84b623b81096efec4b56be5c6d454ec1829aae69))
|
|
70
|
+
* enhance Auth component with error handling and styling improvements ([a7449bf](https://github.com/memori-ai/memori-react/commit/a7449bfab3a83d4dfb8f2332a42095bc5bbf1182))
|
|
625
71
|
|
|
626
72
|
|
|
627
73
|
### Maintenance
|
|
628
74
|
|
|
629
|
-
*
|
|
630
|
-
|
|
631
|
-
## [8.40.4](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.10...v9.0.0-alpha.11) (2026-06-19)
|
|
75
|
+
* reorganize Storybook around layouts and live demos ([a1973d0](https://github.com/memori-ai/memori-react/commit/a1973d0bc31be13beccdd351edbaa29881b09c66))
|
|
632
76
|
|
|
633
77
|
|
|
634
78
|
### Changes
|
|
635
79
|
|
|
636
|
-
*
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
### Maintenance
|
|
640
|
-
|
|
641
|
-
* release v8.40.4 ([749ca2b](https://github.com/memori-ai/memori-react/commit/749ca2b2afe7e7f36fe867836f155ed0cb8a05bd))
|
|
642
|
-
* update dompurify dependency to version 3.4.11 ([6e94db8](https://github.com/memori-ai/memori-react/commit/6e94db8611fb2edb592519406e0622d6bff5a3ad))
|
|
80
|
+
* remove unused story components and clean up Storybook files ([a0a983d](https://github.com/memori-ai/memori-react/commit/a0a983d000c897cdbeb036a151041fbf0ce16d4b))
|
|
643
81
|
|
|
644
|
-
## [
|
|
82
|
+
## [9.0.0-alpha.21](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.20...v9.0.0-alpha.21) (2026-09-02)
|
|
645
83
|
|
|
646
84
|
|
|
647
|
-
###
|
|
85
|
+
### Features
|
|
648
86
|
|
|
649
|
-
*
|
|
87
|
+
* add document count display in FilePreview component and enhance modal styles ([709c5f0](https://github.com/memori-ai/memori-react/commit/709c5f0d9d206c811e0aabe415586cae29abbcd2))
|
|
88
|
+
* add isMaleExcludedAnimation function and corresponding tests ([5d13dfd](https://github.com/memori-ai/memori-react/commit/5d13dfdce63b5d9ff6fc7f087065aa804b016ad4))
|
|
89
|
+
* enhance StartPanel with collapsible description and improve CSS for preview list ([363b34f](https://github.com/memori-ai/memori-react/commit/363b34fc79ff7ca4025b0a77fa1c25f31a7edbde))
|
|
650
90
|
|
|
651
91
|
|
|
652
|
-
###
|
|
92
|
+
### Changes
|
|
653
93
|
|
|
654
|
-
*
|
|
94
|
+
* simplify dropdown implementation in ArtifactActions and CopyButtonWithDropdown components ([345cdfc](https://github.com/memori-ai/memori-react/commit/345cdfcfb08c83d3f3f97f29e18842b3bd519ddc))
|
|
655
95
|
|
|
656
|
-
## [8.
|
|
96
|
+
## [8.44.0](https://github.com/memori-ai/memori-react/compare/v8.43.0...v8.44.0) (2026-09-02)
|
|
657
97
|
|
|
658
98
|
|
|
659
99
|
### Features
|
|
660
100
|
|
|
661
|
-
*
|
|
101
|
+
* enhance artifact handling with improved update detection ([e4bf613](https://github.com/memori-ai/memori-react/commit/e4bf61357d4905312f17a0bedfa7498ea225d8b8))
|
|
102
|
+
* enhance artifact preview by sanitizing content and adding iframe sandboxing ([d7c5f9f](https://github.com/memori-ai/memori-react/commit/d7c5f9ff5b6a5dc6fd53f218c23da759ece5f735))
|
|
103
|
+
* enhance resource URL handling by appending session ID for specific asset paths ([8c2f3dc](https://github.com/memori-ai/memori-react/commit/8c2f3dcf27a7fb3148914f8ec63a115d492b32f3))
|
|
104
|
+
* file conversion migrated over new internal api ([4efeef0](https://github.com/memori-ai/memori-react/commit/4efeef0990537a4cc93dcfd06e31507b6fde33a2))
|
|
105
|
+
* implement artifact update ([90886fe](https://github.com/memori-ai/memori-react/commit/90886feddf8fab88c4bef3ad4ad63acdbd94c435))
|
|
662
106
|
|
|
663
107
|
|
|
664
108
|
### Bug Fixes
|
|
665
109
|
|
|
666
|
-
*
|
|
110
|
+
* prevent XSS vulnerability among sanification ([6d2eb29](https://github.com/memori-ai/memori-react/commit/6d2eb2980542bd5c992452a115a9c5920a70f42e))
|
|
111
|
+
* print icon jsx attributes ([75aeecb](https://github.com/memori-ai/memori-react/commit/75aeecb2123ec7c62ae3dc3cf12802863e34807e))
|
|
112
|
+
* update Anthropic status URL to use status.claude.com ([3ebf0aa](https://github.com/memori-ai/memori-react/commit/3ebf0aa1a9de9a231bda070bcba4bd2e808e653b))
|
|
667
113
|
|
|
668
114
|
|
|
669
115
|
### Changes
|
|
670
116
|
|
|
671
|
-
*
|
|
117
|
+
* clean up media URL handling ([d98986d](https://github.com/memori-ai/memori-react/commit/d98986d5b334fe36622a05de804ade6969c9d3ef))
|
|
118
|
+
* improve date handling in AgeVerificationModal ([0e4a54d](https://github.com/memori-ai/memori-react/commit/0e4a54d45b8a0fd149fc9f046f8904c219e49d25))
|
|
672
119
|
|
|
673
120
|
|
|
674
121
|
### Maintenance
|
|
675
122
|
|
|
676
|
-
* release v8.
|
|
123
|
+
* release v8.41.5 ([4576a98](https://github.com/memori-ai/memori-react/commit/4576a985a20d6cf8e305df5aedfaa407dfd2068a))
|
|
124
|
+
* release v8.41.6 ([ba775a9](https://github.com/memori-ai/memori-react/commit/ba775a96dcf56dfa05024d948dcbf1b65d375288))
|
|
125
|
+
* release v8.42.0 ([abdeeb6](https://github.com/memori-ai/memori-react/commit/abdeeb6d1beaf49df5524fdbec6f67b928f5deb3))
|
|
126
|
+
* release v8.43.0 ([5f0d9d0](https://github.com/memori-ai/memori-react/commit/5f0d9d049d3abb8ac38481acca5c7ceeb391ebbc))
|
|
127
|
+
* update dompurify ([18bb60e](https://github.com/memori-ai/memori-react/commit/18bb60e1d9660712475e86c3aabf0e344616f658))
|
|
128
|
+
* update dompurify to version 3.4.13 and remove iframe sandbox attribute in ArtifactPreview ([793925b](https://github.com/memori-ai/memori-react/commit/793925bfa6bf8f6786eb5e4a14bf9d2ee9de0ba9))
|
|
677
129
|
|
|
678
|
-
## [
|
|
130
|
+
## [9.0.0-alpha.20](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.19...v9.0.0-alpha.20) (2026-09-01)
|
|
679
131
|
|
|
680
132
|
|
|
681
133
|
### Features
|
|
682
134
|
|
|
683
|
-
*
|
|
135
|
+
* file conversion migrated over new internal api ([3991f99](https://github.com/memori-ai/memori-react/commit/3991f99123bece3833be63660351e3705e75bef2))
|
|
136
|
+
* implement mute speaker functionality with TTS audio control ([adc4bf5](https://github.com/memori-ai/memori-react/commit/adc4bf5f5fe044923eb21b203b65c7b3c92dcb25))
|
|
684
137
|
|
|
685
138
|
|
|
686
|
-
###
|
|
139
|
+
### Bug Fixes
|
|
687
140
|
|
|
688
|
-
*
|
|
141
|
+
* print icon jsx attributes ([cb04fdb](https://github.com/memori-ai/memori-react/commit/cb04fdb23061cdc97cafae88e786dafcbf6b1d67))
|
|
142
|
+
* update default layout value to FULLPAGE in MemoriWidget and SettingsDrawer components ([a6e4e85](https://github.com/memori-ai/memori-react/commit/a6e4e850fdaf2eefb68f684154dc4b06945128a4))
|
|
689
143
|
|
|
690
|
-
## [8.
|
|
144
|
+
## [8.43.0](https://github.com/memori-ai/memori-react/compare/v8.42.0...v8.43.0) (2026-09-01)
|
|
691
145
|
|
|
692
146
|
|
|
693
147
|
### Features
|
|
694
148
|
|
|
695
|
-
* enhance
|
|
696
|
-
*
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
### Maintenance
|
|
700
|
-
|
|
701
|
-
* refactor MemoriWidget for improved NATS event handling ([7d18afa](https://github.com/memori-ai/memori-react/commit/7d18afa28d4f6cc24b3907d34bd34732e2a720c1))
|
|
702
|
-
* release v8.40.0 ([1924348](https://github.com/memori-ai/memori-react/commit/1924348eb672b3033c20dc95dd274dc5da57caff))
|
|
703
|
-
|
|
704
|
-
## [8.39.0](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.10...v9.0.0-alpha.11) (2026-06-12)
|
|
149
|
+
* enhance artifact preview by sanitizing content and adding iframe sandboxing ([353ec87](https://github.com/memori-ai/memori-react/commit/353ec87e60634cd8797af728e18257a719931524))
|
|
150
|
+
* file conversion migrated over new internal api ([3991f99](https://github.com/memori-ai/memori-react/commit/3991f99123bece3833be63660351e3705e75bef2))
|
|
705
151
|
|
|
706
152
|
|
|
707
|
-
###
|
|
153
|
+
### Bug Fixes
|
|
708
154
|
|
|
709
|
-
*
|
|
155
|
+
* print icon jsx attributes ([cb04fdb](https://github.com/memori-ai/memori-react/commit/cb04fdb23061cdc97cafae88e786dafcbf6b1d67))
|
|
710
156
|
|
|
711
157
|
|
|
712
158
|
### Maintenance
|
|
713
159
|
|
|
714
|
-
*
|
|
715
|
-
|
|
716
|
-
## [8.38.8](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.10...v9.0.0-alpha.11) (2026-06-10)
|
|
160
|
+
* update dompurify to version 3.4.13 and remove iframe sandbox attribute in ArtifactPreview ([1f719b9](https://github.com/memori-ai/memori-react/commit/1f719b9bc51da7f1f488426d6f70bbb4d22328df))
|
|
717
161
|
|
|
162
|
+
## [9.0.0-alpha.19](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.18...v9.0.0-alpha.19) (2026-08-28)
|
|
718
163
|
|
|
719
|
-
|
|
164
|
+
## [9.0.0-alpha.18](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.17...v9.0.0-alpha.18) (2026-08-27)
|
|
720
165
|
|
|
721
|
-
|
|
166
|
+
## [9.0.0-alpha.17](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.16...v9.0.0-alpha.17) (2026-08-26)
|
|
722
167
|
|
|
168
|
+
## [9.0.0-alpha.16](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.14...v9.0.0-alpha.16) (2026-08-26)
|
|
723
169
|
|
|
724
|
-
### Maintenance
|
|
725
170
|
|
|
726
|
-
|
|
171
|
+
### Changes
|
|
727
172
|
|
|
728
|
-
|
|
173
|
+
* simplify theme handling in MemoriWidget and related components ([bdd4315](https://github.com/memori-ai/memori-react/commit/bdd43159c849cd3915181ff8a05da3906cd0cfd8))
|
|
729
174
|
|
|
175
|
+
## [9.0.0-alpha.14](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.13...v9.0.0-alpha.14) (2026-08-25)
|
|
730
176
|
|
|
731
|
-
|
|
177
|
+
## [9.0.0-alpha.13](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.12...v9.0.0-alpha.13) (2026-08-25)
|
|
732
178
|
|
|
733
|
-
|
|
179
|
+
## [9.0.0-alpha.12](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.11...v9.0.0-alpha.12) (2026-08-24)
|
|
734
180
|
|
|
181
|
+
## [9.0.0-alpha.11](https://github.com/memori-ai/memori-react/compare/v9.0.0-alpha.10...v9.0.0-alpha.11) (2026-08-24)
|
|
735
182
|
|
|
736
|
-
### Maintenance
|
|
737
183
|
|
|
738
|
-
|
|
184
|
+
### Features
|
|
739
185
|
|
|
740
|
-
|
|
186
|
+
* add support for global background images in chat layout and improved responsivness ([2dfe436](https://github.com/memori-ai/memori-react/commit/2dfe43646e044ac8cec896c9fae8a2675d4897a5))
|
|
187
|
+
* enhance artifact preview by sanitizing content and adding iframe sandboxing ([353ec87](https://github.com/memori-ai/memori-react/commit/353ec87e60634cd8797af728e18257a719931524))
|
|
741
188
|
|
|
742
189
|
|
|
743
|
-
###
|
|
190
|
+
### Bug Fixes
|
|
744
191
|
|
|
745
|
-
*
|
|
192
|
+
* update layout storybook configuration with new memoriName and memoriID, adjust layout type and enable showSettings ([ccc98d3](https://github.com/memori-ai/memori-react/commit/ccc98d31244156d515ff60d5f57fb5fd6b273e9e))
|
|
746
193
|
|
|
747
194
|
|
|
748
|
-
###
|
|
195
|
+
### Maintenance
|
|
749
196
|
|
|
750
|
-
*
|
|
197
|
+
* update dompurify to version 3.4.13 and remove iframe sandbox attribute in ArtifactPreview ([1f719b9](https://github.com/memori-ai/memori-react/commit/1f719b9bc51da7f1f488426d6f70bbb4d22328df))
|
|
751
198
|
|
|
752
199
|
|
|
753
|
-
###
|
|
200
|
+
### Changes
|
|
754
201
|
|
|
755
|
-
*
|
|
202
|
+
* remove AlertViewport from index.tsx and add it to MemoriWidget for improved alert theming ([0869c2a](https://github.com/memori-ai/memori-react/commit/0869c2aa465415f4efcc431a7a135ca0b0357b7a))
|
|
756
203
|
|
|
757
204
|
## [9.0.0-alpha.10](https://github.com/memori-ai/memori-react/compare/v8.38.5...v9.0.0-alpha.10) (2026-08-19)
|
|
758
205
|
|
|
@@ -826,7 +273,7 @@
|
|
|
826
273
|
* improve CSS styling for Blob component ([92bed78](https://github.com/memori-ai/memori-react/commit/92bed7807d0762c30615a571d56f36b958632a0e))
|
|
827
274
|
* improve file preview interactions ([5eda278](https://github.com/memori-ai/memori-react/commit/5eda27835e0a70a4b30a0812e8866dc14d50822c))
|
|
828
275
|
* improve mobile chat and session panel UX ([09c22cc](https://github.com/memori-ai/memori-react/commit/09c22cc9fc4dc4372f8a738573ac0e0ff071873b))
|
|
829
|
-
* integrate
|
|
276
|
+
* integrate @memori.ai/ui components ([82e4d9f](https://github.com/memori-ai/memori-react/commit/82e4d9f348eabd468071fedef72941d596a11623))
|
|
830
277
|
* integrate alert system in ChatHistoryDrawer ([51775e3](https://github.com/memori-ai/memori-react/commit/51775e3def6b07caa2095ef23f1af88c902277da))
|
|
831
278
|
* integrate artifact drawer column into chat layouts ([78d389d](https://github.com/memori-ai/memori-react/commit/78d389dabe3437652243d1e9d62f1068c7023919))
|
|
832
279
|
* integrate JetStream support in NATS configuration and session handling ([4a3a0c8](https://github.com/memori-ai/memori-react/commit/4a3a0c815a5a4887ddcf64890c42eb35dc2d4a52))
|
|
@@ -844,9 +291,9 @@
|
|
|
844
291
|
* **ui:** improve MobileSessionPanel button styles and update translations for consistency ([8fa0078](https://github.com/memori-ai/memori-react/commit/8fa007820ed4d0b5fd5aa39c088c36ba2ab7295f))
|
|
845
292
|
* **ui:** refine fullpage/zoomed layouts and storybook setup ([470d059](https://github.com/memori-ai/memori-react/commit/470d059b43b43d012c63d7d1796a595a7fdb353c))
|
|
846
293
|
* **ui:** refresh header, layouts, powered-by, and i18n ([1c3c8e2](https://github.com/memori-ai/memori-react/commit/1c3c8e2d8c697ccf64749eb27a1d6a96ab375fa4))
|
|
847
|
-
* **ui:** update
|
|
294
|
+
* **ui:** update @memori.ai/ui to version 1.14.0 and enhance popover trigger button active states ([637d944](https://github.com/memori-ai/memori-react/commit/637d9444f45d66380bb32d1ab875f667cb9ab04a))
|
|
848
295
|
* **ui:** update styling for header and chat components, enhance position popover functionality ([bc7cdba](https://github.com/memori-ai/memori-react/commit/bc7cdba1361eb3a0707475d58a5d38150aa8a32d))
|
|
849
|
-
* update
|
|
296
|
+
* update @memori.ai/ui ([e8ca002](https://github.com/memori-ai/memori-react/commit/e8ca002a61bbfb8054a43d5db6abafa81fc3eb1a))
|
|
850
297
|
* update chat inputs styles over all layouts ([9657d05](https://github.com/memori-ai/memori-react/commit/9657d054c76385c6b7a617d8a87db9974a882b84))
|
|
851
298
|
* update ChatConsumptionDropdown to improve AI usage display and improved responsivness ([0e6b189](https://github.com/memori-ai/memori-react/commit/0e6b1891161b97260adafc0269811dc264a393c3))
|
|
852
299
|
* update Header component to use localized strings for total chat consumption ([87f21c5](https://github.com/memori-ai/memori-react/commit/87f21c5cc5eed59babbe32c322bb9033ba280fee))
|
|
@@ -897,7 +344,7 @@
|
|
|
897
344
|
* clean up HiddenChat component by removing header prop component ([c9d5559](https://github.com/memori-ai/memori-react/commit/c9d5559795b66401c92eda97b75571528bafef05))
|
|
898
345
|
* comment out unused CSS rules in chat layout for clarity ([69ad366](https://github.com/memori-ai/memori-react/commit/69ad3662e8d39fcb52c5860cb51b287f1710cb69))
|
|
899
346
|
* comment out unused CSS rules in fullpage layout for clarity ([63e55ea](https://github.com/memori-ai/memori-react/commit/63e55eab2dec526ed58d6f4e32a13763bb038d47))
|
|
900
|
-
* **components:** adapt to
|
|
347
|
+
* **components:** adapt to @memori.ai/ui 1.5.2 ([e7a24ea](https://github.com/memori-ai/memori-react/commit/e7a24ea3109bc77c742bebc5d79c047a1c3323e5))
|
|
901
348
|
* enhance credit check logic in MemoriWidget to conditionally start session ([30d3fdb](https://github.com/memori-ai/memori-react/commit/30d3fdb8a2c1c4606306416bc408c102cfd62bb0))
|
|
902
349
|
* enhance CSS variables and styling for Artifact components ([cbf4087](https://github.com/memori-ai/memori-react/commit/cbf4087616b2a9b4d3d11dea741751f141d1d2c0))
|
|
903
350
|
* improve code readability and formatting in MemoriWidget component ([0fee720](https://github.com/memori-ai/memori-react/commit/0fee720b5e79ccea2e745dc97f4c756d25317b45))
|
|
@@ -940,7 +387,7 @@
|
|
|
940
387
|
* bump package version to 9.0.0-alpha.7 ([c72b769](https://github.com/memori-ai/memori-react/commit/c72b7691624f52acccd7f2e26cbe658027e102b5))
|
|
941
388
|
* bump package version to 9.0.0-alpha.8 ([44526b2](https://github.com/memori-ai/memori-react/commit/44526b2942fde0660f3ca56d209e0352eb81179a))
|
|
942
389
|
* bump package version to 9.0.0-alpha.9 ([0be7121](https://github.com/memori-ai/memori-react/commit/0be7121f824c6392d040eea7f0e244c2c785212c))
|
|
943
|
-
* **deps:** bump
|
|
390
|
+
* **deps:** bump @memori.ai/ui to ^1.5.2 ([de74299](https://github.com/memori-ai/memori-react/commit/de74299807a0d0a295855240d82d7828b41097b3))
|
|
944
391
|
* **deps:** update dependencies ([729688f](https://github.com/memori-ai/memori-react/commit/729688f6c0b29079e9d594bc006f3f3928c0cbc9))
|
|
945
392
|
* enhance build process with PostCSS integration and add CSS build scripts ([0d3af95](https://github.com/memori-ai/memori-react/commit/0d3af959b99f123b5a392f1f017a044c46760b88))
|
|
946
393
|
* refactor MemoriWidget to utilize MemoriUIProvider for improved theme management ([1cff0e9](https://github.com/memori-ai/memori-react/commit/1cff0e9266eeeef48123a9af1bf5eea6ca642b2c))
|
|
@@ -975,16 +422,16 @@
|
|
|
975
422
|
* release v9.0.0-alpha.9 ([a5119f8](https://github.com/memori-ai/memori-react/commit/a5119f8a8f596540c3e364b9b550e7f1694d0413))
|
|
976
423
|
* remove unused dependencies from package.json ([5ea6c79](https://github.com/memori-ai/memori-react/commit/5ea6c795dc104772f572cbbadc8fedb07ef42666))
|
|
977
424
|
* **storybook:** add theme decorator and sync with background control ([4787d5b](https://github.com/memori-ai/memori-react/commit/4787d5b915dc74ad1a0867ba2846789a946145dc))
|
|
978
|
-
* update
|
|
979
|
-
* update
|
|
980
|
-
* update
|
|
981
|
-
* update
|
|
982
|
-
* update
|
|
983
|
-
* update
|
|
984
|
-
* update
|
|
985
|
-
* update
|
|
986
|
-
* update
|
|
987
|
-
* update
|
|
425
|
+
* update @memori.ai/ui ([3177beb](https://github.com/memori-ai/memori-react/commit/3177bebc8e212de5fb20f5f82a6473fdb9d2ae48))
|
|
426
|
+
* update @memori.ai/ui ([800908c](https://github.com/memori-ai/memori-react/commit/800908cb78a2bb82d7fe3c4780420645b8df05a0))
|
|
427
|
+
* update @memori.ai/ui ([bf447f1](https://github.com/memori-ai/memori-react/commit/bf447f199f2281c557e3fb66bc36edae894df100))
|
|
428
|
+
* update @memori.ai/ui dependency ([9f7a967](https://github.com/memori-ai/memori-react/commit/9f7a9675576bb090da1700756328414413889a4e))
|
|
429
|
+
* update @memori.ai/ui dependency ([42ad4c6](https://github.com/memori-ai/memori-react/commit/42ad4c6a216f9e2881c4117fdf60c05a399d9521))
|
|
430
|
+
* update @memori.ai/ui dependency ([a310624](https://github.com/memori-ai/memori-react/commit/a310624b1e26e75dbfc5b4ef18058baab3e33fac))
|
|
431
|
+
* update @memori.ai/ui dependency ([892be2d](https://github.com/memori-ai/memori-react/commit/892be2d0deb977cd3664ffab475a60a7ae3763e6))
|
|
432
|
+
* update @memori.ai/ui to and adjust theme colors in Storybook preview ([a0d7116](https://github.com/memori-ai/memori-react/commit/a0d7116dda3705efe0ea6078f362af6f8e99e9ca))
|
|
433
|
+
* update @memori.ai/ui to version 1.14.1 ([65f4b10](https://github.com/memori-ai/memori-react/commit/65f4b10fc6afd16a9e5adc1adcfcb18aace8448a))
|
|
434
|
+
* update @memori.ai/ui to version 1.16.0 and adjust FullPage and ZoomedFullBody styles ([1ff5a22](https://github.com/memori-ai/memori-react/commit/1ff5a2298a8b1ff5e836092869679e05b629c824))
|
|
988
435
|
* update deps following npm audit ([f7a109f](https://github.com/memori-ai/memori-react/commit/f7a109f7055c37d8b5190a3f5148e428c140625a))
|
|
989
436
|
* update dompurify ([e9aad6e](https://github.com/memori-ai/memori-react/commit/e9aad6e9d6d25bad597cda1078a988737698819b))
|
|
990
437
|
* update dompurify dependency to version 3.4.11 ([da25688](https://github.com/memori-ai/memori-react/commit/da256880de277d939a2ca41293300a184f8e53e7))
|
|
@@ -1026,6 +473,23 @@
|
|
|
1026
473
|
|
|
1027
474
|
* clean up HiddenChat component by removing header prop component ([c9d5559](https://github.com/memori-ai/memori-react/commit/c9d5559795b66401c92eda97b75571528bafef05))
|
|
1028
475
|
|
|
476
|
+
## [8.42.0](https://github.com/memori-ai/memori-react/compare/v8.41.6...v8.42.0) (2026-08-03)
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
### Features
|
|
480
|
+
|
|
481
|
+
* enhance resource URL handling by appending session ID for specific asset paths ([29fbc31](https://github.com/memori-ai/memori-react/commit/29fbc31769b82d3c6d4a1ca9ee2fd3d357f6bafd))
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
### Changes
|
|
485
|
+
|
|
486
|
+
* clean up media URL handling ([a917b60](https://github.com/memori-ai/memori-react/commit/a917b60aa2324a7015d5655d19a0ec9a30c01453))
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
### Maintenance
|
|
490
|
+
|
|
491
|
+
* release v8.42.0 ([b86a073](https://github.com/memori-ai/memori-react/commit/b86a073e43a2b42357855e09f277dca4a2fa60d7))
|
|
492
|
+
|
|
1029
493
|
## [9.0.0-alpha.7](https://github.com/memori-ai/memori-react/compare/alpha/rc-v9.0.0-alpha.6...alpha/rc-v9.0.0-alpha.7) (2026-07-31)
|
|
1030
494
|
|
|
1031
495
|
|
|
@@ -1083,6 +547,164 @@
|
|
|
1083
547
|
* remove unused NATS timeout logic from MemoriWidget ([4d2a451](https://github.com/memori-ai/memori-react/commit/4d2a451833860ddfa5325751c531a8d209f33adb))
|
|
1084
548
|
* replace file extension extraction with document badge labels ([13afcdd](https://github.com/memori-ai/memori-react/commit/13afcdd3b955aba35a2085305f0c23985e277727))
|
|
1085
549
|
|
|
550
|
+
## [8.41.6](https://github.com/memori-ai/memori-react/compare/v8.41.5...v8.41.6) (2026-07-24)
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
### Maintenance
|
|
554
|
+
|
|
555
|
+
* update dompurify ([66aa725](https://github.com/memori-ai/memori-react/commit/66aa72599369c4f34773030bd3121f49b0f9610e))
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
### Changes
|
|
559
|
+
|
|
560
|
+
* improve date handling in AgeVerificationModal ([76317ea](https://github.com/memori-ai/memori-react/commit/76317ea22c0f5a07f956341d772a6e4719822f8e))
|
|
561
|
+
|
|
562
|
+
## [8.41.5](https://github.com/memori-ai/memori-react/compare/v8.41.4...v8.41.5) (2026-07-21)
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
### Bug Fixes
|
|
566
|
+
|
|
567
|
+
* prevent XSS vulnerability among sanification ([2ca6262](https://github.com/memori-ai/memori-react/commit/2ca6262873c8e44c7b6d34c7d69baa920e097b7a))
|
|
568
|
+
* update Anthropic status URL to use status.claude.com ([2b889ac](https://github.com/memori-ai/memori-react/commit/2b889acc318e2c10e7207d546e136ec0f18b4087))
|
|
569
|
+
|
|
570
|
+
## [8.41.4](https://github.com/memori-ai/memori-react/compare/v8.41.3...v8.41.4) (2026-07-15)
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
### Bug Fixes
|
|
574
|
+
|
|
575
|
+
* login token async conditions ([28ec006](https://github.com/memori-ai/memori-react/commit/28ec006c296a2045a775fe6adfdf369f7c135c60))
|
|
576
|
+
* remove '.xls' from office native extensions ([3890334](https://github.com/memori-ai/memori-react/commit/3890334fed4f6f6e7c8fbfbb5afbbe23989ff5f0))
|
|
577
|
+
* unify login token resolution logic in MemoriWidget component ([c84f305](https://github.com/memori-ai/memori-react/commit/c84f305246a4a868fbfadecbf0febb635623fdb5))
|
|
578
|
+
|
|
579
|
+
## [8.41.3](https://github.com/memori-ai/memori-react/compare/v8.41.2...v8.41.3) (2026-07-02)
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
### Features
|
|
583
|
+
|
|
584
|
+
* enhance Avatar component with totem layout support and improve animation handling ([78af528](https://github.com/memori-ai/memori-react/commit/78af52838927646bdec47a450097acd0e813904b))
|
|
585
|
+
* extend ChatBubble component to support function cache copy functionality ([333df37](https://github.com/memori-ai/memori-react/commit/333df374b5fca920b46b6eb6a480d6af1e6fbd03))
|
|
586
|
+
* refactor XLSX file handling in UploadDocuments component to improve text extraction ([601418c](https://github.com/memori-ai/memori-react/commit/601418c08e1cb6c94fca0e00fa05cb0acf385b70))
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
### Bug Fixes
|
|
590
|
+
|
|
591
|
+
* update mouth smile blend shape constants ([a44c9ad](https://github.com/memori-ai/memori-react/commit/a44c9ad025a70181857b003875834de28b28578b))
|
|
592
|
+
|
|
593
|
+
## [8.41.2](https://github.com/memori-ai/memori-react/compare/v8.41.1...v8.41.2) (2026-06-25)
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
### Features
|
|
597
|
+
|
|
598
|
+
* add avatar-configurator support in Avatar component and related tests ([1575bd8](https://github.com/memori-ai/memori-react/commit/1575bd8c48b6a15f2790e3a0fb64aaca2f991861))
|
|
599
|
+
|
|
600
|
+
## [8.41.1](https://github.com/memori-ai/memori-react/compare/v8.41.0...v8.41.1) (2026-06-25)
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
### Features
|
|
604
|
+
|
|
605
|
+
* implement session expiration handling in MemoriWidget and add related tests ([65e96fa](https://github.com/memori-ai/memori-react/commit/65e96fa561462fc60abbcd71ef461cacd7b2b263))
|
|
606
|
+
|
|
607
|
+
## [8.41.0](https://github.com/memori-ai/memori-react/compare/v8.40.4...v8.41.0) (2026-06-22)
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
### Features
|
|
611
|
+
|
|
612
|
+
* integrate JetStream support in NATS configuration and session handling ([d133c95](https://github.com/memori-ai/memori-react/commit/d133c95fc9385a7e06875dadcc6ea9be444f3868))
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
### Bug Fixes
|
|
616
|
+
|
|
617
|
+
* update NATS subject default value to include session ID format ([dc0e7ea](https://github.com/memori-ai/memori-react/commit/dc0e7ea0a1c0eba5fb8f834df3ef55d598e05166))
|
|
618
|
+
|
|
619
|
+
## [8.40.4](https://github.com/memori-ai/memori-react/compare/v8.40.3...v8.40.4) (2026-06-19)
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
### Changes
|
|
623
|
+
|
|
624
|
+
* enhance credit check logic in MemoriWidget to conditionally start session ([738b308](https://github.com/memori-ai/memori-react/commit/738b308841f0759923c303bce8aa4c3835b785be))
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
### Maintenance
|
|
628
|
+
|
|
629
|
+
* update dompurify dependency to version 3.4.11 ([6e94db8](https://github.com/memori-ai/memori-react/commit/6e94db8611fb2edb592519406e0622d6bff5a3ad))
|
|
630
|
+
|
|
631
|
+
## [8.40.3](https://github.com/memori-ai/memori-react/compare/v8.40.2...v8.40.3) (2026-06-17)
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
### Changes
|
|
635
|
+
|
|
636
|
+
* remove unused NATS timeout logic from MemoriWidget ([895f1b1](https://github.com/memori-ai/memori-react/commit/895f1b133ff2efa59444d7306d6714167a03d0e3))
|
|
637
|
+
|
|
638
|
+
## [8.40.2](https://github.com/memori-ai/memori-react/compare/v8.40.1...v8.40.2) (2026-06-17)
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
### Features
|
|
642
|
+
|
|
643
|
+
* add unwrapDialogState function to handle nested currentState in NATS responses ([a6fcafc](https://github.com/memori-ai/memori-react/commit/a6fcafc7f000946baac6bb12e5f37972a956e828))
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
### Bug Fixes
|
|
647
|
+
|
|
648
|
+
* reset clickedStart state in multiple scenarios within MemoriWidget ([a34ed85](https://github.com/memori-ai/memori-react/commit/a34ed853504a107b1096c8e82be64b97cdb30ede))
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
### Changes
|
|
652
|
+
|
|
653
|
+
* improve error logging and clean up debug statements in MemoriWidget ([372b09a](https://github.com/memori-ai/memori-react/commit/372b09ac584aab552f5f1a7cde6258fef2a5493c))
|
|
654
|
+
|
|
655
|
+
## [8.40.1](https://github.com/memori-ai/memori-react/compare/v8.40.0...v8.40.1) (2026-06-17)
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
### Features
|
|
659
|
+
|
|
660
|
+
* add session management improvements in MemoriWidget ([a055776](https://github.com/memori-ai/memori-react/commit/a05577666d53c5ee8becf51954f6abdf9f2bd864))
|
|
661
|
+
|
|
662
|
+
## [8.40.0](https://github.com/memori-ai/memori-react/compare/v8.39.0...v8.40.0) (2026-06-17)
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
### Features
|
|
666
|
+
|
|
667
|
+
* enhance user identification for credit verification by adding ownerUserName ([540e50a](https://github.com/memori-ai/memori-react/commit/540e50aa7b913122e09d988a21701635342c1fe3))
|
|
668
|
+
* integrate NATS support for real-time event handling in MemoriWidget ([2fc0a8d](https://github.com/memori-ai/memori-react/commit/2fc0a8dcec8d6a04d89a7b014ca353fd478e847d))
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
### Maintenance
|
|
672
|
+
|
|
673
|
+
* refactor MemoriWidget for improved NATS event handling ([7d18afa](https://github.com/memori-ai/memori-react/commit/7d18afa28d4f6cc24b3907d34bd34732e2a720c1))
|
|
674
|
+
|
|
675
|
+
## [8.39.0](https://github.com/memori-ai/memori-react/compare/v8.38.8...v8.39.0) (2026-06-12)
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
### Features
|
|
679
|
+
|
|
680
|
+
* implement credit verification and UI updates ([50fd797](https://github.com/memori-ai/memori-react/commit/50fd7976d24a67067f92087f499f5d46d6db70de))
|
|
681
|
+
|
|
682
|
+
## [8.38.8](https://github.com/memori-ai/memori-react/compare/v8.38.7...v8.38.8) (2026-06-10)
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
### Features
|
|
686
|
+
|
|
687
|
+
* add support for DOTX file format in file preview and media components ([4179c11](https://github.com/memori-ai/memori-react/commit/4179c11516dae755a1cd2d756c63dedb12174031))
|
|
688
|
+
|
|
689
|
+
## [8.38.7](https://github.com/memori-ai/memori-react/compare/v8.38.6...v8.38.7) (2026-06-08)
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
### Bug Fixes
|
|
693
|
+
|
|
694
|
+
* upload docx media type card opens up a link instead of a modal ([475b440](https://github.com/memori-ai/memori-react/commit/475b440aaa188abc7a3a637626e550f2fcd2318b))
|
|
695
|
+
|
|
696
|
+
## [8.38.6](https://github.com/memori-ai/memori-react/compare/v8.38.5...v8.38.6) (2026-06-08)
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
### Features
|
|
700
|
+
|
|
701
|
+
* add support for Office native file formats in file upload and preview components ([c3129ee](https://github.com/memori-ai/memori-react/commit/c3129ee401829090e7576003861f6727770449a7))
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
### Changes
|
|
705
|
+
|
|
706
|
+
* replace file extension extraction with document badge labels ([ac35e54](https://github.com/memori-ai/memori-react/commit/ac35e540d857e6d44080b9e0d0a08eb7056855df))
|
|
707
|
+
|
|
1086
708
|
## [9.0.0-alpha.5](https://github.com/memori-ai/memori-react/compare/alpha/rc-v9.0.0-alpha.4...alpha/rc-v9.0.0-alpha.5) (2026-05-27)
|
|
1087
709
|
|
|
1088
710
|
|
|
@@ -1094,7 +716,7 @@
|
|
|
1094
716
|
|
|
1095
717
|
### Maintenance
|
|
1096
718
|
|
|
1097
|
-
* update
|
|
719
|
+
* update @memori.ai/ui to version 1.16.0 and adjust FullPage and ZoomedFullBody styles ([1ff5a22](https://github.com/memori-ai/memori-react/commit/1ff5a2298a8b1ff5e836092869679e05b629c824))
|
|
1098
720
|
|
|
1099
721
|
## [9.0.0-alpha.4](https://github.com/memori-ai/memori-react/compare/alpha/rc-v9.0.0-alpha.3...alpha/rc-v9.0.0-alpha.4) (2026-05-26)
|
|
1100
722
|
|
|
@@ -1126,7 +748,7 @@
|
|
|
1126
748
|
|
|
1127
749
|
### Maintenance
|
|
1128
750
|
|
|
1129
|
-
* update
|
|
751
|
+
* update @memori.ai/ui dependency ([9f7a967](https://github.com/memori-ai/memori-react/commit/9f7a9675576bb090da1700756328414413889a4e))
|
|
1130
752
|
|
|
1131
753
|
## [9.0.0-alpha.1](https://github.com/memori-ai/memori-react/compare/alpha/rc-v9.0.0-alpha.0...alpha/rc-v9.0.0-alpha.1) (2026-05-22)
|
|
1132
754
|
|
|
@@ -1511,7 +1133,7 @@
|
|
|
1511
1133
|
* improve silence detection and audio activity analysis in useSTT ([50260a9](https://github.com/memori-ai/memori-react/commit/50260a98f7457b0a86e4155932e9f9b007285f93))
|
|
1512
1134
|
* improved fullbody avatar state management ([ddac623](https://github.com/memori-ai/memori-react/commit/ddac623afcd4ca58cd887b35d950cf23d3caf8f2))
|
|
1513
1135
|
* improved UI of Chat History component ([210ef22](https://github.com/memori-ai/memori-react/commit/210ef223c67c7ec2f17f7847ab0952c4037c06af))
|
|
1514
|
-
* integrate
|
|
1136
|
+
* integrate @memori.ai/ui components ([82e4d9f](https://github.com/memori-ai/memori-react/commit/82e4d9f348eabd468071fedef72941d596a11623))
|
|
1515
1137
|
* integrate alert system in ChatHistoryDrawer ([51775e3](https://github.com/memori-ai/memori-react/commit/51775e3def6b07caa2095ef23f1af88c902277da))
|
|
1516
1138
|
* integrate artifact context into HiddenChat and adjust sidebar toggle styles ([8f27bec](https://github.com/memori-ai/memori-react/commit/8f27bec47128cb217c805c6833a6637ba4629c7e))
|
|
1517
1139
|
* integrate ArtifactProvider into Avatar, Header, and MemoriWidget stories ([1724b72](https://github.com/memori-ai/memori-react/commit/1724b72abc10ea772ed82f5fb14ec4485aa38642))
|
|
@@ -1577,9 +1199,9 @@
|
|
|
1577
1199
|
* **ui:** improve MobileSessionPanel button styles and update translations for consistency ([8fa0078](https://github.com/memori-ai/memori-react/commit/8fa007820ed4d0b5fd5aa39c088c36ba2ab7295f))
|
|
1578
1200
|
* **ui:** refine fullpage/zoomed layouts and storybook setup ([470d059](https://github.com/memori-ai/memori-react/commit/470d059b43b43d012c63d7d1796a595a7fdb353c))
|
|
1579
1201
|
* **ui:** refresh header, layouts, powered-by, and i18n ([1c3c8e2](https://github.com/memori-ai/memori-react/commit/1c3c8e2d8c697ccf64749eb27a1d6a96ab375fa4))
|
|
1580
|
-
* **ui:** update
|
|
1202
|
+
* **ui:** update @memori.ai/ui to version 1.14.0 and enhance popover trigger button active states ([637d944](https://github.com/memori-ai/memori-react/commit/637d9444f45d66380bb32d1ab875f667cb9ab04a))
|
|
1581
1203
|
* **ui:** update styling for header and chat components, enhance position popover functionality ([bc7cdba](https://github.com/memori-ai/memori-react/commit/bc7cdba1361eb3a0707475d58a5d38150aa8a32d))
|
|
1582
|
-
* update
|
|
1204
|
+
* update @memori.ai/ui ([e8ca002](https://github.com/memori-ai/memori-react/commit/e8ca002a61bbfb8054a43d5db6abafa81fc3eb1a))
|
|
1583
1205
|
* update chat resume functionality in ChatHistoryDrawer and adjust initial state in MemoriWidget ([cbc78b6](https://github.com/memori-ai/memori-react/commit/cbc78b61f82ea9515eeb7b6523fcdf5535367bcb))
|
|
1584
1206
|
* update ChatConsumptionDropdown to improve AI usage display and improved responsivness ([0e6b189](https://github.com/memori-ai/memori-react/commit/0e6b1891161b97260adafc0269811dc264a393c3))
|
|
1585
1207
|
* update Header component to use localized strings for total chat consumption ([87f21c5](https://github.com/memori-ai/memori-react/commit/87f21c5cc5eed59babbe32c322bb9033ba280fee))
|
|
@@ -2049,7 +1671,7 @@
|
|
|
2049
1671
|
* cleanup unused props ([f4ae85f](https://github.com/memori-ai/memori-react/commit/f4ae85f2175d3974e7c9de88f446971d822ca086))
|
|
2050
1672
|
* cleanup unused props ([53c421a](https://github.com/memori-ai/memori-react/commit/53c421aadf7d6a3d2f2561dea58e627b0a0b5970))
|
|
2051
1673
|
* cleanup, fix avatar blob fallback ([74b522e](https://github.com/memori-ai/memori-react/commit/74b522e26f8de499ecf3e53050b8f33a782e9bbc))
|
|
2052
|
-
* **deps:** bump
|
|
1674
|
+
* **deps:** bump @memori.ai/ui to ^1.5.2 ([de74299](https://github.com/memori-ai/memori-react/commit/de74299807a0d0a295855240d82d7828b41097b3))
|
|
2053
1675
|
* **deps:** update dependencies ([729688f](https://github.com/memori-ai/memori-react/commit/729688f6c0b29079e9d594bc006f3f3928c0cbc9))
|
|
2054
1676
|
* disabled card of active chat on chat history ([ccfe96a](https://github.com/memori-ai/memori-react/commit/ccfe96ae0ad1422298cdb86afe9a70999362178d))
|
|
2055
1677
|
* downgrade convertapi-js version and update dependencies in package.json and yarn.lock ([ce33a34](https://github.com/memori-ai/memori-react/commit/ce33a343ae4ab18c4ee6543b57703f2ce0167647))
|
|
@@ -2553,14 +2175,14 @@
|
|
|
2553
2175
|
* update [@memori](https://github.com/memori).ai/memori-api-client to version 6.22.0 ([a425cec](https://github.com/memori-ai/memori-react/commit/a425cec379a9086ea12b1407f718c7de3a01d46f))
|
|
2554
2176
|
* update [@memori](https://github.com/memori).ai/memori-api-client to version 6.5.5 ([f1388dd](https://github.com/memori-ai/memori-react/commit/f1388ddedc3f4a90c82d6f8421674834b1ac68bd))
|
|
2555
2177
|
* update [@memori](https://github.com/memori).ai/memori-api-client--no-verify ([1600f2d](https://github.com/memori-ai/memori-react/commit/1600f2ddae7f4d2880c69ac1eecd3dc5e15134be))
|
|
2556
|
-
* update
|
|
2557
|
-
* update
|
|
2558
|
-
* update
|
|
2559
|
-
* update
|
|
2560
|
-
* update
|
|
2561
|
-
* update
|
|
2562
|
-
* update
|
|
2563
|
-
* update
|
|
2178
|
+
* update @memori.ai/ui ([3177beb](https://github.com/memori-ai/memori-react/commit/3177bebc8e212de5fb20f5f82a6473fdb9d2ae48))
|
|
2179
|
+
* update @memori.ai/ui ([800908c](https://github.com/memori-ai/memori-react/commit/800908cb78a2bb82d7fe3c4780420645b8df05a0))
|
|
2180
|
+
* update @memori.ai/ui ([bf447f1](https://github.com/memori-ai/memori-react/commit/bf447f199f2281c557e3fb66bc36edae894df100))
|
|
2181
|
+
* update @memori.ai/ui dependency ([42ad4c6](https://github.com/memori-ai/memori-react/commit/42ad4c6a216f9e2881c4117fdf60c05a399d9521))
|
|
2182
|
+
* update @memori.ai/ui dependency ([a310624](https://github.com/memori-ai/memori-react/commit/a310624b1e26e75dbfc5b4ef18058baab3e33fac))
|
|
2183
|
+
* update @memori.ai/ui dependency ([892be2d](https://github.com/memori-ai/memori-react/commit/892be2d0deb977cd3664ffab475a60a7ae3763e6))
|
|
2184
|
+
* update @memori.ai/ui to and adjust theme colors in Storybook preview ([a0d7116](https://github.com/memori-ai/memori-react/commit/a0d7116dda3705efe0ea6078f362af6f8e99e9ca))
|
|
2185
|
+
* update @memori.ai/ui to version 1.14.1 ([65f4b10](https://github.com/memori-ai/memori-react/commit/65f4b10fc6afd16a9e5adc1adcfcb18aace8448a))
|
|
2564
2186
|
* update api client ([9ab11a4](https://github.com/memori-ai/memori-react/commit/9ab11a4f04f2ac5442d8c7cf9ce0ccc03b88ee4f))
|
|
2565
2187
|
* update api client ([46ed9d9](https://github.com/memori-ai/memori-react/commit/46ed9d90952dfe24562a48523cce28eb018731da))
|
|
2566
2188
|
* update api client ([8ab1bfd](https://github.com/memori-ai/memori-react/commit/8ab1bfd9cee3d486155bb053226666621e0aa295))
|
|
@@ -2696,7 +2318,7 @@
|
|
|
2696
2318
|
* comment out unused CSS rules in fullpage layout for clarity ([63e55ea](https://github.com/memori-ai/memori-react/commit/63e55eab2dec526ed58d6f4e32a13763bb038d47))
|
|
2697
2319
|
* comment out unused scroll effect in Chat component ([dc3a6d6](https://github.com/memori-ai/memori-react/commit/dc3a6d64b81b89f48c4b3139d5f3fa499059b586))
|
|
2698
2320
|
* completion provider status from openai selecting only API component ([36f37f0](https://github.com/memori-ai/memori-react/commit/36f37f0111d765c5580e53f013b1ec7437a81e71))
|
|
2699
|
-
* **components:** adapt to
|
|
2321
|
+
* **components:** adapt to @memori.ai/ui 1.5.2 ([e7a24ea](https://github.com/memori-ai/memori-react/commit/e7a24ea3109bc77c742bebc5d79c047a1c3323e5))
|
|
2700
2322
|
* debug icon in chat bubble color, tests and stories ([54ba7d5](https://github.com/memori-ai/memori-react/commit/54ba7d5a4220a355a2c87688151c5631f2261730))
|
|
2701
2323
|
* defaults + fix styles ([f3852dd](https://github.com/memori-ai/memori-react/commit/f3852ddc8074c6368fbd20043d5b308b67d213f8))
|
|
2702
2324
|
* defaults for mobile totem dont show settings button ([619e773](https://github.com/memori-ai/memori-react/commit/619e773408608827f4649c68a23387dbe405eba2))
|
|
@@ -3565,21 +3187,6 @@
|
|
|
3565
3187
|
* unify chat and media components with consistent scroll item class ([20e6203](https://github.com/memori-ai/memori-react/commit/20e6203c2bc3981314bdc4841969551a3fd093d8))
|
|
3566
3188
|
* update snapshot tests to include consistent scroll item class ([e54257a](https://github.com/memori-ai/memori-react/commit/e54257a354a8e4564725124288c55e7eeaea6da7))
|
|
3567
3189
|
|
|
3568
|
-
## [Unreleased]
|
|
3569
|
-
|
|
3570
|
-
### Features
|
|
3571
|
-
|
|
3572
|
-
* **MemoriArtifactAPI**: Add global JavaScript API for programmatic artifact control
|
|
3573
|
-
* Expose `window.MemoriArtifactAPI` for external integrations
|
|
3574
|
-
* Add `createAndOpenArtifact()` for simple artifact creation
|
|
3575
|
-
* Add `createFromOutputElement()` to process existing DOM elements
|
|
3576
|
-
* Add `processAllArtifacts()` for batch processing of `<output>` tags
|
|
3577
|
-
* Add `getState()` to query current artifact system state
|
|
3578
|
-
* Support for WebSocket and Action Cable integrations
|
|
3579
|
-
* Full TypeScript type definitions exported
|
|
3580
|
-
* Non-invasive implementation using existing React Context
|
|
3581
|
-
* Automatic cleanup on component unmount
|
|
3582
|
-
|
|
3583
3190
|
## [8.8.5](https://github.com/memori-ai/memori-react/compare/v8.8.4...v8.8.5) (2025-10-27)
|
|
3584
3191
|
|
|
3585
3192
|
|
|
@@ -3809,13 +3416,6 @@
|
|
|
3809
3416
|
|
|
3810
3417
|
## [8.6.4](https://github.com/memori-ai/memori-react/compare/v6.8.4...v8.6.4) (2025-09-16)
|
|
3811
3418
|
|
|
3812
|
-
## [6.8.4](https://github.com/memori-ai/memori-react/compare/v8.6.3...v6.8.4) (2025-09-16)
|
|
3813
|
-
|
|
3814
|
-
|
|
3815
|
-
### Features
|
|
3816
|
-
|
|
3817
|
-
* add preview context detection to whitelist domain check ([9fce89c](https://github.com/memori-ai/memori-react/commit/9fce89c7fd4691d0611b68949ad300fa2ca15d5b))
|
|
3818
|
-
|
|
3819
3419
|
## [8.6.3](https://github.com/memori-ai/memori-react/compare/v8.6.2...v8.6.3) (2025-09-16)
|
|
3820
3420
|
|
|
3821
3421
|
|
|
@@ -3844,6 +3444,13 @@
|
|
|
3844
3444
|
* remove interaction timeout logic from MemoriWidget for cleaner state management ([31d477b](https://github.com/memori-ai/memori-react/commit/31d477bbd934db288333952c2c0c2a2c46ba5f08))
|
|
3845
3445
|
* simplify incident status checking logic in CompletionProviderStatus component ([44a70d9](https://github.com/memori-ai/memori-react/commit/44a70d9cdd9bc56d6db120b8882d79628dbb1102))
|
|
3846
3446
|
|
|
3447
|
+
## [6.8.4](https://github.com/memori-ai/memori-react/compare/v8.6.3...v6.8.4) (2025-09-16)
|
|
3448
|
+
|
|
3449
|
+
|
|
3450
|
+
### Features
|
|
3451
|
+
|
|
3452
|
+
* add preview context detection to whitelist domain check ([9fce89c](https://github.com/memori-ai/memori-react/commit/9fce89c7fd4691d0611b68949ad300fa2ca15d5b))
|
|
3453
|
+
|
|
3847
3454
|
## [8.6.1](https://github.com/memori-ai/memori-react/compare/v8.6.0...v8.6.1) (2025-09-15)
|
|
3848
3455
|
|
|
3849
3456
|
## [8.6.0](https://github.com/memori-ai/memori-react/compare/v8.5.2...v8.6.0) (2025-09-15)
|