-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Comparing changes
Open a pull request
base repository: angular/components
base: 19.2.4
head repository: angular/components
compare: 19.2.5
- 17 commits
- 208 files changed
- 3 contributors
Commits on Mar 19, 2025
-
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)
Configuration menu - View commit details
-
Copy full SHA for b817860 - Browse repository at this point
Copy the full SHA b817860View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 0a1e28a - Browse repository at this point
Copy the full SHA 0a1e28aView commit details -
build: setup rules_js and link dependencies
Sets up `rules_js` and links dependencies into the bazel-bin.
Configuration menu - View commit details
-
Copy full SHA for 115e2b2 - Browse repository at this point
Copy the full SHA 115e2b2View commit details -
build: setup rules_ts for compiling TypeScript sources
This commit sets up `rules_ts`, providing the `ts_library` equivalent for the `rules_js` migration.
Configuration menu - View commit details
-
Copy full SHA for 89342f9 - Browse repository at this point
Copy the full SHA 89342f9View commit details -
build: set up
ts_project
interop forrules_js
migrationThe `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.
Configuration menu - View commit details
-
Copy full SHA for 79cb078 - Browse repository at this point
Copy the full SHA 79cb078View commit details -
refactor: initial set of
testing/
targets migrated tots_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!
Configuration menu - View commit details
-
Copy full SHA for 3777b2f - Browse repository at this point
Copy the full SHA 3777b2fView commit details -
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)
Configuration menu - View commit details
-
Copy full SHA for 637ee06 - Browse repository at this point
Copy the full SHA 637ee06View commit details -
build: update renovate config for
rules_js
hybrid modeThis will automatically result in Renovate updating the Aspect lock files.
Configuration menu - View commit details
-
Copy full SHA for fa6a1d2 - Browse repository at this point
Copy the full SHA fa6a1d2View commit details -
build: enable
rules_js
interop mode inng-dev release
This will result in the release tool automatically updating the Aspect lock files when necessary.
Configuration menu - View commit details
-
Copy full SHA for eba13ca - Browse repository at this point
Copy the full SHA eba13caView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for a4c5de9 - Browse repository at this point
Copy the full SHA a4c5de9View commit details -
build: migrate all
ts_library
targets intools/
Migrates all `ts_library` targets in `tools/` to use the `rules_js` `ts_project` rule.
Configuration menu - View commit details
-
Copy full SHA for 2906e18 - Browse repository at this point
Copy the full SHA 2906e18View commit details -
build: improve
ts_project
interop to work with esbuild bundlingImproves 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`
Configuration menu - View commit details
-
Copy full SHA for 1e4d3af - Browse repository at this point
Copy the full SHA 1e4d3afView commit details -
build: migrate more
ts_library
targets torules_js
Migrates more `ts_library` targets to `rules_js`
Configuration menu - View commit details
-
Copy full SHA for f1ed784 - Browse repository at this point
Copy the full SHA f1ed784View commit details -
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)
Configuration menu - View commit details
-
Copy full SHA for 2bfa526 - Browse repository at this point
Copy the full SHA 2bfa526View commit details -
Configuration menu - View commit details
-
Copy full SHA for ab70ba5 - Browse repository at this point
Copy the full SHA ab70ba5View commit details
Commits on Mar 20, 2025
-
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.
Configuration menu - View commit details
-
Copy full SHA for 8d7a0f6 - Browse repository at this point
Copy the full SHA 8d7a0f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a3c254 - Browse repository at this point
Copy the full SHA 2a3c254View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 19.2.4...19.2.5