-
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.7
head repository: angular/components
compare: 19.2.8
Commits on Mar 26, 2025
-
build: fix husky warnings (#30726)
(cherry picked from commit beacb8d)
Configuration menu - View commit details
-
Copy full SHA for bc61108 - Browse repository at this point
Copy the full SHA bc61108View commit details
Commits on Mar 27, 2025
-
ci: update bazel RBE setup on CI and use trusted build configuration …
Configuration menu - View commit details
-
Copy full SHA for 1c11ddf - Browse repository at this point
Copy the full SHA 1c11ddfView commit details -
Configuration menu - View commit details
-
Copy full SHA for fa3a238 - Browse repository at this point
Copy the full SHA fa3a238View commit details -
test(cdk/overlay): change how renders are counted in test (#30712)
(cherry picked from commit d69de97)
Configuration menu - View commit details
-
Copy full SHA for 17fd1f7 - Browse repository at this point
Copy the full SHA 17fd1f7View commit details
Commits on Mar 28, 2025
-
build: prepare for new
ng_project
rule and try incdk/a11y
Sets up the new `ng_project` rule and uses it in `cdk/a11y`. Also sets up this rule similar to our `ts_project` interop- reusing that code completely, yay!
Configuration menu - View commit details
-
Copy full SHA for b3ca6e5 - Browse repository at this point
Copy the full SHA b3ca6e5View commit details -
build: update
markdown-to-html
to avoid output conflictsWith the new `ts_project`, or `ng_project` rule, HTML templates of components are also copied over to the bazel bin. This unveiled a naming conflict of e.g. `slider.md` being generated as `slider.html`; while there is a template like `slider.html`.
Configuration menu - View commit details
-
Copy full SHA for 5146e10 - Browse repository at this point
Copy the full SHA 5146e10View commit details -
build: migrate all
ng_module
targets to the newng_project
ruleThis commit migrates all `ng_module` targets to the new `ng_project` rule. This change was partially assisted/generated using Gemini.
Configuration menu - View commit details
-
Copy full SHA for b18eb1d - Browse repository at this point
Copy the full SHA b18eb1dView commit details -
build: ensure tsconfig is explicitly configured for
ts_project
targetsCurrently we always use our build tsconfigs from `/src`, whenever we see a `ts_project`, or `ng_project` target. This doesn't work for targets outside of `src` and ambiguously breaks the build. This commit makes this a more obvious failure mode.
Configuration menu - View commit details
-
Copy full SHA for d727507 - Browse repository at this point
Copy the full SHA d727507View commit details -
We've decided that this size testing infra is not useful after the MDC migration and can be removed; we can easily re-add if we want. Notably it was disabled/not running on CI (in a blocking mode) for months.
Configuration menu - View commit details
-
Copy full SHA for fcc146b - Browse repository at this point
Copy the full SHA fcc146bView commit details -
build: patch
ng_package
to produce partial output withng_project
Temporarily patches the legacy `ng_package` rule to properly request partial compilation output from the new `ng_project` rule targets.
Configuration menu - View commit details
-
Copy full SHA for ec5bbe5 - Browse repository at this point
Copy the full SHA ec5bbe5View commit details -
build: remove references to
ng_module
ruleThis commit removes references to the `ng_module` rule.
Configuration menu - View commit details
-
Copy full SHA for ccd4921 - Browse repository at this point
Copy the full SHA ccd4921View commit details -
build: patch core to include
ngDevMode
typesWe still use an older version of Angular core here. We recently switched to a whole new bundling approach for APF that fixes this long-term issue; and going forward `ngDevMode` types are included. In the main branch we already benefit from this, and don't need the patch.
Configuration menu - View commit details
-
Copy full SHA for dccd3ad - Browse repository at this point
Copy the full SHA dccd3adView commit details -
build: adjust
sass
compiler to work withrules_js
Migrates our custom Sass compiler to `rules_js`.
Configuration menu - View commit details
-
Copy full SHA for f26e96a - Browse repository at this point
Copy the full SHA f26e96aView commit details -
build: update
ts_project
interop to default torules_js
Instead of exposing the real `rules_js` flavor via the `_rjs` suffix, we now make this the default. This means we still temporarily have a way of accessing the interop layer. That layer is exposed via `_legacy` suffix targets.
Configuration menu - View commit details
-
Copy full SHA for 3217c84 - Browse repository at this point
Copy the full SHA 3217c84View commit details -
This commit combines `interop_deps` with `deps`; as we are in the stage where the interop is no longer the default; but rather opt-in via a `_legacy` suffix (until we migrate consuming rules further).
Configuration menu - View commit details
-
Copy full SHA for 8f58733 - Browse repository at this point
Copy the full SHA 8f58733View commit details -
fix(material/form-field): move error aria-live to parent container (#…
Configuration menu - View commit details
-
Copy full SHA for 491fce2 - Browse repository at this point
Copy the full SHA 491fce2View commit details -
docs: fix incorrect guide links after recent collision change (#30745)
We recently updated some of the filenames to avoid collisions. This commit fixes the rendering in the doc site. We already this initially with the overviews; but guides apparently are handled separately. We should explore why no tests fail here. (cherry picked from commit 601c781)
Configuration menu - View commit details
-
Copy full SHA for c14ff14 - Browse repository at this point
Copy the full SHA c14ff14View commit details
Commits on Mar 31, 2025
-
perf(cdk/drag-drop): fix performance regression when destroying items (…
…#30751) #30514 changed the logic that syncs destroyed items to apply to non-dragged items as well. This led to a performance regression where swapping out a large list of items can lock up the entire browser. The problem is that the items need to be re-sorted each time an item is destroyed which is expensive. These changes resolve the issue by keeping track of the last set of items and dropping the item from it without re-sorting. Fixes #30737. (cherry picked from commit 1372f52)
Configuration menu - View commit details
-
Copy full SHA for 0ee1593 - Browse repository at this point
Copy the full SHA 0ee1593View commit details
Commits on Apr 1, 2025
-
ci: update to latest dev-infra action versions (#30760)
Update to the latest actions (cherry picked from commit 9fb4018)
Configuration menu - View commit details
-
Copy full SHA for 7f9b7de - Browse repository at this point
Copy the full SHA 7f9b7deView commit details
Commits on Apr 2, 2025
-
[Patch] build: update angular shared dev-infra code to b3b3466 (#30777)
* build: update angular shared dev-infra code to b3b3466 * build: update to new infrastructure for depending on dev-infra browsers --------- Co-authored-by: Angular Robot <angular-robot@google.com>
Configuration menu - View commit details
-
Copy full SHA for f154d49 - Browse repository at this point
Copy the full SHA f154d49View commit details -
Configuration menu - View commit details
-
Copy full SHA for bdbf32a - Browse repository at this point
Copy the full SHA bdbf32aView commit details -
perf(cdk-experimental/column-resize): improve hover responsiveness of… (
#30708) * perf(cdk-experimental/column-resize): improve hover responsiveness of column resize with requestAnimationFrame Improve column resize performance when calling the `_updateOverlayHandleHeight()` method in the `cdk-experimental` column resize feature. By wrapping the `updateSize` call inside a `requestAnimationFrame()`, the height update is deferred to the next repaint, improving responsiveness during hover interactions. * perf(cdk-experimental/column-resize): improve hover responsiveness of column resize with requestAnimationFrame use afterNextRender write phase instead * fixup! perf(cdk-experimental/column-resize): improve hover responsiveness of column resize with requestAnimationFrame --------- Co-authored-by: Miles Malerba <mmalerba@google.com> (cherry picked from commit dd69023)
Configuration menu - View commit details
-
Copy full SHA for bc99b42 - Browse repository at this point
Copy the full SHA bc99b42View commit details -
Add a null check to autocomplete options (#30734)
* fix a bug with null options * Add a test (cherry picked from commit febc0eb)
Configuration menu - View commit details
-
Copy full SHA for d8aafee - Browse repository at this point
Copy the full SHA d8aafeeView commit details -
test: fix broken autocomplete test (#30782)
(cherry picked from commit 86a5ab0)
Configuration menu - View commit details
-
Copy full SHA for 15fac0d - Browse repository at this point
Copy the full SHA 15fac0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for c5c5d13 - Browse repository at this point
Copy the full SHA c5c5d13View commit details
There are no files selected for viewing