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-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v21.2.14
Choose a base ref
...
head repository: angular/angular-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v21.2.15
Choose a head ref
  • 5 commits
  • 8 files changed
  • 2 contributors

Commits on Jun 10, 2026

  1. test(@angular/cli): remove unscoped authentication test cases from re…

    …gistry tests
    
    Modern package managers do not support unscoped authentication, and Yarn Classic's
    metadata command (yarn info) does not propagate unscoped credentials correctly,
    leading to 403 Forbidden failures on secure registries during ng update and ng add.
    
    This commit removes the unscoped authentication test cases from both add and
    update secure registry E2E tests, and cleans up the
    createNpmConfigForAuthentication helper to default to scoped authentication.
    clydin committed Jun 10, 2026
    Configuration menu
    Copy the full SHA
    2c25333 View commit details
    Browse the repository at this point in the history
  2. fix(@angular/cli): remove forceAuth and unscoped credential parsing

    Remove the non-standard forceAuth option and custom parsing for unscoped registry
    credentials (token, username, password, auth) in package-metadata.ts.
    
    Since the npm CLI does not support unscoped credentials and ignores them by
    default, this aligning removes the unnecessary parsing complexity. Unscoped
    credentials will now behave identically to any other standard configuration
    property, falling through to default configuration parsing.
    clydin committed Jun 10, 2026
    Configuration menu
    Copy the full SHA
    42ac0ed View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bdc3d2f View commit details
    Browse the repository at this point in the history
  4. fix(@angular/cli): support registry metadata fetching under bun packa…

    …ge manager
    
    Bun's `pm view` command does not support requesting multiple fields at once (e.g. `pm view <pkg> dist-tags versions --json`), which is required by the default package manager abstraction to fetch package metadata during version compatibility search.
    
    This change introduces a custom `getRegistryMetadata` handler in the package manager descriptor, allowing individual package managers to override registry metadata fetching entirely. The `bun` descriptor now implements this by querying `dist-tags` and `versions` separately in parallel, and returning the aggregated metadata object.
    clydin committed Jun 10, 2026
    Configuration menu
    Copy the full SHA
    c7a7f19 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2026

  1. Configuration menu
    Copy the full SHA
    d318ddd View commit details
    Browse the repository at this point in the history
Loading