-
Notifications
You must be signed in to change notification settings - Fork 3.1k
v0.5.46: build improvements, greptile, light mode improvements #2624
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
Conversation
waleedlatif1
commented
Dec 29, 2025
- improvement(monorepo): added tsconfig package, resolved type errors in testing package (improvement(monorepo): added tsconfig package, resolved type errors in testing package #2613)
- feat(tools): added greptile tools/block, updated copilot panel styling (feat(tools): added greptile tools/block, updated copilot panel styling #2618)
- fix(build): add tsconfig to db dockerfile (fix(build): add tsconfig to db dockerfile #2617)
- feat(i18n): update translations (feat(i18n): update translations #2619)
- improvement(globals): light colors (improvement(globals): light colors #2620)
- fix(deploy): fix workflow change detection to handle old variable reference format (fix(deploy): fix workflow change detection to handle old variable reference format #2623)
…n testing package (#2613)
* fix(build): add tsconfig to db dockerfile * ack pr comment
Co-authored-by: waleedlatif1 <waleedlatif1@users.noreply.github.com>
* improvement(globals): light colors * improvement(ui): logs, templates, kb, light globals * improvement(subflows): start node and ui/ux
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Greptile SummaryThis release includes significant build improvements, a new Greptile integration for AI-powered codebase search, and UI polish for light mode and copilot panel. Major Changes:
Testing Package Changes: Notes:
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant Mono as Monorepo Build
participant Docker as Docker Build
participant TS as TypeScript Compiler
participant Greptile as Greptile API
participant UI as UI Components
Note over Dev,UI: Monorepo Improvements
Dev->>Mono: Add tsconfig package
Mono->>TS: Shared TS configurations
TS-->>Mono: Consistent type checking
Dev->>Mono: Update testing types
Mono->>TS: Permissive type definitions
Note right of TS: Reduces maintenance burden
Note over Dev,Docker: Docker Build Fix
Dev->>Docker: Add tsconfig to db.Dockerfile
Docker->>Mono: Copy tsconfig package
Note right of Docker: Resolves workspace symlinks
Note over Dev,Greptile: Greptile Integration
Dev->>Greptile: Create query tool
Dev->>Greptile: Create index tool
Dev->>Greptile: Create status tool
Dev->>UI: Add Greptile block config
Note right of UI: Search disabled (API deprecation)
Note over Dev,UI: Workflow Change Detection
Dev->>Mono: Add sanitizeVariable function
Dev->>Mono: Add normalizeVariables function
Mono->>TS: Handle legacy array format
Note right of TS: Fixes old variable references
Note over Dev,UI: UI Polish
Dev->>UI: Update light mode colors
Note right of UI: Reduce green tint
Dev->>UI: Improve copilot spacing
Note right of UI: Better readability
|