Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: relaticle/relaticle
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.2
Choose a base ref
...
head repository: relaticle/relaticle
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.3
Choose a head ref
  • 2 commits
  • 15 files changed
  • 2 contributors

Commits on Feb 23, 2026

  1. chore: update preview screenshots with optimized multi-format images (#…

    …149)
    
    * chore: update preview screenshots with optimized multi-format images
    
    - Replace JPG hero images with AVIF/WebP/PNG using <picture> element
      for progressive enhancement (AVIF: 90KB, WebP: 97KB, PNG: 140KB)
    - Update GitHub README screenshot with optimized PNG (145KB)
    - All images captured at 2x Retina (2880x1800) for crisp rendering
    - Add MCP case to CreationSource enum to fix 500 error
    
    * revert: remove MCP case from CreationSource enum
    ManukMinasyan authored Feb 23, 2026
    Configuration menu
    Copy the full SHA
    658a3b1 View commit details
    Browse the repository at this point in the history
  2. Fix N+1 queries across all custom field resources (#151)

    Addresses Copilot's feedback on PR #146 by applying eager loading
    optimization consistently across all resources that implement HasCustomFields.
    
    Changes:
    - Added ->withCustomFieldValues() to PeopleResource
    - Added ->withCustomFieldValues() to CompanyResource
    - Added ->withCustomFieldValues() to OpportunityResource
    - Added ->withCustomFieldValues() to TaskResource
    - Added ->withCustomFieldValues() to NoteResource
    
    Performance impact:
    - Before: 10-20+ queries per page load (one per record)
    - After: 1-3 queries total (batch loaded)
    
    Related:
    - Supersedes PR #146 (PeopleResource only)
    - Supersedes PR #150 (OpportunityResource only)
    - Resolves RELATICLE-CRM-39
    - Resolves RELATICLE-CRM-38
    
    Tests: 722 passed, 5 skipped
    NeloNew authored Feb 23, 2026
    Configuration menu
    Copy the full SHA
    71d0777 View commit details
    Browse the repository at this point in the history
Loading