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: onejs/one
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.17.5
Choose a base ref
...
head repository: onejs/one
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.17.6
Choose a head ref
  • 4 commits
  • 72 files changed
  • 1 contributor

Commits on May 19, 2026

  1. fix(router): guard native window.location access (3PC-161)

    typeof document is not a reliable web check on Expo/Hermes — document
    can be polyfilled while window.location is undefined, so the old guard
    passed and window.location.pathname threw, crashing AuthLayout on
    android prod. add getSafeWindowPathname() requiring an actual string
    pathname, used by getBrowserPathname, the initialPathname fallback, and
    Navigator getInitialRouteName (same latent crash).
    natew committed May 19, 2026
    Configuration menu
    Copy the full SHA
    f66ae7c View commit details
    Browse the repository at this point in the history
  2. fix(router): harden useScreens SSR-CSS guard against polyfilled document

    same root cause as the router window.location crash: typeof document is
    not a reliable web check on Expo/Hermes. require document.querySelectorAll
    to be a function before calling it at module load.
    natew committed May 19, 2026
    Configuration menu
    Copy the full SHA
    bfc31e7 View commit details
    Browse the repository at this point in the history
  3. formatting

    natew committed May 19, 2026
    Configuration menu
    Copy the full SHA
    e28d211 View commit details
    Browse the repository at this point in the history
  4. v1.17.6

    natew committed May 19, 2026
    Configuration menu
    Copy the full SHA
    a70a936 View commit details
    Browse the repository at this point in the history
Loading