Update angular-cli monorepo to v13 (major)#271
Open
renovate-config-app[bot] wants to merge 1 commit intomainfrom
Open
Update angular-cli monorepo to v13 (major)#271renovate-config-app[bot] wants to merge 1 commit intomainfrom
renovate-config-app[bot] wants to merge 1 commit intomainfrom
Conversation
Author
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: package-lock.json |
5b1c1c9 to
b44d8a8
Compare
60e22db to
1cd9b54
Compare
0a5a38c to
ece84e5
Compare
93f6418 to
8dc8e10
Compare
5b70fd0 to
561827b
Compare
6179566 to
e49e192
Compare
2aadf8b to
80d2126
Compare
5824739 to
daf904e
Compare
1ded544 to
80cc7da
Compare
975373b to
f0004a0
Compare
aad205d to
c7dce99
Compare
c64e15b to
8497916
Compare
011b60b to
cd61f07
Compare
cd61f07 to
fdd3e47
Compare
2a49dda to
4e61473
Compare
3db9359 to
4ab6855
Compare
73cd882 to
7c87d2a
Compare
a2fe86d to
019ba3a
Compare
019ba3a to
edae7a2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
12.2.2->13.0.112.2.2->13.0.112.2.2->13.0.112.2.2->13.0.1Release Notes
angular/angular-cli
v13.0.1Compare Source
@schematics/angular
Special Thanks
Charles Lyding and Joey Perrott
v13.0.0Compare Source
Breaking Changes
@angular/cli
12.20.@schematics/angular
classlist.jsandweb-animations-jsare removed from application polyfills and uninstalled from the package. These were only needed for compatibility with Internet Explorer, which is no longer needed now that Angular only supports evergreen browsers. See: https://angular.io/guide/browser-support.Add the following to the polyfills file for an app to re-add these packages:
And then run:
@schematics/angulardeprecated options.lintFixhave been removed from all schematics.ng lint --fixshould be used instead.legacyBrowsershave been removed from theapplicationschematics since IE 11 is no longer supported.configurationhas been removed from theweb-workeras it was unused.targethas been removed from theservice-workeras it was unused.@angular-devkit/build-angular
Support for
karma-coverage-instanbul-reporterhas been dropped in favor of the official karma coverage pluginkarma-coverage.Support for
node-sasshas been removed.sasswill be used by default to compile SASS and SCSS files.NG_PERSISTENT_BUILD_CACHEenvironment variable option no longer have effect. Configurecli.cachein the workspace configuration instead.{ "$schema": "./node_modules/@​angular/cli/lib/config/schema.json", "version": 1, "cli": { "cache": { "enabled": true, "path": ".custom-cache-path", "environment": "all" } } ... }The automatic inclusion of Angular-required ES2015 polyfills to support ES5 browsers has been removed. Previously when targetting ES5 within the application's TypeScript configuration or listing an ES5 requiring browser in the browserslist file, Angular-required polyfills were included in the built application. However, with Angular no longer supporting IE11, there are now no browsers officially supported by Angular that would require these polyfills. As a result, the automatic inclusion of these ES2015 polyfills has been removed. Any polyfills manually added to an application's code are not affected by this change.
With this change a number of deprecated dev-server builder options which proxied to the browser builder have been removed. These options should be configured in the browser builder instead.
The removed options are:
aotsourceMapdeployUrlbaseHrefvendorChunkcommonChunkoptimizationprogressWith this change we removed several deprecated builder options
extractCsshas been removed from the browser builder. CSS is now always extracted.servePathDefaultWarningandhmrWarninghave been removed from the dev-server builder. These options had no effect.Deprecated
@angular-devkit/build-angular:tslintbuilder has been removed. Use https://github.com/angular-eslint/angular-eslint instead.Differential loading support has been removed. With Angular no longer supporting IE11, there are now no browsers officially supported by Angular that require ES5 code. As a result, differential loading's functionality for creating and conditionally loading ES5 and ES2015+ variants of an application is no longer required.
TypeScript versions prior to 4.4 are no longer supported.
The dev-server now uses WebSockets to communicate changes to the browser during HMR and live-reloaded. If during your development you are using a proxy you will need to enable proxying of WebSockets.
We remove inlining of Google fonts in WOFF format since IE 11 is no longer supported. Other supported browsers use WOFF2.
@angular-devkit/build-webpack
webpack-dev-serverversion 3 has been removed. For more information about the migration please see: https://github.com/webpack/webpack-dev-server/blob/master/migration-v4.mdNote: this change only affects users depending on
@angular-devkit/build-webpackdirectly.@angular-devkit/core
idin schemas. Use$idinstead.Note: this only effects schematics and builders authors.
@angular-devkit/schematics
isActionhas been removed without replacement as it was unused.With this change we remove the following deprecated APIs
TslintFixTaskTslintFixTaskOptionsNote: this only effects schematics developers.
@ngtools/webpack
Deprecated
inlineStyleMimeTypeoption has been removed fromAngularWebpackPluginOptions. UseinlineStyleFileExtensioninstead.Applications directly using the
webpack-cliand not the Angular CLI to build must set the environment variableDISABLE_V8_COMPILE_CACHE=1. The@ngtools/webpackpackage now uses dynamic imports to provide support for the ESM@angular/compiler-clipackage. Thev8-compile-cachepackage used by thewebpack-clidoes not currently support dynamic import expressions and will cause builds to fail if the environment variable is not specified. Applications using the Angular CLI are not affected by this limitation.Deprecations
@angular-devkit/build-optimizerIt's functionality has been included in
@angular-devkit/build-angularso this package is no longer needed by the CLI and we will stop publishing the package soon. It has been an experimental (never hit1.0.0) and internal (only used by Angular itself) package and should be not be used directly by others.@angular-devkit/build-angular
NG_BUILD_CACHEenvironment variable option will be removed in the next major version. Configurecli.cachein the workspace configuration instead.@angular/cli
enginesto requirenode12.20.0ng updateoutput for Angular packages@schematics/angular
/.angular/cacheto.gitignorenoImplicitOverrideandnoPropertyAccessFromIndexSignatureto workspace tsconfigdestroyAfterEachin newly generated spec filesrenderModuleFactoryfrom server filetargetandliboptions for library tsconfig@angular-devkit/build-optimizeras deprecated.@angular-devkit/architect
@angular-devkit/build-angular
type=moduleto all scripts tagskarma-coverage-instanbul-reporternode-sasswebpack-dev-serverto version 4es2020andes2015conditional exports@angular/localize/toolsnot respected@angular/localizedetection prior to webpack initializationxxhash64@angular-devkit/build-webpack
webpack-dev-serverto version 4@angular-devkit/core
chokidarNodeJsSyncHost/NodeJsAsyncHostdelete operation@angular-devkit/schematics
isAction@ngtools/webpack
inlineStyleMimeTypeoption@angular/compiler-clipackageSpecial Thanks
Alan Agius, Charles Lyding, Doug Parker, Douglas Parker, Joey Perrott, Kristiyan Kostadinov, Lukas Spirig and Paul Gschwendtner
v12.2.13Compare Source
@angular-devkit/build-angular
Special Thanks
Charles Lyding and Doug Parker
v12.2.12Compare Source
12.2.12 (2021-10-27)
@angular-devkit/build-angular
crittersto version0.0.12Special Thanks
Alan Agius, Charles Lyding, Joey Perrott and Mikhail Vasiliev
v12.2.11Compare Source
12.2.11 (2021-10-20)
@angular/cli
@angular-devkit/build-angular
esbuildto 0.13.8mini-css-extract-pluginto 2.4.2Special Thanks
Alan Agius, Charles Lyding, Extacy and Sushrit_Lawliet
v12.2.10Compare Source
12.2.10 (2021-10-13)
@schematics/angular
@angular/cli
UA-00000-0format in analyticstrackingiduuid@angular-devkit/build-angular
es2015conditional exportsSpecial Thanks
Alan Agius and Charles Lyding
v12.2.9Compare Source
@angular-devkit/build-angular
esbuildto0.13.4Special Thanks
Alan Agius and Charles Lyding
v12.2.8Compare Source
@angular-devkit/build-angular
Special Thanks
Paul Gschwendtner
v12.2.7Compare Source
@angular-devkit/build-angular
Special Thanks
Alan Agius and Charles Lyding
v12.2.6Compare Source
@angular/cli
FORCE_COLORwhen stdout is not instance ofWriteStream@angular-devkit/build-angular
FORCE_COLORwhen stdout is not instance ofWriteStreamSpecial Thanks
Alan Agius
v12.2.5Compare Source
@angular-devkit/build-angular
Special Thanks:
Alan Agius and Charles Lyding
v12.2.4Compare Source
@angular-devkit/build-angular
esbuildto0.12.24mini-css-extract-pluginto2.2.1Special Thanks
Alan Agius
v12.2.3Compare Source
@angular-devkit/build-angular
Special Thanks:
Alan Agius and Trevor Karjanis
Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR has been generated by Renovate Bot.