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/angular
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: be6c246
Choose a base ref
...
head repository: angular/angular
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bdf8450
Choose a head ref
  • 20 commits
  • 236 files changed
  • 12 contributors

Commits on Jul 31, 2024

  1. refactor(docs-infra): Use new APIs in search dialog (#57215)

    This updates the search dialog component to use signal APIs
    
    PR Close #57215
    atscott authored and thePunderWoman committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    de7f5ac View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. fix(docs-infra): replace the uses of replaceAll with replace using re…

    …gex with g flag (#57232)
    
    Use the g flag in replace to perform a replaceAll
    
    PR Close #57232
    josephperrott authored and thePunderWoman committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    e8794dd View commit details
    Browse the repository at this point in the history
  2. Revert "fix(compiler): reduce chance of conflicts between generated f…

    …actory and local variables (#57181)" (#57230)
    
    This reverts commit 67e0940.
    
    PR Close #57230
    thePunderWoman committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    ad29621 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2024

  1. refactor(core): Remove clickmod support from Angular. (#57201)

    This was an old feature that mapped shift + click (et al) to "clickmod". This doesn't really make sense to add to Angular, so let's remove it.
    
    PR Close #57201
    iteriani authored and thePunderWoman committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    0c72976 View commit details
    Browse the repository at this point in the history
  2. fix(language-service): avoid generating TS suggestion diagnostics for…

    … templates (#56241)
    
    Angular's template files are not valid TypeScript. Attempting to get suggestion
    diagnostics from the underlying TypeScript language service will result in
    a large amount of false positives. Only actual TypeScript files should
    be analyzed by the underlying TypeScript language service for suggestions.
    
    PR Close #56241
    clydin authored and thePunderWoman committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    6ac209c View commit details
    Browse the repository at this point in the history
  3. docs(devtools): remove duplicate text at end of release.md doc (#57222

    )
    
    Somehow the last few lines got duplicated at the end of this doc. Definitely not needed.
    
    PR Close #57222
    dgp1130 authored and thePunderWoman committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    168eed2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    523f639 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. build: lock file maintenance (#57256)

    See associated pull request for more information.
    
    PR Close #57256
    angular-robot authored and thePunderWoman committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    183715a View commit details
    Browse the repository at this point in the history
  2. fix(compiler-cli): support JIT transforms before other transforms mod…

    …ifying classes (#57262)
    
    Similar to a previous fix that intended to make the JIT transforms
    compatible with pre-transforms like e.g. Tsickle, we need to solve
    an additional issue where the class properties are synthetic and result
    in an `getSourceFile() => undefined` invocation that breaks the import
    insertion, causing errors like:
    
    ```
    TypeError: Cannot read properties of undefined (reading 'fileName')
    ```
    
    PR Close #57262
    devversion authored and thePunderWoman committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    afb05ff View commit details
    Browse the repository at this point in the history
  3. refactor(docs-infra): migrate api-gen from dev-infra into the repo (#…

    …57241)
    
    Move the api-gen pipeline into the shared-docs directory.
    
    PR Close #57241
    josephperrott authored and thePunderWoman committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    6eac1b3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6b2a4c0 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. refactor(docs-infra): Use new APIs in search dialog (#57269)

    This reverts commit 9109f31.
    
    PR Close #57269
    atscott authored and thePunderWoman committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    596c251 View commit details
    Browse the repository at this point in the history
  2. build: update actions/upload-artifact action to v4.3.5 (#57270)

    See associated pull request for more information.
    
    PR Close #57270
    angular-robot authored and thePunderWoman committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    4cbb279 View commit details
    Browse the repository at this point in the history
  3. build: update actions/upload-artifact action to v4.3.5 (#57271)

    See associated pull request for more information.
    
    PR Close #57271
    angular-robot authored and thePunderWoman committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    8c029c6 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. docs(router): update initial navigation SSR note (#57245)

    With rephrasing by @AndrewKushnir
    
    PR Close #57245
    davidlj95 authored and thePunderWoman committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    0c12d8e View commit details
    Browse the repository at this point in the history
  2. refactor(core): replace usages of removeChild (#57203)

    These changes replace most usages of `removeChild` with `remove`. The latter has the advantage of not having to look up the `parentNode` and ensure that the child being removed actually belongs to the specific parent.
    
    The refactor should be fairly safe since all the browsers we cover support `remove`. [Something similar was done in Components](angular/components#23592) some time ago and there haven't been any bug reports as a result.
    
    PR Close #57203
    crisbeto authored and thePunderWoman committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    e366473 View commit details
    Browse the repository at this point in the history
  3. perf(compiler-cli): improve performance of `interpolatedSignalNotInvo…

    …ked` extended diagnostic (#57291)
    
    This commit addresses a performance bottleneck in the `interpolatedSignalNotInvoked` extended
    diagnostic by querying directive metadata instead of consulting the type-checker to determine if
    a property binding corresponds with an input.
    
    Fixes #57287
    
    PR Close #57291
    JoostK authored and thePunderWoman committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    bae54a1 View commit details
    Browse the repository at this point in the history
  4. fix(compiler): reduce chance of conflicts between generated factory a…

    …nd local variables (#57181)
    
    Currently we use some short variable names like `t` and `r` in the generated factory functions. They can conflict with local symbols with the same names, if they're used for DI.
    
    These changes rename the parameters to reduce the change for conflicts.
    
    Fixes #57168.
    
    PR Close #57181
    crisbeto authored and thePunderWoman committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    6a99f83 View commit details
    Browse the repository at this point in the history
  5. fix(zone.js): Add support for addition jest functions. (#57280)

    This commit add support for `test.failing` and `it.failing`.
    
    Fixes #57277
    
    PR Close #57280
    JeanMeche authored and thePunderWoman committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    69540d3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bdf8450 View commit details
    Browse the repository at this point in the history
Loading