Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update angular #24239

Merged
merged 1 commit into from Nov 21, 2022
Merged

Conversation

angular-robot
Copy link
Collaborator

@angular-robot angular-robot commented Nov 16, 2022

This PR contains the following updates:

Package Type Update Change
@angular/animations dependencies digest 9f9e6f2 -> 36a4ff3
@angular/animations devDependencies patch 15.0.0-rc.4 -> 15.0.0
@angular/build-tooling devDependencies digest 9c736a6 -> 15abe38
@angular/cdk dependencies digest 3f5d149 -> 507f9eb
@angular/cdk devDependencies major 14.2.7 -> 15.0.0
@angular/common dependencies digest d88b9be -> bd12824
@angular/common peerDependencies major ^14.0.0 -> ^15.0.0
@angular/common devDependencies patch 15.0.0-rc.4 -> 15.0.0
@angular/compiler dependencies digest 67a06d4 -> f418d12
@angular/compiler devDependencies patch 15.0.0-rc.4 -> 15.0.0
@angular/compiler-cli dependencies digest a0ff164 -> 0b6868b
@angular/compiler-cli (source) devDependencies patch 15.0.0-rc.4 -> 15.0.0
@angular/core dependencies digest bf50219 -> 23def6a
@angular/core peerDependencies major ^14.0.0 -> ^15.0.0
@angular/core devDependencies patch 15.0.0-rc.4 -> 15.0.0
@angular/forms dependencies digest 5d01063 -> 57ceb79
@angular/forms devDependencies patch 15.0.0-rc.4 -> 15.0.0
@angular/language-service dependencies digest adf7f2c -> 4d252ac
@angular/localize dependencies digest e67e39c -> f67d405
@angular/localize devDependencies patch 15.0.0-rc.4 -> 15.0.0
@angular/material dependencies digest 448a651 -> 8cb45d0
@angular/material devDependencies major 14.2.7 -> 15.0.0
@angular/material-moment-adapter dependencies digest 00bddab -> 6a715ef
@angular/ng-dev devDependencies digest eee0121 -> d33ce23
@angular/platform-browser dependencies digest 59476fb -> bbf8824
@angular/platform-browser devDependencies patch 15.0.0-rc.4 -> 15.0.0
@angular/platform-browser-dynamic dependencies digest 7a55d4d -> b612428
@angular/platform-browser-dynamic devDependencies patch 15.0.0-rc.4 -> 15.0.0
@angular/platform-server dependencies digest 4c98ba4 -> 6c4ed63
@angular/platform-server devDependencies patch 15.0.0-rc.4 -> 15.0.0
@angular/router dependencies digest c0a9764 -> 34e061c
@angular/router (source) devDependencies patch 15.0.0-rc.4 -> 15.0.0
@angular/service-worker dependencies digest 48c8e2a -> 734d42f
@angular/service-worker devDependencies patch 15.0.0-rc.4 -> 15.0.0
angular/dev-infra action digest 0c06b3d -> eb2379b

πŸ”‘ If you wish to disable git hash updates, add ":disableDigestUpdates" to the extends array in your config.


Release Notes

angular/angular

v15.0.0

Compare Source

Blog post "Angular v15 is now available".

Breaking Changes

compiler
  • Keyframes names are now prefixed with the component's "scope name".
    For example, the following keyframes rule in a component definition,
    whose "scope name" is host-my-cmp:

    @​keyframes foo { ... }

    will become:

    @​keyframes host-my-cmp_foo { ... }

    Any TypeScript/JavaScript code which relied on the names of keyframes rules
    will no longer match.

    The recommended solutions in this case are to either:

    • change the component's view encapsulation to the None or ShadowDom
    • define keyframes rules in global stylesheets (e.g styles.css)
    • define keyframes rules programmatically in code.
compiler-cli
  • Invalid constructors for DI may now report compilation errors

    When a class inherits its constructor from a base class, the compiler may now
    report an error when that constructor cannot be used for DI purposes. This may
    either be because the base class is missing an Angular decorator such as
    @Injectable() or @Directive(), or because the constructor contains parameters
    which do not have an associated token (such as primitive types like string).
    These situations used to behave unexpectedly at runtime, where the class may be
    constructed without any of its constructor parameters, so this is now reported
    as an error during compilation.

    Any new errors that may be reported because of this change can be resolved either
    by decorating the base class from which the constructor is inherited, or by adding
    an explicit constructor to the class for which the error is reported.

  • Angular compiler option enableIvy has been removed as Ivy is the only rendering engine.

