Skip to content

Commit c49d103

Browse files
authored
chore: bump version to 10.0.0-rc.0 w/ changelog (#19452)
1 parent 0021d2c commit c49d103

File tree

4 files changed

+130
-1
lines changed

4 files changed

+130
-1
lines changed

CHANGELOG.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,70 @@
1+
# 10.0.0-rc.0 "wool-wind" (2020-05-26)
2+
3+
### cdk
4+
5+
#### Breaking changes
6+
* `CdkDropList.start` has been removed.
7+
* `CdkDropList.drop` has been removed.
8+
* `CdkDropList.enter` has been removed.
9+
* `CdkDropList.exit` has been removed.
10+
* `CdkDropList.getItemIndex` has been removed.
11+
* `CDK_DRAG_CONFIG_FACTORY` has been removed.
12+
* `CdkTable.setHeaderRowDef` has been removed. Use `CdkTable.addHeaderRowDef` and `CdkTable.removeHeaderRowDef` instead.
13+
* `CdkTable.setFooterRowDef` has been removed. Use `CdkTable.addFooterRowDef` and `CdkTable.removeFooterRowDef` instead.
14+
* The `_platformId` parameter in the `Platform` constructor is now required.
15+
* The `copied` event from `cdkCopyToClipboard` has been renamed to `cdkCopyToClipboardCopied`.
16+
* The `_ngZone` parameter in the `CdkCopyToClipboard` constructor is now required.
17+
18+
### material
19+
20+
#### Breaking changes
21+
* `MAT_HAMMER_OPTIONS` has been removed.
22+
* `GestureConfig` has been removed.
23+
* `HammerInput` has been removed.
24+
* `HammerStatic` has been removed.
25+
* `Recognizer` has been removed.
26+
* `RecognizerStatic` has been removed.
27+
* `HammerInstance` has been removed.
28+
* `HammerManager` has been removed.
29+
* `HammerOptions` has been removed.
30+
* `MatButtonToggleGroupMultiple` has been removed. Use `MatButtonToggleGroup` instead.
31+
* `MatSlideToggleDefaultOptions.disableDragValue` has been removed.
32+
* `MatSlideToggle.dragChange` has been removed.
33+
* The `_ngZone` and `_dir` parameters have been removed from the `MatSlideToggle` constructor.
34+
* The `_viewportRuler` parameter in the `MatAutocompleteTrigger` constructor is now required.
35+
* The `_location` and `_errorHandler` parameters in the `MatIcon` constructor are now required.
36+
* The `_errorHandler` parameter in the `MatIconRegistry` constructor is now required.
37+
* The _ngZone and _document parameters in the `MatSlider` constructor are now required.
38+
* The `_focusMonitor` and `_elementRef` parameters in the MatSortHeader constructor are now required.
39+
* The `_hammerLoader` parameter has been removed from the MatTooltip constructor.
40+
41+
| | |
42+
| ---------- | --------------------- |
43+
| bug fix | **dialog:** focus recapturing not accounting for autoFocus option ([#19356](https://github.com/angular/components/issues/19356)) ([72b0219](https://github.com/angular/components/commit/72b0219)), closes [#18826](https://github.com/angular/components/issues/18826) [#19350](https://github.com/angular/components/issues/19350) |
44+
| bug fix | **drag-drop:** error during device emulation on firefox ([#19396](https://github.com/angular/components/issues/19396)) ([d309ee2](https://github.com/angular/components/commit/d309ee2)), closes [#19385](https://github.com/angular/components/issues/19385) |
45+
| bug fix | **drag-drop:** error when item enters from the top and last has an intermediate child ([#19361](https://github.com/angular/components/issues/19361)) ([fbd6440](https://github.com/angular/components/commit/fbd6440)), closes [#19116](https://github.com/angular/components/issues/19116) [#19359](https://github.com/angular/components/issues/19359) |
46+
| bug fix | **ng-add:** ng add [@angular](https://github.com/angular)/material fails in library projects ([#19164](https://github.com/angular/components/issues/19164)) ([822e3e0](https://github.com/angular/components/commit/822e3e0)) |
47+
| bug fix | **table:** incorrectly sticking multiple footer rows ([#19321](https://github.com/angular/components/issues/19321)) ([95007e5](https://github.com/angular/components/commit/95007e5)), closes [#19311](https://github.com/angular/components/issues/19311) |
48+
| feature | **testing:** add test harness for mat-tooltip ([#19144](https://github.com/angular/components/issues/19144)) ([44accd6](https://github.com/angular/components/commit/44accd6)), closes [#16676](https://github.com/angular/components/issues/16676) |
49+
50+
### google-maps
51+
52+
| | |
53+
| ---------- | --------------------- |
54+
| bug fix | allow different anchor objects for info window ([#19378](https://github.com/angular/components/issues/19378)) ([d0ab041](https://github.com/angular/components/commit/d0ab041)) |
55+
56+
### youtube-player
57+
58+
#### Breaking changes
59+
* The `platformId` parameter of the `YouTubePlayer` constructor is now required.
60+
61+
### material-experimental
62+
63+
| | |
64+
| ---------- | --------------------- |
65+
| bug fix | **mdc-slider:** remove slider theme from all-theme ([#19411](https://github.com/angular/components/issues/19411)) ([d952a22](https://github.com/angular/components/commit/d952a22)) |
66+
67+
168
# 10.0.0-next.1 "thorium-temple" (2020-05-18)
269

370
### material

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"merge": "ng-dev pr merge",
4747
"approve-api": "node ./scripts/approve-api-golden.js"
4848
},
49-
"version": "10.0.0-next.1",
49+
"version": "10.0.0-rc.0",
5050
"dependencies": {
5151
"@angular/animations": "^10.0.0-rc.0",
5252
"@angular/common": "^10.0.0-rc.0",

tools/triage-tracker/functions/lib/index.js

Lines changed: 61 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/triage-tracker/functions/lib/index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)