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: 13.1.1
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: 13.1.2
Choose a head ref
  • 12 commits
  • 21 files changed
  • 3 contributors

Commits on Dec 11, 2021

  1. refactor(@angular-devkit/core): update missing workspace file error t…

    …o explicitly call out `angular.json`
    
    Internally, we've gotten a lot of bugs of users running the CLI in the wrong directory and not understanding this error. Hopefully calling this out more explicitly will key users to double-check their working directory before filing a bug.
    
    (cherry picked from commit f9187bc)
    dgp1130 authored and alan-agius4 committed Dec 11, 2021
    Configuration menu
    Copy the full SHA
    c43c4e9 View commit details
    Browse the repository at this point in the history
  2. fix(@angular-devkit/build-angular): add tailwindcss support for ver…

    …sion 3
    
    (cherry picked from commit 0323a35)
    alan-agius4 committed Dec 11, 2021
    Configuration menu
    Copy the full SHA
    1ddbd75 View commit details
    Browse the repository at this point in the history
  3. test: remove disableTypeScriptVersionCheck from tests setup

    This option causes our CI to be green even when new projects are created with mismatching TypeScript versions, which causes failures in a real-world project.
    
    See #22333 for more context.
    
    (cherry picked from commit fb3b1fe)
    alan-agius4 committed Dec 11, 2021
    Configuration menu
    Copy the full SHA
    625ed49 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2021

  1. build: update @schematics/angular vendored TypeScript to 4.5

    (cherry picked from commit e65a59d)
    alan-agius4 committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    5b41198 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2021

  1. docs: add latest-versions.ts bump to minor/major version release in…

    …structions
    
    In v13.1, we forgot to increment this value and caused an error for early adopters of `13.1.0`. CI should catch this mistake now, and these docs will serve as a reminder to bump the value before release.
    
    (cherry picked from commit 6fdfe97)
    dgp1130 authored and alan-agius4 committed Dec 14, 2021
    Configuration menu
    Copy the full SHA
    05dffb5 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2021

  1. build: check ng-dev tool configuration in CI

    Adds a CI tests to verify that we don't merge accident breaking changes
    
    (cherry picked from commit 60036d1)
    alan-agius4 committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    20cc2e5 View commit details
    Browse the repository at this point in the history
  2. build: update @angular/dev-infra-private to latest version

    (cherry picked from commit ecc31f0)
    alan-agius4 committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    e0d1e19 View commit details
    Browse the repository at this point in the history
  3. build: add parallel script to build using bazel

    (cherry picked from commit ddec41e)
    kormide authored and alan-agius4 committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    859db7d View commit details
    Browse the repository at this point in the history
  4. fix(@angular-devkit/build-angular): only extract CSS styles when are …

    …specified in `styles` option
    
    This fixes an issue were in some cases when importing CSS in the compilation using import syntax caused CSS to be extracted which causes a runtime error.
    
    In general this is not something that we fully support since this is a specific webpack features and importing CSS as if they were ES modules not supported by the browsers. However, certain widely using libraries such as Monaco editor depend on this specific Webpack feature.
    
    Note: This non-standard unsupported behaviour will no longer be possible in the next major version.
    
    Closes #22358
    
    (cherry picked from commit f1d2873)
    alan-agius4 authored and dgp1130 committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    09c3826 View commit details
    Browse the repository at this point in the history
  5. fix(@angular-devkit/build-angular): display FS cache information when…

    … `verbose` option is used
    
    With this change we enabling Webpack to display additional cache related logs when the `verbose` option is enabled. This is helpful to debug cache misses.
    
    (cherry picked from commit 4719300)
    alan-agius4 authored and dgp1130 committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    adf925c View commit details
    Browse the repository at this point in the history
  6. perf(@ngtools/webpack): reduce redudant module rebuilds when cache is…

    … restored
    
    With this change we reduce the redundant module rebuilds when Webpack's FS cache is restored.
    
    Previously, when the cache was restored we caused all modules to be rebuild even though their contents didn't change. This is because the file emit history wasn't persisted to disk.
    
    This also caused the side effect that Webpack will create additional cache `pack` files due to the unnecessary module rebuilds, which ultimatly causes increase of the size of the cache on disk.
    
    (cherry picked from commit b03b9ee)
    alan-agius4 authored and dgp1130 committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    f31d7f7 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    da087a5 View commit details
    Browse the repository at this point in the history
Loading