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: reactjs/ko.react.dev
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: reactjs/ko.react.dev
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: sync-2534424e
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 10 commits
  • 35 files changed
  • 11 contributors

Commits on Nov 5, 2025

  1. Configuration menu
    Copy the full SHA
    f020b53 View commit details
    Browse the repository at this point in the history
  2. Nit: wording

    gaearon authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    5c632dc View commit details
    Browse the repository at this point in the history
  3. fix: correct links for Redwood and TanStack (#8121)

    * fix: correct link for RedwoodJS to RedwoodSDK in documentation
    
    * fix: update links for React Query and TanStack Start in documentation
    
    * fix: update Vite installation command to use TypeScript template
    
    * fix: update references from React Query to TanStack Query in documentation
    clicktodev authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    9c0763d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    abd1fe0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6a70889 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2025

  1. Fix incorrect condition in "Chains of computations" example (#8109)

    Fixes #8097
    
    The refactored example in the "Chains of computations" section uses
    an incorrect condition that changes the game logic from the original.
    
    The original Effect-based code advances the round after 4 gold cards:
    - Increments first (0→1, 1→2, 2→3, 3→4)
    - Then checks `goldCardCount > 3` (true when count is 4)
    
    The refactored code with `goldCardCount <= 3` allows 5 gold cards:
    - Checks before incrementing
    - Allows counts 0, 1, 2, 3 to increment (4 values)
    - Advances on the 5th card (when count is 4)
    
    This fix changes the condition to `goldCardCount < 3`:
    - Allows counts 0, 1, 2 to increment (3 values)
    - Advances on the 4th card (when count is 3)
    - Matches the original behavior
    
    Verified by tracing execution logic and building the docs site locally.
    
    Co-authored-by: PaulyBearCoding <PaulyBearCoding@users.noreply.github.com>
    PaulyBearCoding and PaulyBearCoding authored Nov 6, 2025
    Configuration menu
    Copy the full SHA
    d271a7a View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2025

  1. Configuration menu
    Copy the full SHA
    b440d66 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2025

  1. Configuration menu
    Copy the full SHA
    27576f1 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2025

  1. fix: Stop SmartyPants from altering TerminalBlock commands (like `--s…

    …ave-dev` to `—save-dev`) (#8146)
    
    * Skip smartypants on TerminalBlock
    
    * Improve TerminalBlock HTML tags
    
    * Remove unnecessary TerminalBlock escapes from docs
    
    * Bump DISK_CACHE_BREAKER
    smikitky authored Nov 15, 2025
    Configuration menu
    Copy the full SHA
    2534424 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2025

  1. Configuration menu
    Copy the full SHA
    9ead3a9 View commit details
    Browse the repository at this point in the history
Loading