core
  • Angular no longer supports Node.js versions 14.[15-19].x and 16.[10-12].x. Current supported versions of Node.js are 14.20.x, 16.13.x and 18.10.x.
  • TypeScript versions older than 4.8 are no longer supported.
  • Existing iframe usages may have security-sensitive attributes applied as an attribute or property binding in a template or via host bindings in a directive. Such usages would require an update to ensure compliance with the new stricter rules around iframe bindings.
  • Existing iframe usages may have src or srcdoc preceding other attributes. Such usages may need to be updated to ensure compliance with the new stricter rules around iframe bindings.
forms
  • setDisabledState will always be called when a ControlValueAccessor is attached. You can opt-out with FormsModule.withConfig or ReactiveFormsModule.withConfig.
localize
    • canParse method has been removed from all translation parsers in @angular/localize/tools. analyze should be used instead.
    • the hint parameter in theparse methods is now mandatory.
router
  • Previously, the RouterOutlet would immediately
    instantiate the component being activated during navigation. Now the
    component is not instantiated until the change detection runs. This
    could affect tests which do not trigger change detection after a router
    navigation. In rarer cases, this can affect production code that relies
    on the exact timing of component availability.
  • The title property is now required on ActivatedRouteSnapshot
  • relativeLinkResolution is no longer configurable in
    the Router. This option was used as a means to opt out of a bug fix.

Deprecations

common
  • The DATE_PIPE_DEFAULT_TIMEZONE token is now deprecated in favor
    of the DATE_PIPE_DEFAULT_OPTIONS token, which accepts an object
    as a value and the timezone can be defined as a field (called timezone)
    on that object.
core
    • The ability to pass an NgModule to the providedIn option for
      @Injectable and InjectionToken is now deprecated.

    providedIn: NgModule was intended to be a tree-shakable alternative to
    NgModule providers. It does not have wide usage, and in most cases is used
    incorrectly, in circumstances where providedIn: 'root' should be
    preferred. If providers should truly be scoped to a specific NgModule, use
    NgModule.providers instead.

    • The ability to set providedIn: 'any' for an @Injectable or
      InjectionToken is now deprecated.

    providedIn: 'any' is an option with confusing semantics and is almost
    never used apart from a handful of esoteric cases internal to the framework.

  • The bit field signature of Injector.get() has been deprecated, in favor of the new options object.

  • The bit field signature of TestBed.inject() has been deprecated, in favor of the new options object.

router
  • The RouterLinkWithHref directive is deprecated, use the RouterLink directive instead. The RouterLink contains the code from the RouterLinkWithHref to handle elements with href attributes.
