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/zh-hans.react.dev
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main@{1day}
Choose a base ref
...
head repository: reactjs/zh-hans.react.dev
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 12 commits
  • 13 files changed
  • 10 contributors

Commits on Nov 3, 2025

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

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
  2. Configuration menu
    Copy the full SHA
    9f91f3c View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2025

  1. Configuration menu
    Copy the full SHA
    565e3c4 View commit details
    Browse the repository at this point in the history
  2. fix conflict

    loveloki authored Nov 7, 2025
    Configuration menu
    Copy the full SHA
    8e76839 View commit details
    Browse the repository at this point in the history
  3. translate some tip

    loveloki authored Nov 7, 2025
    Configuration menu
    Copy the full SHA
    59e5c5f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cbf4c7e View commit details
    Browse the repository at this point in the history
Loading