Skip to content
Permalink
master

Commits on Oct 23, 2020

  1. build: update terser to version 5.3.8

    renovate-bot authored and clydin committed Oct 23, 2020
  2. build: update jest-worker to version 26.6.1

    renovate-bot authored and clydin committed Oct 23, 2020
  3. docs: add `rm -rf node_modules/` to release docs

    In the latest release, I was not able to build even after running `yarn` to refresh dependencies. Eventually, we tracked
    the issue down to `rm -rf node_modules/`. There may be some instances where this can be necessary to ensure clean
    builds.
    dgp1130 authored and clydin committed Oct 23, 2020

Commits on Oct 22, 2020

  1. build: add husky ignored files to .gitignore

    Ahead of upgrading to husky v5, adding the shell file location
    to .gitignore to prevent it from randomly showing up when devs
    checkout older branches.
    josephperrott authored and clydin committed Oct 22, 2020
  2. test(@angular-devkit/build-webpack): update webpack 5 E2E to 5.1.3

    clydin committed Oct 22, 2020
  3. fix(@angular-devkit/build-webpack): fully close Webpack 5 compiler

    The Webpack 5 compiler now contains a close function that should be called when the compiler is finished.
    clydin committed Oct 22, 2020
  4. fix(@angular-devkit/build-angular): don't add publicHost pathname to …

    …sockPath in dev-server
    
    With this change we remove the unintentional breaking change that added publicHost pathname to sockPath instead we now prepend the sockPath with the servePath, which can be either the passed servePath option, baseHref or deployUrl.
    alan-agius4 committed Oct 22, 2020
  5. refactor(@angular-devkit/build-angular): remove legacy server bundle …

    …guess logic
    
    Closes #16353
    alan-agius4 committed Oct 22, 2020
  6. fix(@schematics/angular): remove lint fix default value

    Since will remove lintFix usage warnings when the option is set by a default of another schematic.
    
    Example when executing
    ```
    ng generate module customers --route customers --module app.module
    ```
    
    The lintFix default of the module schematic will be passed down to the component schematic which would cause a warning to be shown.
    
    Closes #19169
    alan-agius4 committed Oct 22, 2020
  7. build: update angular packages

    renovate-bot authored and alan-agius4 committed Oct 22, 2020
  8. test(@angular/cli): use local registry in update-1.0-yarn test

    kyliau authored and alan-agius4 committed Oct 22, 2020

Commits on Oct 21, 2020

  1. Revert "release: v11.0.0-rc.0"

    This reverts commit a986ce7.
    
    RC should be cut from the `11.0.x` branch, not from `master`.
    dgp1130 committed Oct 21, 2020
  2. release: v11.0.0-rc.0

    dgp1130 committed Oct 21, 2020
  3. feat(@angular-devkit/build-angular): support following symlinked asse…

    …t directories
    
    By default subdirectories within a symlinked directory are not searched by a glob.  The new `followSymlinks` option for the longhand form of the `assets` browser builder option now allows opting in to search such subdirectories.
    clydin authored and alan-agius4 committed Oct 21, 2020
  4. build: update `lock-closed` GitHub action to latest version

    This commit updates the version of the `dev-infra/lock-closed` GitHub
    action to the latest version, that includes the fix from
    angular/dev-infra#80.
    gkalpak authored and alan-agius4 committed Oct 21, 2020
  5. fix(@angular/cli): use newer update command if global version is newer

    This allows improvements and bugfixes in later versions of the update command to be used in projects with older versions of the Angular CLI that do not have bootstrapping (<8.3.13).
    clydin authored and alan-agius4 committed Oct 21, 2020
  6. fix(@angular/cli): coerce prompt answers to requested property types

    This change converts answers from prompts into the property type requested from the schema.  This allows properties that expect a number to correctly validate when an input prompt is used.
    clydin authored and alan-agius4 committed Oct 21, 2020
  7. fix(@angular-devkit/core): allow prompt providers to access property …

    …types
    
    This allows prompt providers to adjust their logic based on the type of property requested.
    clydin authored and alan-agius4 committed Oct 21, 2020
  8. refactor(@angular/cli): rename `ng xi18n` to `ng extract-i18n`

    `ng i18n-extract` and `ng xi18n` has been deprecated in favor of `ng extract-i18n` to have a better intuitive naming and match the architect key in `angular.json`.
    alan-agius4 committed Oct 21, 2020
  9. docs: remove `=true` from `--next`

    `=true` us redundant
    alan-agius4 committed Oct 21, 2020
  10. docs: update further help section in readme

    alan-agius4 committed Oct 21, 2020
  11. build: update rollup to version 2.32.1

    renovate-bot authored and alan-agius4 committed Oct 21, 2020
  12. build: update angular packages

    renovate-bot authored and alan-agius4 committed Oct 21, 2020
  13. build: update source-map-support to version 0.5.19

    renovate-bot authored and alan-agius4 committed Oct 21, 2020
  14. build: update enhanced-resolve to version 5.3.0

    renovate-bot authored and alan-agius4 committed Oct 21, 2020
  15. build: update mini-css-extract-plugin to version 1.1.1

    renovate-bot authored and alan-agius4 committed Oct 21, 2020
  16. refactor(@angular-devkit/schematics): minor cleanup to reduce utility…

    … imports
    clydin authored and alan-agius4 committed Oct 21, 2020

Commits on Oct 20, 2020

  1. fix(@angular/cli): skip searching deprecated packages with ng add

    When attempting to add a package via the add command, packages that have been marked as deprecated will no longer be installed when the deprecated package's peer dependencies match the project's dependencies.
    clydin authored and alan-agius4 committed Oct 20, 2020
  2. refactor(@angular-devkit/core): deprecate unused isFile/isDirectory u…

    …tilities
    
    `isFile` and `isDirectory` are tooling only APIs for Node.js that are no longer used by the Angular CLI.
    clydin authored and alan-agius4 committed Oct 20, 2020
  3. ci: remove docs-preview branch filter

    This branch no longer exists
    alan-agius4 committed Oct 20, 2020
  4. fix(@angular/cli): include deprecated option in JSON help

    This option is used to mark deprecated options as such in AIO.
    alan-agius4 committed Oct 20, 2020
  5. feat(@schematics/angular): add migration to remove rebaseRootRelative…

    …CssUrls from workspace config
    alan-agius4 committed Oct 20, 2020
  6. refactor(@angular-devkit/build-angular): remove deprecated browser bu…

    …ild option rebaseRootRelativeCssUrls
    
    BREAKING CHANGE:
    
    Deprecated `rebaseRootRelativeCssUrls` browser builder option has been removed without replacement. This option was used to change root relative URLs in stylesheets to include base HREF and deploy URL and was used only for compatibility and transition as this behavior is non-standard.
    alan-agius4 committed Oct 20, 2020
Older
You can’t perform that action at this time.