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: angular/angular-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 19.2.8
Choose a base ref
...
head repository: angular/angular-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 19.2.9
Choose a head ref
  • 5 commits
  • 15 files changed
  • 2 contributors

Commits on Apr 16, 2025

  1. fix(@angular/build): pass preserveSymlinks option to Karma esbuild …

    …builder
    
    Ensure that several previously omitted options are correctly passed to the Karma esbuild builder, improving consistency and expected behavior.
    
    (cherry picked from commit 95d16dc)
    alan-agius4 authored and clydin committed Apr 16, 2025
    Configuration menu
    Copy the full SHA
    cc5229a View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2025

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

Commits on Apr 22, 2025

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

Commits on Apr 23, 2025

  1. fix(@angular/ssr): support getPrerenderParams for wildcard routes

    Handle `getPrerenderParams` return values when used with wildcard route paths, including support for combined routes like `/product/:id/**`.
    Supports returning an array of path segments (e.g., `['category', '123']`) for `**` routes and dynamic segments combined with catch-all routes.
    
    This enables more flexible prerendering configurations in server routes, including handling specific paths such as `/product/1/laptop/123`.
    
    Example:
    ```ts
    {
      path: '/product/:id/**',
      renderMode: RenderMode.Prerender,
      async getPrerenderParams() {
        return [
          { id: '1', '**': 'laptop/123' },
          { id: '2', '**': 'laptop/456' }
        ];
      }
    }
    ```
    
    Closes #30035
    
    (cherry picked from commit cb3446e)
    alan-agius4 committed Apr 23, 2025
    Configuration menu
    Copy the full SHA
    a4e415e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2a7cb6e View commit details
    Browse the repository at this point in the history
Loading