Skip to content

Commit

Permalink
5.0.0-beta.5
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi committed Jan 17, 2020
1 parent a5229d9 commit 3024a21
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 13 deletions.
51 changes: 51 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,54 @@
# [5.0.0-beta.5](https://github.com/ionic-team/ionic/compare/v4.11.8...v5.0.0-beta.5) (2020-01-17)


### Bug Fixes

* **action-sheet:** allow scrollable action sheet with many options ([#20145](https://github.com/ionic-team/ionic/issues/20145)) ([53fad97](https://github.com/ionic-team/ionic/commit/53fad978c5a57efe34671db6cbede49c4a5af866)), closes [#17311](https://github.com/ionic-team/ionic/issues/17311)
* **card:** remove top padding of content in iOS if under header ([#20223](https://github.com/ionic-team/ionic/issues/20223)) ([9232f16](https://github.com/ionic-team/ionic/commit/9232f16eea8163c1ac0797abd9b6e92da44bacb1))
* **content:** scroll-content div now takes up full height of container ([#20194](https://github.com/ionic-team/ionic/issues/20194)) ([9d63b41](https://github.com/ionic-team/ionic/commit/9d63b41a5296688524c64f828f92090d73d6b556)), closes [#20185](https://github.com/ionic-team/ionic/issues/20185)
* **header:** header opacity properly resets on collapsible titles ([#20202](https://github.com/ionic-team/ionic/issues/20202)) ([8e11f79](https://github.com/ionic-team/ionic/commit/8e11f79fcca94a9c50ccc7e18e0fe44ef9764b1d))
* **modal:** prevent double dismiss via gesture and backdrop tap on card-style modal ([#20203](https://github.com/ionic-team/ionic/issues/20203)) ([5b0400d](https://github.com/ionic-team/ionic/commit/5b0400d5afec308861408967a5f61c9b93af0004))
* **picker:** pick correct option at low velocities ([#19660](https://github.com/ionic-team/ionic/issues/19660)) ([39d1262](https://github.com/ionic-team/ionic/commit/39d12629dbc12e4a86037b09350ec1c49ed6e2e4)), closes [#19659](https://github.com/ionic-team/ionic/issues/19659)
* **react:** updating icon type and add caret to internal icons ([#20216](https://github.com/ionic-team/ionic/issues/20216)) ([dc78f98](https://github.com/ionic-team/ionic/commit/dc78f981531960791a425b3b1b81d45d5065a263))
* **ssr:** add reflect content-id attribute to applicable properties ([#20169](https://github.com/ionic-team/ionic/issues/20169)) ([3aa47e6](https://github.com/ionic-team/ionic/commit/3aa47e6e2f18c3a07f2c0560a0946571e8e6815d))


### Code Refactoring

* removed checked/selected properties in favor of setting value on parent ([#19449](https://github.com/ionic-team/ionic/issues/19449)) ([a5229d9](https://github.com/ionic-team/ionic/commit/a5229d90ca2a608e8bf4db0c8f71c86d481dd649))


### Features

* **datetime:** add custom timezone display property ([#19519](https://github.com/ionic-team/ionic/issues/19519)) ([7b032c5](https://github.com/ionic-team/ionic/commit/7b032c5e9b396fcfb0b0e313aff1bebcbc43305e)), closes [#19401](https://github.com/ionic-team/ionic/issues/19401)
* **segment:** update design for iOS and MD spec ([#19036](https://github.com/ionic-team/ionic/issues/19036)) ([dc66ce4](https://github.com/ionic-team/ionic/commit/dc66ce48e1f210ca57cecae5c89e5dc3b7e95de5)), closes [#18663](https://github.com/ionic-team/ionic/issues/18663)
* **toast:** expose shadow parts ([#20146](https://github.com/ionic-team/ionic/issues/20146)) ([3b4988a](https://github.com/ionic-team/ionic/commit/3b4988aa60dc6d31e1bc3367cb8f5e8d85710ac6))


### BREAKING CHANGES
> We recommend updating to the latest version of 4.x before trying out version 5 in order to see deprecation warnings related to your app in the console.
* The following components have been updated to remove the checked or selected properties:

- Radio
- Segment Button
- Select

Developers should set the value property on the respective parent components in order to managed checked/selected status. See the [Breaking Changes](./BREAKING.md) document for updated usage examples.


* Controller components have been removed. Developers should user their respective imports instead. This only affects vanilla JS applications.

Before:
```html
<ion-modal-controller></ion-modal-controller>
```

After:
```javascript
import { modalController } from '@ionic/core';
```

## [4.11.8](https://github.com/ionic-team/ionic/compare/v4.11.7...v4.11.8) (2020-01-13)

* **react:** add missing react memory router ([8a5aba2](https://github.com/ionic-team/ionic/commit/8a5aba206865ce2af7f8bb85f4e7cd8dec37831d))
Expand Down
4 changes: 2 additions & 2 deletions angular/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/angular",
"version": "5.0.0-beta.4",
"version": "5.0.0-beta.5",
"description": "Angular specific wrappers for @ionic/core",
"keywords": [
"ionic",
Expand Down Expand Up @@ -42,7 +42,7 @@
"validate": "npm i && npm run lint && npm run test && npm run build"
},
"dependencies": {
"@ionic/core": "5.0.0-beta.4",
"@ionic/core": "5.0.0-beta.5",
"tslib": "^1.9.3"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion core/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/core",
"version": "5.0.0-beta.4",
"version": "5.0.0-beta.5",
"description": "Base components for Ionic",
"keywords": [
"ionic",
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/docs",
"version": "5.0.0-beta.4",
"version": "5.0.0-beta.5",
"description": "Pre-packaged API documentation for the Ionic docs.",
"main": "core.json",
"types": "core.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/angular-server/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/angular-server",
"version": "5.0.0-beta.4",
"version": "5.0.0-beta.5",
"description": "Angular SSR Module for Ionic",
"keywords": [
"ionic",
Expand Down Expand Up @@ -49,7 +49,7 @@
"@angular/core": "8.2.13",
"@angular/platform-browser": "8.2.13",
"@angular/platform-server": "8.2.13",
"@ionic/core": "5.0.0-beta.4",
"@ionic/core": "5.0.0-beta.5",
"ng-packagr": "5.7.1",
"tslint": "^5.12.1",
"tslint-ionic-rules": "0.0.21",
Expand Down
10 changes: 5 additions & 5 deletions packages/react-router/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/react-router",
"version": "5.0.0-beta.4",
"version": "5.0.0-beta.5",
"description": "React Router wrapper for @ionic/react",
"keywords": [
"ionic",
Expand Down Expand Up @@ -39,16 +39,16 @@
"tslib": "*"
},
"peerDependencies": {
"@ionic/core": "5.0.0-beta.4",
"@ionic/react": "5.0.0-beta.4",
"@ionic/core": "5.0.0-beta.5",
"@ionic/react": "5.0.0-beta.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"@ionic/core": "5.0.0-beta.4",
"@ionic/react": "5.0.0-beta.4",
"@ionic/core": "5.0.0-beta.5",
"@ionic/react": "5.0.0-beta.5",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/react",
"version": "5.0.0-beta.4",
"version": "5.0.0-beta.5",
"description": "React specific wrapper for @ionic/core",
"keywords": [
"ionic",
Expand Down Expand Up @@ -39,7 +39,7 @@
"css/"
],
"dependencies": {
"@ionic/core": "5.0.0-beta.4",
"@ionic/core": "5.0.0-beta.5",
"ionicons": "^5.0.0-13",
"tslib": "*"
},
Expand Down

0 comments on commit 3024a21

Please sign in to comment.