Skip to content

Commit 723196a

Browse files
merge release-4.6.2
2 parents 4a3ff61 + 0b0dddf commit 723196a

File tree

166 files changed

+1546
-984
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+1546
-984
lines changed

.scripts/release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function publishGit(tasks, version, changelog) {
5454
},
5555
{
5656
title: 'Push tags to remove',
57-
task: () => execa('git', ['push', '--tags'], { cwd: common.rootDir })
57+
task: () => execa('git', ['push', 'tag'], { cwd: common.rootDir })
5858
},
5959
{
6060
title: 'Publish Github release',

.scripts/v3/package.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "ionic-angular",
3+
"version": "`gulp package` generates dist/package.json from this template using the root ./package.json",
4+
"description": "",
5+
"keywords": [],
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/ionic-team/ionic-v3.git"
9+
},
10+
"license": "MIT",
11+
"main": "umd/index.js",
12+
"module": "index.js",
13+
"es2015": "es2015/index.js",
14+
"peerDependencies": {
15+
}
16+
}

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## [4.6.2](https://github.com/ionic-team/ionic/compare/v4.6.1...v4.6.2) (2019-07-10)
2+
3+
4+
### Bug Fixes
5+
6+
* **menu-button:** hide menu button when auto hide or split pane ([#18702](https://github.com/ionic-team/ionic/issues/18702)) ([24840d4](https://github.com/ionic-team/ionic/commit/24840d4)), closes [#18666](https://github.com/ionic-team/ionic/issues/18666)
7+
* **menu-button:** move font-size to host for easier customization ([#18699](https://github.com/ionic-team/ionic/issues/18699)) ([876ab41](https://github.com/ionic-team/ionic/commit/876ab41)), closes [#18667](https://github.com/ionic-team/ionic/issues/18667)
8+
* **overlays:** fallback to step color if overlay background variable is unset ([#18709](https://github.com/ionic-team/ionic/issues/18709)) ([f16b118](https://github.com/ionic-team/ionic/commit/f16b118)), closes [#18658](https://github.com/ionic-team/ionic/issues/18658)
9+
* **virtual-scroll:** remove runOutsideAngular error ([#18752](https://github.com/ionic-team/ionic/issues/18752)) ([8beeff2](https://github.com/ionic-team/ionic/commit/8beeff2)), closes [#18746](https://github.com/ionic-team/ionic/issues/18746)
10+
* **vue:** update imports for types and ionicons ([f56fea6](https://github.com/ionic-team/ionic/commit/f56fea6)), closes [#18701](https://github.com/ionic-team/ionic/issues/18701)
11+
12+
13+
### Performance Improvements
14+
15+
* **all:** minify better by using arrow functions ([#18730](https://github.com/ionic-team/ionic/issues/18730)) ([03c1d19](https://github.com/ionic-team/ionic/commit/03c1d19))
16+
17+
18+
119
## [4.6.1](https://github.com/ionic-team/ionic/compare/v4.6.0...v4.6.1) (2019-07-09)
220

321

angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ionic/angular",
3-
"version": "4.6.1",
3+
"version": "4.6.2",
44
"description": "Angular specific wrappers for @ionic/core",
55
"keywords": [
66
"ionic",
@@ -45,7 +45,7 @@
4545
"css/"
4646
],
4747
"dependencies": {
48-
"@ionic/core": "4.6.1",
48+
"@ionic/core": "4.6.2",
4949
"tslib": "^1.9.3"
5050
},
5151
"peerDependencies": {

angular/src/directives/virtual-scroll/virtual-scroll.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export class IonVirtualScroll {
128128
@ContentChild(VirtualFooter) ftrTmp!: VirtualFooter;
129129

130130
constructor(
131-
private zone: NgZone,
131+
private z: NgZone,
132132
private iterableDiffers: IterableDiffers,
133133
elementRef: ElementRef,
134134
) {
@@ -162,7 +162,7 @@ export class IonVirtualScroll {
162162
}
163163

164164
private nodeRender(el: HTMLElement | null, cell: Cell, index: number): HTMLElement {
165-
return this.zone.run(() => {
165+
return this.z.run(() => {
166166
let node: EmbeddedViewRef<VirtualContext>;
167167
if (!el) {
168168
node = this.itmTmp.viewContainer.createEmbeddedView(

angular/test/test-app/e2e/protractor.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ exports.config = {
1010
],
1111
capabilities: {
1212
browserName: 'chrome',
13-
13+
1414
chromeOptions: {
1515
args: [ "--headless", "--disable-gpu", "--window-size=400,1000", "--start-maximized" ]
1616
}

angular/test/test-app/e2e/src/form.e2e-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { handleErrorMessages, setProperty, getText, waitTime } from './utils';
44
describe('form', () => {
55

66
afterEach(() => {
7-
handleErrorMessages();
7+
return handleErrorMessages();
88
});
99

1010
describe('change', () => {

angular/test/test-app/e2e/src/inputs.e2e-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ describe('inputs', () => {
88
await waitTime(30);
99
});
1010
afterEach(() => {
11-
handleErrorMessages();
11+
return handleErrorMessages();
1212
});
1313

1414
it('should have default value', async () => {

angular/test/test-app/e2e/src/modal.e2e-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ describe('modals', () => {
88
await waitTime(30);
99
});
1010
afterEach(() => {
11-
handleErrorMessages();
11+
return handleErrorMessages();
1212
});
1313

1414
it('should open standalone modal and close', async () => {

angular/test/test-app/e2e/src/navigation.e2e-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { handleErrorMessages, waitTime, testStack } from './utils';
44
describe('navigation', () => {
55

66
afterEach(() => {
7-
handleErrorMessages();
7+
return handleErrorMessages();
88
});
99

1010
it('should navigate correctly', async () => {

0 commit comments

Comments
 (0)