common
Commit Type Description
c0c7efaf7c feat add provideLocationMocks() function to provide Location mocks (#​47674)
75e6297f09 feat add preload tag on server for priority img (#​47343)
4fde292bb5 feat Add automatic srcset generation to ngOptimizedImage (#​47547)
9483343ebf feat Add fill mode to NgOptimizedImage (#​47738)
bdb5371033 feat add injection token for default DatePipe configuration (#​47157)
449d29b701 fix Add fetchpriority to ngOptimizedImage preloads (#​48010)
4f52d4e474 fix don't generate srcset if noopImageLoader is used (#​47804)
3a18398d83 fix Don't warn about image distortion is fill mode is enabled (#​47824)
edea15f2c6 fix export the IMAGE_CONFIG token (#​48051)
8abf1c844c fix fix formatting on oversized image error (#​47188)
ca7bf65933 fix rename rawSrc -> ngSrc in NgOptimizedImage directive (#​47362)
b3879dbf14 fix support density descriptors with 2+ decimals (#​47197)
fa4798095e fix update size error to mention 'fill' mode (#​47797)
23f210c0ab fix warn if using supported CDN but not built-in loader (#​47330)
945432e3fa fix Warn on fill ngOptimizedImage without height (#​48036)
compiler
Commit Type Description
051f75648d fix scope css keyframes in emulated view encapsulation (#​42608)
39b72e208b fix update element schema (#​47552)
48b354a83e fix update element schema (#​47552)
compiler-cli
Commit Type Description
bc54687c7b fix exclude abstract classes from strictInjectionParameters requirement (#​44615)
309b2cde51 fix implement more host directive validations as diagnostics (#​47768)
2e1dddec45 fix support hasInvalidatedResolutions. (#​47585)
19ad4987f9 fix use @​ts-ignore. (#​47636)
8fcadaad48 perf cache source file for reporting type-checking diagnostics (#​47471)
16f96eeabf refactor remove enableIvy options (#​47346)
core
Commit Type Description
e3cef4a784 docs deprecate providedIn: NgModule and providedIn: 'any' (#​47616)
1b9fd46d14 feat add support for Node.js version 18 (#​47730)
ed11a13c3c feat drop support for TypeScript 4.6 and 4.7 (#​47690)
db28badfe6 feat enable the new directive composition API (#​47642)
7de1469be6 feat introduce EnvironmentProviders wrapper type (#​47669)
841c8e5138 feat support object-based DI flags in Injector.get() (#​46761)
120555a626 feat support object-based DI flags in TestBed.inject() (#​46761)
96c0e42e61 fix allow readonly arrays for standalone imports (#​47851)
28f289b825 fix hardening attribute and property binding rules for <iframe> elements (#​47964)
d4b3c0b47c fix hardening rules related to the attribute order on iframe elements (#​47935)
85330f3fd9 fix update isDevMode to rely on ngDevMode (#​47475)
forms
Commit Type Description
a8569e3802 feat export forms utility functions: isFormArray, isFormGroup… (#​47718)
96b7fe93af fix call setDisabledState on ControlValueAcessor when control is enabled (#​47576)
a99d9d67f3 fix don't mutate validators array (#​47830)
2625dc1312 fix Improve a very commonly viewed error message by adding a guide. (#​47969)
ae29f98c20 fix Runtime error pages must begin with leading zero (#​47991)
http
Commit Type Description
3ba99e286a feat allow for child HttpClients to request via parents (#​47502)
84d0d33c35 feat introduce provideHttpClientTesting provider function (#​47502)
62c7a7a16e feat introduce functional interceptors (#​47502)
e47b129070 feat introduce the provideHttpClient() API (#​47502)
ea16a98dfe fix better handle unexpected undefined XSRF tokens (#​47683)
e7b48da713 fix rename withLegacyInterceptors to withInterceptorsFromDi (#​47901)
language-service
Commit Type Description
bebef5fb43 feat Quick fix to import a component when its selector is used (#​47088)
e7ee53c541 feat support to fix invalid banana in box (#​47393)
localize
Commit Type Description
400a6b5e37 fix add polyfill in polyfills array instead of polyfills.ts (#​47569)
b6fd814542 fix update ng add schematic to support Angular CLI version 15 (#​47763)
d36fd3d9e4 refactor remove deprecated canParse method from TranslationParsers (#​47275)
platform-server
Commit Type Description
2908eba59c fix align server renderer interface with base renderer (#​47868)
router
Commit Type Description
7bee28d037 feat add a migration to remove relativeLinkResolution usages (#​47604)
5163e3d876 feat Add UrlTree constructor to public API (#​47186)
da58801f95 feat auto-unwrap default exports when lazy loading (#​47586)
c3f857975d feat make RouterOutlet name an Input so it can be set dynamically (#​46569)
f73ef21442 feat merge RouterLinkWithHref into RouterLink (#​47630)
16c8f55663 feat migrate RouterLinkWithHref references to RouterLink (#​47599)
07017a7bd3 feat prevent provideRouter() from usage in @​Component (#​47669)
79e9e8ab77 fix Delay router scroll event until navigated components have rendered (#​47563)
6a88bad019 fix Ensure ActivatedRouteSnapshot#title has correct value (#​47481)
7b89d95c0e fix Remove deprecated relativeLinkResolution (#​47623)

Special Thanks

Alan Agius, AleksanderBodurri, Alex Castle, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, Charles Lyding, Dylan Hunn, Ferdinand Malcher, George Kalpakas, Jeremy Elbourn, Jessica Janiuk, JiaLiPassion, Joey Perrott, JoostK, Kara Erickson, Kristiyan Kostadinov, Martin Probst, Matthias Weiß, Matthieu Riegler, Paul Gschwendtner, Pawel Kozlowski, Sabareesh Kappagantu, WD Snoeijer, angular-robot[bot], arturovt, ced, dario-piotrowicz, ivanwonder and jaybell

angular/components

v15.0.0

Compare Source

Breaking Changes

material
  • The following components have been re-implemented based on MDC:
    • mat-autocomplete
    • mat-button
    • mat-fab
    • mat-icon-button
    • mat-card
    • mat-chip-list (now split into the following three components: mat-chip-set, mat-chip-listbox, and mat-chip-grid to better represent the different interaction patterns)
    • mat-option
    • mat-optgroup
    • mat-dialog (passing strings for MatDialogConfig.enterAnimationDuration and
      MatDialogConfig.exitAnimationDuration is deprecated, pass numbers
      in ms instead)
    • mat-action-list
    • mat-list
    • mat-list-item
    • mat-list-option
    • mat-nav-list
    • mat-selection-list
    • mat-menu
    • mat-radio-group
    • mat-radio-button
    • mat-select
    • mat-slide-toggle
    • mat-slider (has a new API that requires a <input matSliderThumb> element)
    • mat-snack-bar
    • mat-table
    • mat-tabs
  • The TypeScript API should remain largely unchanged, but the DOM and CSS classes for these components have changed.
  • See the MDC migration guide for more information about the changes and
    how to migrate your app: https://material.angular.io/guide/mdc-migration.
  • Buttons inside the datepicker popup and datepicker toggle now use the
    MDC-based button implementation. They have different CSS classes and
    styles, so custom style overrides may need to be updated.
material-luxon-adapter
  • The MatLuxonDateModule now requires at least version 3 of Luxon.

Deprecations

material
  • startDateLabel and endDateLabel for mat-datepicker are deprecated because they are not used.
cdk
Commit Type Description
0734564c71 feat listbox: add listbox to cdk (#​25380)
a2cf3f6cc8 feat menu: add support for passing in data to the menu template (#​25778)
7a24e95baf feat portal: support projectableNodes in component portal (#​25185)
b5f15f426c fix a11y: clean up list key manager on destroy (#​25715)
992cafc395 fix listbox: incorrectly validating preselected value (#​25893)
9e4d57cd21 fix listbox: prevent form submission on click (#​25858)
48d666b111 fix listbox: remove incorrect usage of validator (#​25856)
4b757e6eba fix overlay: provide Overlay in root (#​25909)
material
Commit Type Description
532454b17a feat autocomplete: switch implementation to use MDC (#​25386)
87e17aac0b feat button: add variant to button harness (#​25770)
00f4abe859 feat button: Switch button implementation to use MDC (#​25381)
a928639e94 feat card: Switch card implementation to use MDC (#​25082)
e8e7199744 feat checkbox: refactor pseudo-checkbox size styles (#​25419)
9ac264f10d feat checkbox: switch implementation to use MDC (#​25369)
3b87655f9e feat checkbox: update pseudo-checkbox size (#​25425)
dc74aa382c feat checkbox: use -size for legacy checkbox (#​25424)
d496ebec00 feat chips: switch implementation to use MDC (#​25400)
73ef52ce17 feat core: add option to disable core typography (#​25706)
3463c5a38c feat core: delete deprecated legacy theming API tests (#​25265)
742d858b9a feat core: make mdc-based typography default (#​25551)
7e94186fd5 feat core: move MDC-based elevation styles out of experimental (#​25486)
3fd20a7c53 feat core: move mdc-helpers to material/core
3b769b3eb3 feat core: remove typography styles from core mixin (#​25723)
5b8d5214fe feat core: switch option implementation to use MDC (#​25343)
d70fd6c2de feat datepicker: expose datepicker symbols (#​25552)
ca54283837 feat datepicker: make compatible with MDC & legacy components (#​25648)
439852ba8a feat dialog: Switch dialog implementation to use MDC (#​25352)
119dd4bcfa feat form-field: Ability to support custom error message components inside a form field (#​25399)
36af2a3fbe feat form-field: add error harness (#​25698)
3db6b1d1ba feat form-field: switch implementation to use MDC
6883100b4c feat input: switch implementation to use MDC
750dad699f feat legacy-core: create legacy-core entry point
5f0f071ac5 feat list: switch implementation to use MDC list (#​25445)
20db76d3e9 feat menu: switch implementation to use MDC (#​25431)
f7385ffc8a feat paginator: migrate MDC examples (#​25497)
8f11370e5e feat paginator: Switch paginator implementation to use MDC (#​25456)
f384c24b94 feat progress-bar: Switch progress-bar implementation to use MDC (#​25234)
4a6a0f18bb feat radio: switch implementation to use MDC (#​25409)
7b5bb76d32 feat schematics: add autocomplete styles migrator and tests
8f8f06f229 feat schematics: add card styles migrator and tests
ee5a8362ad feat schematics: add checkbox styles migrator and tests
0108de5aff feat schematics: add chips styles migrator and tests
825688f82e feat schematics: add chips template migrator (#​24601)
98d09ffc18 feat schematics: add dialog styles migrator and tests
801c23cc00 feat schematics: add fn for adding attrs to templates (#​24550)
dcc98295b4 feat schematics: add form-field styles migrator and tests
226696d1d2 feat schematics: add handling for all-component-themes (#​25528)
6eac002704 feat schematics: add input styles migrator and tests
bcacdde9ff feat schematics: add list styles migrator and tests
6b24f9614d feat schematics: add menu styles migrator and tests
d1bbcd64da feat schematics: add paginator styles migrator and tests
e856da1a63 feat schematics: add progress bar styles migrator and tests
a12f268aaf feat schematics: add progress spinner styles migrator and tests
da07c36e7e feat schematics: add radio styles migrator and tests
479267207e feat schematics: add select styles migrator and tests
7646c73c32 feat schematics: add slide toggle styles migrator and tests
d8f1cce07f feat schematics: add slider styles migrator and tests
7460ccdd12 feat schematics: add snack-bar styles migrator and tests
0554f1823e feat schematics: add style migration support within typescript files (#​25339)
84398f4b3b feat schematics: add table styles migrator and tests
688443a93d feat schematics: add tabs styles migrator and tests
983f66460e feat schematics: add template migration support within typescript files (#​25496)
6feaaea067 feat schematics: add template migration to schematic (#​24563)
2159f2e5e9 feat schematics: add the scaffolding for an mdc-migration schematic (#​23804)
331b53c272 feat schematics: add tooltip styles migrator and tests
c682965262 feat schematics: create updateModuleSpecifier ts migration fn (#​25128)
d388adfe1c feat schematics: create updateNamedImport ts migration fn (#​25132)
15906c7084 feat schematics: impl card template migration (#​24566)
938802f7e4 feat schematics: impl mat-mdc ts v15 ng-update (#​25447)
1e5dc8a7f2 feat schematics: implement basic ts import migrations (#​24797)
1a99002343 feat schematics: initial foundation for TS code migrators
f24a49f9b8 feat schematics: initial setup for template migrations (#​24515)
8b147716c5 feat schematics: initial setup for v15 ng-update (#​25102)
cb7212397a feat schematics: set up a system for migrating scss (#​24326)
33c3277207 feat schematics: tree operation helper functions (#​24539)
fad4f9bfb9 feat schematics: v15 migrate imports (#​25133)
00d5f27e6f feat schematics: v15 ng-update scss migration (#​25395)
8ca3155db7 feat select: add page down/up button functionality (#​25508)
bf6f38abd7 feat select: switch implementation to use MDC (#​25360)
a1bb436f01 feat slide-toggle: Switch slide-toggle implementation to use MDC (#​25404)
b863b14d20 feat slider: switch implementation to use MDC (#​25420)
950d4377f4 feat snack-bar: Switch snack-bar implementation to use MDC (#​25458)
a8f847cbbb feat table: migrate MDC examples (#​25492)
31a754c904 feat table: pass this rather than concrete classes in the harnesses (#​25482)
e3b80324c3 feat table: Switch table implementation to use MDC (#​25453)
1fcdc27f46 feat tabs: Switch tabs implementation to use MDC (#​25411)
1337f36f24 feat tooltip: add option to open tooltip at mouse position (#​25202)
2fc05f584c feat tooltip: migrate MDC examples (#​25495)
fd2811b54d feat tooltip: switch to MDC implementation (#​25209)
9f0071dc4c fix button: cdk-focus classes not being applied (#​25619)
518b2b63aa fix button: remove dependency on legacy button (#​25579)
c440f844ec fix card: don't add extra padding around mat-card-title-group (#​25292)
1ade334525 fix card: remove card deps on legacy-card
8a1cf8cdd3 fix checkbox: disabled state not distinguishable in high contrast mode (#​25788)
4926cc57ee fix chips: allow focusing disabled listbox options (#​25771)
17e217acd8 fix chips: aria-selected not reflecting selection state (#​25742)
147a354ec7 fix chips: don't remove aria-selected from deselected options (#​25748)
0f52389340 fix chips: show checkmark for selected non-selectable chips (#​25942)
8643c9ccb5 fix chips: use checkmark graphic for single-selection (#​25890)
1e969dd6a1 fix core: add flag whether to copy color theme values (#​25695)
c14d176842 fix core: add optional warning for incomplete themes (#​25654)
9dbc4fd703 fix core: add typography hierarchy to prebuilt (#​25746)
c35763be97 fix core: add typography to prebuilt themes (#​25696)
a310fefb90 fix core: default font family not picked up in define-typography-config (#​25789)
7021954dea fix core: fix swapped units in define-typography functions (#​25615)
fd5afe7038 fix core: Move remaining MDC core functionality out of experimental (#​25503)
e73ba59d7b fix core: remove core style parameters (#​25738)
69efb41949 fix core: switch typography hierarchy to new terminology
e3adcfe69a fix core: use full theme config definitions to prebuilt themes (#​25656)
bf9f2ec1d5 fix core: warn when legacy theme is created (#​25625)
2704c310a3 fix datepicker: announce the "to" when reading year range (#​24958)
67212ba4f4 fix datepicker: calendar aria-descriptions start/end date (#​25457)
59b5d5ef44 fix datepicker: changed after checked error during overlapping open/close sequence (#​25843)
0971e39485 fix datepicker: unable to click datepicker toggle when form field is disabled (#​25863)
4cdc0956f9 fix dialog: allow customizing animation duration (#​25524)
5e34770a41 fix dialog: remove dialog deps on legacy-dialog
f9a4b97376 fix dialog: using incorrect mixin for structural styles (#​25356)
a0d74daf94 fix form-field: fix typography for native input element (#​25616)
fdb30adabe fix form-field: remove hardcoded 16px label padding (#​25383)
e3b679da00 fix input: fix input prefix & suffix disabled color (#​25398)
29ed93a100 fix legacy-autocomplete: deprecate all ts symbols
b10189809b fix legacy-button: deprecate all ts symbols
5caa44efcf fix legacy-button: rename classnames in comments (#​25459)
3c60fe903c fix legacy-button: rename classnames in comments (#​25460)
a5a12b9f88 fix legacy-card: deprecate all ts symbols
ab22cab5bc fix legacy-checkbox: deprecate all ts symbols
aaf6a66a6b fix legacy-checkbox: fix scss mixin names (#​25442)
2cadc901ee fix legacy-chips: deprecate all ts symbols
ecdabb8412 fix legacy-core: deprecate all ts symbols
9bd852330e fix legacy-core: name all ts symbols to reflect legacy-ness (#​25673)
5afe24de4e fix legacy-dialog: deprecate all ts symbols
d527ddf0e0 fix legacy-form-field: deprecate all ts symbols
86c4a9d394 fix legacy-form-field: remove invalid selector (#​25554)
cf0dd6cca6 fix legacy-input: deprecate all ts symbols
e67e49325d fix legacy-list: deprecate all ts symbols
4e56db6b08 fix legacy-menu: deprecate all ts symbols
bc2fc6d4c0 fix legacy-menu: rename missed ts symbol
b6f9d66b81 fix legacy-paginator: deprecate all ts symbols
c3684dbef1 fix legacy-progress-bar: deprecate all ts symbols
36a54d3c2c fix legacy-progress-spinner: deprecate all ts symbols
bbb9130cfd fix legacy-radio: deprecate all ts symbols
4bb3554c5c fix legacy-select: deprecate all ts symbols
1edd3908e9 fix legacy-select: rename missed ts symbol
[13d8524be5](http

Configuration

πŸ“… Schedule: Branch creation - "after 10:00pm every weekday,before 4:00am every weekday,every weekend" in timezone America/Tijuana, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

πŸ‘» Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

@angular-robot angular-robot added the action: merge The PR is ready for merge by the caretaker label Nov 16, 2022
@angular-robot angular-robot added the target: minor This PR is targeted for the next minor release label Nov 16, 2022
@angular-robot angular-robot force-pushed the ng-renovate/angular branch 12 times, most recently from 2a2bd25 to 72b7c08 Compare November 17, 2022 02:20
@angular-robot angular-robot force-pushed the ng-renovate/angular branch 14 times, most recently from 5a6b148 to ad99012 Compare November 18, 2022 19:06
@angular-robot angular-robot force-pushed the ng-renovate/angular branch 8 times, most recently from 575ee46 to 1d4c877 Compare November 21, 2022 10:05
@clydin clydin merged commit 489d4df into angular:main Nov 21, 2022
@angular-automatic-lock-bot
Copy link

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Dec 22, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
action: merge The PR is ready for merge by the caretaker target: minor This PR is targeted for the next minor release
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants