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

Create a new pull request by comparing changes across two branches #1126

Merged
merged 11 commits into from
Oct 10, 2024

Commits on Oct 9, 2024

  1. build: lock file maintenance

    angular-robot authored and alan-agius4 committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    9846fba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2a1107d View commit details
    Browse the repository at this point in the history
  3. fix(@angular/build): Ctrl + C not terminating dev-server with SSR

    This commit provides a workaround for #28336, which occurs due to the interaction between `zone.js` and `listr2`. The issue prevents proper termination of the development server using Ctrl + C when dev-server.
    
    Closes: #28336
    alan-agius4 committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    549c20a View commit details
    Browse the repository at this point in the history
  4. fix(@angular/build): move lmdb to optionalDependencies

    A warning mechanism has been implemented to notify users when lmdb is unavailable. On Windows ARM64 systems, however, installing this package with pnpm appears to cause installation failures.
    
    See: #27882 (comment)
    
    Closes #27882
    alan-agius4 committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    1bb68ba View commit details
    Browse the repository at this point in the history
  5. feat(@schematics/angular): update app-shell and ssr schematics to ado…

    …pt new Server Rendering API
    
    This commit revises the app-shell and ssr schematics to incorporate the new Server Rendering API, along with the integration of server-side routes.
    
    BREAKING CHANGE: The app-shell schematic is no longer compatible with Webpack-based builders.
    alan-agius4 committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    292a4b7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a173bb5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c0a12e5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fa7d3b1 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    accaa57 View commit details
    Browse the repository at this point in the history
  10. feat(@angular/build): introduce ssr.experimentalPlatform option

    This commit introduces a new option called `experimentalPlatform` to the Angular SSR configuration.
    
    The `experimentalPlatform` option allows developers to specify the target platform for the server bundle, enabling the generation of platform-neutral bundles suitable for deployment in environments like edge workers and other serverless platforms that do not rely on Node.js APIs.
    
    This change enhances the portability of Angular SSR applications and expands their deployment possibilities.
    
    **Note:** that this feature does not include polyfills for Node.js modules and is experimental, subject to future changes.
    alan-agius4 committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    7d883a1 View commit details
    Browse the repository at this point in the history
  11. feat(@angular/build): set development/production condition

    Ensures that we consistently set "development" for non-optimized and
    "production" for optimized builds. This is consistent with other
    bundlers (Vite/webpack/parcel/...).
    jkrems committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    c48d694 View commit details
    Browse the repository at this point in the history