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/components
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 19.2.4
Choose a base ref
...
head repository: angular/components
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 19.2.5
Choose a head ref
  • 17 commits
  • 208 files changed
  • 3 contributors

Commits on Mar 19, 2025

  1. build: re-enable workers for package artifact generation (#30658)

    This was disabled a while ago, seemingly for some of the type worker
    bundling issues. Those should be resolved as we improved/changed how we
    bundle `.d.ts` anyway.
    
    (cherry picked from commit 5083cbd)
    devversion authored and wagnermaciel committed Mar 19, 2025
    Copy the full SHA
    b817860 View commit details
  2. build: update to bazel 6

    This is necessary for an incremental migration to `rules_js` which
    requires Bazel v6. Bazel v6 removed the managed directories feature,
    which means we no longer can rely on symlinked node modules as the Bazel
    repository; but rather need to duplicate dependencies. This is
    okay/acceptable to enable the incremental migration.
    devversion committed Mar 19, 2025
    Copy the full SHA
    0a1e28a View commit details
  3. build: setup rules_js and link dependencies

    Sets up `rules_js` and links dependencies into the bazel-bin.
    devversion committed Mar 19, 2025
    Copy the full SHA
    115e2b2 View commit details
  4. build: setup rules_ts for compiling TypeScript sources

    This commit sets up `rules_ts`, providing the `ts_library` equivalent
    for the `rules_js` migration.
    devversion committed Mar 19, 2025
    Copy the full SHA
    89342f9 View commit details
  5. build: set up ts_project interop for rules_js migration

    The `ts_project` interop rule that we've built was also used in the
    Angular CLI migration, and it allows us to mix `ts_project` and
    `ts_library` targets; enabling an incremental migration.
    devversion committed Mar 19, 2025
    Copy the full SHA
    79cb078 View commit details
  6. refactor: initial set of testing/ targets migrated to ts_project

    This is an initial commit to migrate some `testing/` targets to
    `ts_project`, leveraging the interop rule we've built.
    
    Notably we also turn of strict deps checking temporarily as the deps
    checking is only applicable when there are no interop deps anymore!
    devversion committed Mar 19, 2025
    Copy the full SHA
    3777b2f View commit details
  7. build: update public API golden infra and move to goldens/

    * Moves the public API goldens to `goldens/`
    * Switches us to the `npm_package` variant of the golden testing rule.
      This variant is more future proof and will work well with the
      `rules_js` migration (as it takes arbitrary Bazel tree artifacts)
    devversion committed Mar 19, 2025
    Copy the full SHA
    637ee06 View commit details
  8. build: update renovate config for rules_js hybrid mode

    This will automatically result in Renovate updating the Aspect lock
    files.
    devversion committed Mar 19, 2025
    Copy the full SHA
    fa6a1d2 View commit details
  9. build: enable rules_js interop mode in ng-dev release

    This will result in the release tool automatically updating the Aspect
    lock files when necessary.
    devversion committed Mar 19, 2025
    Copy the full SHA
    eba13ca View commit details
  10. build: support linking of Angular libraries with rules_js

    For linking of Angular packages we are using something more clever than
    what we are doing with `rules_nodejs`. Instead of maintaing complexity
    where we pre-link FESM bundles and somehow inject them into other Bazel
    bundling steps (with complex linker mappings), we pre-link as part of
    individual package postinstall steps, exposing the linked bundles via a
    NodeJS exports condition.
    
    This is possible vis this package/script:
    https://github.com/devversion/angular-linking
    
    Clearly this is not at a good location, but it's necessary right now to
    ship this code via npm because `rules_js` struggles to use pnpm
    extensions onto workspace 1st-party packages. Long-term we can either
    decide to keep it that way, move it into e.g. dev-infra repository, or
    we can explore shipping pre-linked bundles via APF. TBD.
    devversion committed Mar 19, 2025
    Copy the full SHA
    a4c5de9 View commit details
  11. build: migrate all ts_library targets in tools/

    Migrates all `ts_library` targets in `tools/` to use the `rules_js`
    `ts_project` rule.
    devversion committed Mar 19, 2025
    Copy the full SHA
    2906e18 View commit details
  12. build: improve ts_project interop to work with esbuild bundling

    Improves the `ts_project` interop to work with Esbuild bundling. Right
    now we can end up with multiple copies of the same source file.
    
    e.g. input might import from `@angular/cdk/testing` and end up with
    the version of `rules_nodejs` linker, while other imports to the native
    `ts_library` targets end up being mapped to their actual sources in the
    `bazel-bin`, and not inside `node_modules`
    devversion committed Mar 19, 2025
    Copy the full SHA
    1e4d3af View commit details
  13. build: migrate more ts_library targets to rules_js

    Migrates more `ts_library` targets to `rules_js`
    devversion committed Mar 19, 2025
    Copy the full SHA
    f1ed784 View commit details
  14. fix(material/timepicker): TimepickerInput component in shadow DOM (#3…

    …0642)
    
    Fixes an issue where the value of the input element referenced by a
    TimepickerInput component inside a shadow DOM was getting formatted too
    often due to `TimepickerInput._hasFocus()` assuming the component wasn't
    in the shadow DOM.
    
    Fixes #30641
    
    Co-authored-by: Caleb Kish <j69674031@gmail.com>
    (cherry picked from commit ee44255)
    calebkish authored and crisbeto committed Mar 19, 2025
    Copy the full SHA
    2bfa526 View commit details
  15. fix(cdk/tree): retainining previous objects (#30431)

    fixes component retaining old data in memory even when its not used causing memory usage to increase
    
    fixes #30322
    
    (cherry picked from commit 1b4cae7)
    naaajii authored and mmalerba committed Mar 19, 2025
    Copy the full SHA
    ab70ba5 View commit details

Commits on Mar 20, 2025

  1. fix(multiple): ensure re-exported module symbols can be imported

    As of recently, we switched our imports from module imports to relative
    imports, when inside the same package. This is expected for proper code
    splitting, and also for our upcoming `rules_js` migration.
    
    Unfortunately this highlights an issue with the Angular compiler. We
    occasionally re-export other entry-point modules from one entry-point
    module. This is likely done for convenience, but we should stop doing
    that going forward (and likely will naturally resolve this over time
    with standalone either way).
    
    The problem is that the Angular compiler, especially with HMR enabled
    (i.e. no tree-shaking of imports), will try to generate imports in the
    user code to symbols that are indirectly re-exported. This worked before
    because the Angular compiler leveraged the "best guessed module", based
    on the "last module import" it saw before e.g. discovering the
    re-exported `ScrollingModule`; hence it assumed all exports of that
    module are available from `@angular/cdk/scrolling`. This assumption no
    longer works because the last module import would be e.g. `cdk/overlay`,
    which relatively imports from scrolling to re-export the module then.
    
    There are a few options:
    
    - teach the compiler about relative imports inside APF packages with
      secondary entry-points. Possible, but won't work for users with older
      compiler versions. Maybe a long-term good thing to do; on the other
      hand, standalone is the new future.
    
    - switch back to module imports. Not possible and relative imports
      should work inside a package IMO.
    
    - re-export the exposed symbols, under a private name. This is the
      easiest approach and there also aren't a lot of module re-exports; so
      this is a viable approach taken by this commit.
    
    Inside Google, the latter approach is automatically emitted by the
    compiler, when everything is built from source; but that's not usable
    here; but confirms this approach as being reasonable. Ideally we will
    stop re-exporting modules in APF packages, and long-term we start
    supporting the proper module guessing with relative imports.
    
    Fixes #30663.
    devversion committed Mar 20, 2025
    Copy the full SHA
    8d7a0f6 View commit details
  2. Copy the full SHA
    2a3c254 View commit details
Loading