Nhan Nguyen
Nhan Nguyen
Add weighted round-robin support for TCP servers in the load balancer configuration, bringing feature parity with HTTP services. Changes: - Add Weight field to TCPServer struct in tcp_config.go - Pass...
## Summary - Fix `AsInt64()` to properly convert `inf.Dec` values to int64 when representable - Add regression test for parsing quantities near `math.MaxInt64` ## Root Cause When parsing quantities with...
## Summary - Added explicit `color: Colors.white` to the default subtitle text rendering in all control widgets - Ensures subtitle text is always visible regardless of the app's theme configuration...
## Summary - Add `aria-invalid:border` to Button component base styles - Enables visible aria-invalid feedback for all button variants Fixes #8920 ## Description The Button component had `aria-invalid:border-destructive` in its...
## Summary Adds a `force` parameter to the volume deletion API and CLI, addressing issue #3140. **Problem:** Attempting to delete a volume that previously failed deletion (in ERROR state) is...
## Summary Implements command auto-suggestions when users enter typos, mimicking the behavior found in tools like `git`. - Clean error output for unknown commands (replaces logrus formatting with stderr) -...
## Summary This PR adds support for standard glob patterns in the `SearchFiles` API endpoint, addressing issue #3076. ### Problem Currently, `fs.searchFiles(basePath, pattern)` does not support standard glob patterns. When...
## Summary - Add `SingleBranch` field to `SubmoduleUpdateOptions` - When enabled, skip the broad fetch and only fetch the specific commit the submodule points to - Pass `SingleBranch` from `CloneOptions`...
## Summary - Fix `(*Worktree).Commit()` panic when `CommitOptions` parameter is nil - Add test case `TestCommitWithNilOptions` to verify the fix ## Root Cause When calling `Commit()` with a nil `CommitOptions`...
Add a new refactoring code action that converts short variable declarations to explicit var declarations with separate assignment. Example: ```go x := 42 ``` becomes: ```go var x int x...