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: sveltejs/kit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @sveltejs/kit@2.25.1
Choose a base ref
...
head repository: sveltejs/kit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @sveltejs/kit@2.25.2
Choose a head ref
  • 3 commits
  • 11 files changed
  • 4 contributors

Commits on Jul 21, 2025

  1. fix: correctly set the URL when navigating during a navigation (#14004)

    fixes #12809
    
    This PR ensures that the correct navigation results are computed if the user tries to navigate during an ongoing navigation.
    
    The root cause of the issue is that the page_changed value is evaluated incorrectly when we try navigating to a page we're already navigating to. This is because the current.url is updated to the new page before navigation is completed. Therefore, if we click the same link while navigation is pending (due to a lengthy onNavigate execution), the router will think we're already on the page we're navigating to and return the wrong navigation result. We fix this by updating current.url only after all onNavigate callbacks have completed.
    eltigerchino authored Jul 21, 2025
    Configuration menu
    Copy the full SHA
    fda0165 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2025

  1. fix: support assets-only workers in wrangler validation (#14019)

    * fix: support assets-only workers in wrangler validation
    
    Fixes #14018.
    
    * remove main key validation for asset only workers since it's already validated by wrangler
    
    * add tests
    
    ---------
    
    Co-authored-by: Chew Tee Ming <chew.tee.ming@nindatech.com>
    kevinji and eltigerchino authored Jul 22, 2025
    Configuration menu
    Copy the full SHA
    683c12d View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2025

  1. Version Packages (#14025)

    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored Jul 23, 2025
    Configuration menu
    Copy the full SHA
    a18e21a View commit details
    Browse the repository at this point in the history
Loading