-
Notifications
You must be signed in to change notification settings - Fork 27.1k
Comparing changes
Open a pull request
base repository: angular/angular
base: 15.2.4
head repository: angular/angular
compare: 15.2.5
- 14 commits
- 46 files changed
- 11 contributors
Commits on Mar 22, 2023
-
fix(router): fix #49457 outlet activating with old info (#49459)
Avoid activating outlet with old info if route was changed before outlet activated PR Close #49459
Configuration menu - View commit details
-
Copy full SHA for a844435 - Browse repository at this point
Copy the full SHA a844435View commit details
Commits on Mar 23, 2023
-
fix(compiler): handle trailing comma in object literal (#49535)
Configuration menu - View commit details
-
Copy full SHA for c3cff35 - Browse repository at this point
Copy the full SHA c3cff35View commit details -
docs: add missing word (#49565)
I have added a word to make the sentence more meaningful. PR Close #49565
Configuration menu - View commit details
-
Copy full SHA for 3f8e4fb - Browse repository at this point
Copy the full SHA 3f8e4fbView commit details
Commits on Mar 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 29c682c - Browse repository at this point
Copy the full SHA 29c682cView commit details -
build: update actions/checkout digest to 8f4b7f8 (#49577)
See associated pull request for more information. PR Close #49577
Configuration menu - View commit details
-
Copy full SHA for 656a388 - Browse repository at this point
Copy the full SHA 656a388View commit details -
fix(router): Ensure Router preloading works with lazy component and s…
Configuration menu - View commit details
-
Copy full SHA for 978d37f - Browse repository at this point
Copy the full SHA 978d37fView commit details
Commits on Mar 27, 2023
-
fix(common): invalid ImageKit transformation (#49201)
q-auto is an invalid/unsupported transformation and should not be used PR Close #49201
Configuration menu - View commit details
-
Copy full SHA for ca5acad - Browse repository at this point
Copy the full SHA ca5acadView commit details -
ci: update pullapprove config to reflect current availability (#49592)
Updating PullApprove to reflect current availability. Looks like it cannot be set via UI anymore... PR Close #49592
Configuration menu - View commit details
-
Copy full SHA for 0fecbab - Browse repository at this point
Copy the full SHA 0fecbabView commit details
Commits on Mar 28, 2023
-
refactor(common): add missing
overrideto satisfy the linter (#49599)Linter was complaining of missing `override` despite being OK on the CI. this commits add them. PR Close #49599
Configuration menu - View commit details
-
Copy full SHA for 4c89a24 - Browse repository at this point
Copy the full SHA 4c89a24View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ed4083 - Browse repository at this point
Copy the full SHA 8ed4083View commit details -
refactor(core): Remove usage of deprecated
Injector.create()(#49606)This commit removes all usages of the deprecated `Injector.create` method but does not remove the deprecated signature itself. PR Close #49606
Configuration menu - View commit details
-
Copy full SHA for 6d6fc12 - Browse repository at this point
Copy the full SHA 6d6fc12View commit details -
fix(core): set style property value to empty string instead of an inv…
…alid value (#49460) Currently when the value of a styling property that has a unit is empty string a invalid value is generated. Example: `[style.width.px] = ""` will generate a value of `"px"`, when instead it should be `""`. This causes browser to reset the value to an empty string. This is however not the case in Domino with changes in angular/domino@bfc9114. This commit fixes the issues and generate correct values. PR Close #49460
Configuration menu - View commit details
-
Copy full SHA for d201fc2 - Browse repository at this point
Copy the full SHA d201fc2View commit details -
fix(compiler): do not unquote CSS values (#49460)
Currently we are unsafely unquoting CSS values which in some cases causes valid values to become invalid and invalid values to become valid. Example: ```html <div style="width:"1px;""></div> ``` In the above case, `width` has an invalid value of `"1px"`, however the compiler will transform it to `1px` which makes it valid. On the other hand, in the below case ```html <div style="content:"foo""></div> ``` `content` has a valid value of `"foo"`, but since the compiler unwraps it to `foo` it becomes invalid. For correctness, we should not remove quotes. ```js const div = document.createElement('div'); div.style.width='"1px"'; div.style.content='foo'; div.style.width; // '' div.style.content; // '' div.style.width='1px'; div.style.content='"foo"'; div.style.width; // '1px' div.style.content; // '"foo"' ``` More information about values can be found https://www.w3.org/TR/CSS21/syndata.html#value-def-identifier PR Close #49460Configuration menu - View commit details
-
Copy full SHA for 077f6b4 - Browse repository at this point
Copy the full SHA 077f6b4View commit details
Commits on Mar 29, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e78a2a4 - Browse repository at this point
Copy the full SHA e78a2a4View 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 15.2.4...15.2.5