Skip to content

Commit 8eab946

Browse files
committed
chore(ionic): release beta 2 and update changelog
1 parent 5fb1e08 commit 8eab946

File tree

2 files changed

+99
-1
lines changed

2 files changed

+99
-1
lines changed

CHANGELOG.md

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,101 @@
1+
<a name="2.0.0-beta.2"></a>
2+
# [2.0.0-beta.2](https://github.com/driftyco/ionic/compare/v2.0.0-beta.1...v2.0.0-beta.2) (2016-03-01)
3+
4+
5+
### Bug Fixes
6+
7+
* **alert:** add max height to alert body so it will overflow ([9c0eebd](https://github.com/driftyco/ionic/commit/9c0eebd)), closes [#5316](https://github.com/driftyco/ionic/issues/5316)
8+
* **animation:** ensure final inline styles applied when fallback runs ([4524e5a](https://github.com/driftyco/ionic/commit/4524e5a)), closes [#5484](https://github.com/driftyco/ionic/issues/5484)
9+
* **generate:** output correct Sass import for pages ([3784f47](https://github.com/driftyco/ionic/commit/3784f47)), closes [#5641](https://github.com/driftyco/ionic/issues/5641)
10+
* **menu:** fix enabled check ([8564d79](https://github.com/driftyco/ionic/commit/8564d79))
11+
* **nav:** immediately stop if view removed before trans finished ([4fabade](https://github.com/driftyco/ionic/commit/4fabade))
12+
* **overlay:** do not dom cache views before overlays ([4cae151](https://github.com/driftyco/ionic/commit/4cae151)), closes [#5483](https://github.com/driftyco/ionic/issues/5483)
13+
* **refresher:** get scrollTop from the scroll element to prevent refreshing when dragging up ([ea884de](https://github.com/driftyco/ionic/commit/ea884de)), closes [#5207](https://github.com/driftyco/ionic/issues/5207)
14+
* **sass:** rename brightness/inverse sass functions ([892b007](https://github.com/driftyco/ionic/commit/892b007)), closes [#5542](https://github.com/driftyco/ionic/issues/5542)
15+
* **tabs:** pop tab page to parent nav ([b9eec24](https://github.com/driftyco/ionic/commit/b9eec24)), closes [#5196](https://github.com/driftyco/ionic/issues/5196)
16+
* **toolbar:** add a min-width to the toolbar content so that it won't overlap buttons ([5fb1e08](https://github.com/driftyco/ionic/commit/5fb1e08)), closes [#5657](https://github.com/driftyco/ionic/issues/5657)
17+
18+
### Features
19+
20+
* **checkbox:** add change event ([2596731](https://github.com/driftyco/ionic/commit/2596731))
21+
* **infiniteScroll:** add infinite scroll ([0480fa3](https://github.com/driftyco/ionic/commit/0480fa3)), closes [#5415](https://github.com/driftyco/ionic/issues/5415)
22+
* **input:** default autocomplete/autocorrect=off, fix autofocus ([b53d707](https://github.com/driftyco/ionic/commit/b53d707))
23+
* **menu:** grab the menu by side only if it is enabled ([a2b7a21](https://github.com/driftyco/ionic/commit/a2b7a21))
24+
* **NavController:** prevent other lifecycle events from firing ([6b9e59d](https://github.com/driftyco/ionic/commit/6b9e59d)), closes [#5516](https://github.com/driftyco/ionic/issues/5516)
25+
* **prodMode:** set isProd() when prodMode set in @App config ([3c8daa0](https://github.com/driftyco/ionic/commit/3c8daa0))
26+
* **spinner:** SVG spinners ([6c73446](https://github.com/driftyco/ionic/commit/6c73446))
27+
* **toggle:** add change event ([730cccd](https://github.com/driftyco/ionic/commit/730cccd))
28+
29+
### Refactor
30+
31+
* **alert:** remove tabbarIcons and add tabbarLayout which accepts different values ([8cfebe1](https://github.com/driftyco/ionic/commit/8cfebe1)), closes [#5625](https://github.com/driftyco/ionic/issues/5625)
32+
* **menu:** improve menu get lookup ([004e635](https://github.com/driftyco/ionic/commit/004e635)), closes [#5535](https://github.com/driftyco/ionic/issues/5535)
33+
* **tabs:** remove duplicated styles from imports ([d5ebf3f](https://github.com/driftyco/ionic/commit/d5ebf3f)), closes [#5624](https://github.com/driftyco/ionic/issues/5624)
34+
* **searchbar:** add class to searchbar when hideCancel is passed ([a0f0004](https://github.com/driftyco/ionic/commit/a0f0004))
35+
36+
### Breaking Changes
37+
38+
#### New npm module
39+
40+
The npm module has been renamed from `ionic-framework` to `ionic-angular`.
41+
42+
Update package.json to reflect this:
43+
44+
```
45+
"ionic-angular": "2.0.0-beta.2",
46+
```
47+
48+
imports from the framework were:
49+
50+
```js
51+
import {Platform} from 'ionic-framework/ionic';
52+
```
53+
54+
and are now:
55+
56+
```js
57+
import {Platform} from 'ionic-angular';
58+
```
59+
60+
#### Infinite Scroll
61+
62+
Infinite Scroll has been added: [docs](http://ionicframework.com/docs/v2/api/components/infinite-scroll/InfiniteScroll/)
63+
64+
#### Refresher:
65+
66+
- `<ion-refresher>` now takes a child `<ion-refresher-content>`
67+
component.
68+
- Custom refresh content components can now be replaced for Ionic's
69+
default refresher content.
70+
- Properties `pullingIcon`, `pullingText` and `refreshingText` have
71+
been moved to the `<ion-refresher-content>` component.
72+
- `spinner` property has been renamed to `refreshingSpinner` and now
73+
goes on the `<ion-refresher-content>` component.
74+
- `refreshingIcon` property is no longer an input, but instead
75+
`refreshingSpinner` should be used.
76+
77+
Was:
78+
79+
```
80+
<ion-refresher (refresh)="doRefresh($event)"
81+
pullingIcon="arrow-dropdown">
82+
</ion-refresher>
83+
```
84+
85+
Now:
86+
87+
```
88+
<ion-refresher (refresh)="doRefresh($event)">
89+
<ion-refresher-content
90+
pullingIcon="arrow-dropdown"></ion-refresher-content>
91+
</ion-refresher>
92+
```
93+
94+
#### Tabs
95+
96+
Input property `tabbarIcons` has been replaced by `tabbarLayout` and accepts the following values: `icon-top`, `icon-left`, `icon-right`, `icon-bottom`, `icon-hide`, `title-hide`.
97+
98+
199
<a name="2.0.0-beta.1"></a>
2100
# [2.0.0-beta.1](https://github.com/driftyco/ionic/compare/v2.0.0-beta.0...v2.0.0-beta.1) (2016-02-18)
3101

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": "true",
33
"name": "ionic2",
4-
"version": "2.0.0-beta.1",
4+
"version": "2.0.0-beta.2",
55
"license": "MIT",
66
"repository": {
77
"type": "git",

0 commit comments

Comments
 (0)