Feat: Fix message UI and update dependencies for stability#187
Merged
Conversation
- Adjusts padding around message input for better UI consistency. - Adds gap between message components for enhanced layout clarity.
- Bump package version to 0.15.2 for latest release. - Update dependencies @hono/node-server and hono for stability and improvements.
- Upgraded Angular packages to latest patch versions. - Updated `uuid` and other dependencies for improved security. - Added `"uuid"` override to ensure compatibility within all packages.
- Upgraded several dependencies to their latest versions. - Improved compatibility and potentially resolved security issues.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates frontend and backend dependencies to improve security/stability, and applies small layout + message-processing adjustments in the chat UI.
Changes:
- Frontend: bumps Angular/tooling dependencies, updates
uuid, and adds anoverridesrule intended to unifyuuidforsockjs. - Backend: bumps several Rust crates (Actix stack,
uuid,openssl,rand,tokio) and refreshesCargo.lock. - Chat UI: tweaks message input spacing and simplifies message text processing (removes explicit
\n→<br>conversion).
Reviewed changes
Copilot reviewed 4 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| server/Cargo.toml | Updates Rust dependency versions. |
| server/Cargo.lock | Regenerates lockfile to reflect updated Rust deps. |
| client/web/src/app/features/chat/chat.component.ts | Simplifies message HTML preprocessing before linkifying/sanitizing. |
| client/web/src/app/features/chat/chat.component.html | Adjusts paddings and spacing (gap-2) in the message input area. |
| client/web/package.json | Bumps Angular/tooling deps, app version, uuid, and adds overrides for sockjs. |
| client/web/package-lock.json | Updates resolved dependency tree for the frontend changes. |
Files not reviewed (1)
- client/web/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates dependencies in both the frontend (
client/web) and backend (server) to address security, compatibility, and stability. It also includes minor UI improvements in the chat component. The most important changes are grouped below:Frontend dependency updates:
@angulardependencies to version21.2.11and related packages, improving compatibility and security. (client/web/package.json)uuidto^14.0.0and added an override forsockjsto use the same version, ensuring consistency and resolving potential subdependency issues. (client/web/package.json) [1] [2]@angular-devkit/build-angularand@angular/clito21.2.9for improved build tooling. (client/web/package.json)0.15.2. (client/web/package.json)Backend dependency updates:
actix-http(to3.12.1),uuid(to1.23.1),openssl(to0.10.78),rand(to0.10.1), andtokio(to1.52.1). (server/Cargo.toml) [1] [2]Chat UI improvements:
client/web/src/app/features/chat/chat.component.html)gap-2class to improve spacing between textarea and other elements in the chat message input area. (client/web/src/app/features/chat/chat.component.html)client/web/src/app/features/chat/chat.component.ts)