-
Notifications
You must be signed in to change notification settings - Fork 27k
Comparing changes
Open a pull request
base repository: angular/angular
base: 18.2.11
head repository: angular/angular
compare: 18.2.12
- 12 commits
- 18 files changed
- 9 contributors
Commits on Nov 7, 2024
-
docs(docs-infra): add support for
@remarks(#58523)In TSDoc, we currently handle the `@usageNotes` annotation, but this is not a standard TSDoc tag. Instead, the `@remarks` annotation is the correct standard, which is used in the Angular CLI repo and on the SSR package. This change ensures that `@remarks` is treated the same as `@usageNotes` during the transform process. PR Close #58523
Configuration menu - View commit details
-
Copy full SHA for 5a236c2 - Browse repository at this point
Copy the full SHA 5a236c2View commit details
Commits on Nov 8, 2024
-
docs(docs-infra): update default generic values and add constraints f…
…or type parameters in functions (#58548) Before ```typescript createNodeRequestHandler( handler: T ): T; ``` ```typescript class NgIf<T> { @input() set ngIf(value: T); @input() set ngIfThen(value: TemplateRef<NgIfContext<T>> | null); @input() set ngIfElse(value: TemplateRef<NgIfContext<T>> | null); static ngTemplateGuard_ngIf: "binding"; static ngTemplateContextGuard<T>(dir: NgIf<T>, ctx: any): boolean; } ``` Now ```typescript createNodeRequestHandler<T extends NodeRequestHandlerFunction>( handler: T ): T; ``` ```typescript class NgIf<T = unknown> { @input() set ngIf(value: T); @input() set ngIfThen(value: TemplateRef<NgIfContext<T>> | null); @input() set ngIfElse(value: TemplateRef<NgIfContext<T>> | null); static ngTemplateGuard_ngIf: "binding"; static ngTemplateContextGuard<T>(dir: NgIf<T>, ctx: any): boolean; } ``` PR Close #58548
Configuration menu - View commit details
-
Copy full SHA for 9199dd9 - Browse repository at this point
Copy the full SHA 9199dd9View commit details -
fix(compiler-cli): correct extraction of generics from type aliases (#…
Configuration menu - View commit details
-
Copy full SHA for 4c38160 - Browse repository at this point
Copy the full SHA 4c38160View commit details -
fix(docs-infra): retain
functionkeyword in API definitions (#58561)**Before:** ```ts animate( timings: string | number, styles?: AnimationStyleMetadata | AnimationKeyframesSequenceMetadata | null ): AnimationAnimateMetadata; ``` **Now:** ```ts function animate( timings: string | number, styles?: AnimationStyleMetadata | AnimationKeyframesSequenceMetadata | null ): AnimationAnimateMetadata; ``` PR Close #58561
Configuration menu - View commit details
-
Copy full SHA for 3d8f827 - Browse repository at this point
Copy the full SHA 3d8f827View commit details -
docs: remove foreach from testing.md as it's not a JS function (#58565)
Foreach was present in the documentation even though it's not valid Javascript PR Close #58565
Configuration menu - View commit details
-
Copy full SHA for f3567cc - Browse repository at this point
Copy the full SHA f3567ccView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2fbc7f0 - Browse repository at this point
Copy the full SHA 2fbc7f0View commit details
Commits on Nov 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 90603ec - Browse repository at this point
Copy the full SHA 90603ecView commit details -
build: update github/codeql-action action to v3.27.2 (#58604)
See associated pull request for more information. PR Close #58604
Configuration menu - View commit details
-
Copy full SHA for a1fd551 - Browse repository at this point
Copy the full SHA a1fd551View commit details -
Configuration menu - View commit details
-
Copy full SHA for caeeee7 - Browse repository at this point
Copy the full SHA caeeee7View commit details
Commits on Nov 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8e5228f - Browse repository at this point
Copy the full SHA 8e5228fView commit details -
Configuration menu - View commit details
-
Copy full SHA for d9009c1 - Browse repository at this point
Copy the full SHA d9009c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7672145 - Browse repository at this point
Copy the full SHA 7672145View 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 18.2.11...18.2.12