Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(server-renderer): Fix call to serverPrefetch in server renderer with an async setup #10893

Commits on May 8, 2024

  1. Configuration menu
    Copy the full SHA
    abc54c6 View commit details
    Browse the repository at this point in the history
  2. fix(server-renderer): Fix renderComponentVNode to call serverPrefetch…

    … option w/async setup
    
    This fixes a bug where the serverPrefetch option would not be called
    with an async setup method.
    
    A `prefetches` reference was created while `instance.sp` was `null`.
    However, with an async setup, `instance.sp` has the serverPrefetch
    methods only after setup resolves.
    
    The fix is achieved by waiting to for setup to resolve before trying to
    access the the serverPrefetch options from `instance.sp`.
    deleteme committed May 8, 2024
    Configuration menu
    Copy the full SHA
    a6f421f View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

  1. fix(server-renderer): refactor renderComponentVNode to be async and s…

    …implify internal logic
    deleteme committed Aug 16, 2024
    Configuration menu
    Copy the full SHA
    4ec094b View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2024

  1. Configuration menu
    Copy the full SHA
    7af4f77 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e159b16 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7bf6732 View commit details
    Browse the repository at this point in the history