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: g3
Choose a base ref
...
head repository: angular/angular
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 12 commits
  • 57 files changed
  • 9 contributors

Commits on Jun 5, 2026

  1. build: update cross-repo angular dependencies

    See associated pull request for more information.
    angular-robot authored and atscott committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    240cb0d View commit details
    Browse the repository at this point in the history
  2. build(vscode-extension): disable make_latest on github release public…

    …ation
    
    Previously, when releasing the VS Code extension, the draft release
    was created with make_latest: 'false', but the PATCH request that
    published the draft release omitted this option. As a result, GitHub
    automatically designated the published release as the 'latest' release.
    
    This change explicitly passes make_latest: 'false' during the publish
    request to prevent it from automatically becoming the latest release.
    alan-agius4 authored and atscott committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    232f250 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0197be3 View commit details
    Browse the repository at this point in the history
  4. fix(vscode-extension): inspect tsdk configurations correctly

    Inspect both 'js/ts.tsdk.path' and 'typescript.tsdk' configurations separately, as the inspect method always returns a truthy object.
    
    fixes #69145
    atscott committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    ed2420c View commit details
    Browse the repository at this point in the history
  5. build: update all github actions

    See associated pull request for more information.
    angular-robot authored and atscott committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    f759f27 View commit details
    Browse the repository at this point in the history
  6. docs: trim transparent padding from v22 event hero image

    The v22 event hero PNG shipped with a wide transparent margin baked into
    its 960x540 canvas. Under the shared `img { width: 100% }` rule that empty
    border stretched along with the artwork, leaving visible space around the
    image. Trims the canvas to the artwork bounds (831x473) so it renders
    flush; the retained pixels are unchanged and the file shrinks from about
    795 KB to 568 KB.
    erkamyaman authored and atscott committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    af7cb63 View commit details
    Browse the repository at this point in the history
  7. fix(common): Limits date format string length

    Introduces a maximum length of 256 characters for date format strings.
    
    This prevents potential Denial of Service (DoS) attacks by throwing an
    `INVALID_DATE_FORMAT` error if an excessively long format string is
    provided to `formatDate` or `DatePipe`, safeguarding against performance
    degradation or application crashes.
    SkyZeroZx authored and atscott committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    eeb03f4 View commit details
    Browse the repository at this point in the history
  8. build: update bazel dependencies to v3.2.1

    See associated pull request for more information.
    angular-robot authored and atscott committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    6899f1a View commit details
    Browse the repository at this point in the history
  9. feat(devtools): implement a signal graph nodes search

    Implement singal graph nodes search for easier navigation within graphs with large sets of nodes. The search provides filtering by node type via `type:<SIGNAL_TYPE>` syntax.
    hawkgs authored Jun 5, 2026
    Configuration menu
    Copy the full SHA
    97be5f2 View commit details
    Browse the repository at this point in the history
  10. refactor(core): convert LocaleDataIndex from enum to const object

    TypeScript enums compile to self-executing function expressions that
    are not tree-shakable, even when unused. Replace LocaleDataIndex with
    a plain const object using `as const` to produce the same numeric
    indices and literal types without the IIFE side-effect.
    arturovt authored and atscott committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    d3239a3 View commit details
    Browse the repository at this point in the history
  11. build: lock file maintenance

    See associated pull request for more information.
    angular-robot authored and atscott committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    e0d9ea2 View commit details
    Browse the repository at this point in the history
  12. fix(common): use cryptographically secure SHA-256 for transfer cache …

    …key generation
    
    Replace the custom 64-bit non-cryptographic combined DJB2 hashing implementation in HttpTransferCache with a robust, pure JavaScript, synchronous SHA-256 algorithm.
    alan-agius4 authored Jun 5, 2026
    Configuration menu
    Copy the full SHA
    5f36274 View commit details
    Browse the repository at this point in the history
Loading