Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v1.4.1 #160

Merged
merged 3 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## [1.4.1] (April 22 2024)
#### Feat:
- Implemented safe parsing of message.data to prevent errors in data handling.
- Enhanced efficiency by reusing user and channel information stored in localStorage, reducing redundant data requests and improving user experience.
- Established functionality to connect the ChatAiWidget upon component mounting, improving real-time interaction capabilities. This includes various improvements such as managing connections and handling UI behavior between mobile and desktop platforms.

#### Fix:
- Corrected the position of the feedback dialog which used to be incorrectly placed after bumping up UIKit version.

#### Chore:
- Updated key structures to include appId and boId, which allows better identification and tracking of business objects.
- LocalStorage key format: `@sendbird/chat-ai-widget/${appId}/${botId}`
- Cleanup of Unused Files and Dependencies: Removed unnecessary files and dependencies like dompurify to streamline the codebase.


## [Deprecated] [v1.4.0]

## [1.3.9] (April 19 2024)
#### Feat:
- Created an upload_to_s3 pipeline to facilitate file transfers to AWS S3.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sendbird/chat-ai-widget",
"version": "1.3.9",
"version": "1.4.1",
"description": "Sendbird Chat AI Widget,\n Detailed documentation can be found at https://github.com/sendbird/chat-ai-widget#readme",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
Expand Down
135 changes: 112 additions & 23 deletions packages/self-service/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/self-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"format": "npm run prettier:fix && npm run lint:fix"
},
"dependencies": {
"@sendbird/chat-ai-widget": "^1.3.9",
"@sendbird/chat-ai-widget": "^1.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
Loading