Skip to content

Commit

Permalink
merge release-5.4.4
Browse files Browse the repository at this point in the history
Release 5.4.4
  • Loading branch information
liamdebeasi committed Nov 12, 2020
2 parents 7214a84 + bf3f3bb commit 96d6012
Show file tree
Hide file tree
Showing 16 changed files with 43 additions and 30 deletions.
7 changes: 5 additions & 2 deletions .circleci/config.yml
Expand Up @@ -442,8 +442,11 @@ workflows:
requires: [puppeteer-dependencies, build-core]
- test-core-spec:
requires: [build-core]
- test-core-treeshake:
requires: [build-core]
# Adam requested we skip this test for now
# since it is failing on ES5 code which
# will be removed in Ionic Framework v6
#- test-core-treeshake:
# requires: [build-core]
- test-core-screenshot:
requires: [build-core]
filters:
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,12 @@
## [5.4.4](https://github.com/ionic-team/ionic/compare/v5.4.3...v5.4.4) (2020-11-12)


### Bug Fixes

* **build:** add missing es5 output ([228d349](https://github.com/ionic-team/ionic/commit/228d349c6e29b62cbfee5d5502883682cfa5032f))



## [5.4.3](https://github.com/ionic-team/ionic/compare/v5.4.2...v5.4.3) (2020-11-06)


Expand Down
6 changes: 3 additions & 3 deletions angular/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions angular/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/angular",
"version": "5.4.3",
"version": "5.4.4",
"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.4.3",
"@ionic/core": "5.4.4",
"tslib": "^1.9.3"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/core",
"version": "5.4.3",
"version": "5.4.4",
"description": "Base components for Ionic",
"keywords": [
"ionic",
Expand Down
1 change: 1 addition & 0 deletions core/stencil.config.ts
Expand Up @@ -171,6 +171,7 @@ export const config: Config = {
]
}
],
buildEs5: 'prod',
extras: {
cssVarsShim: true,
dynamicImportShim: true,
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/docs",
"version": "5.4.3",
"version": "5.4.4",
"description": "Pre-packaged API documentation for the Ionic docs.",
"main": "core.json",
"types": "core.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions packages/angular-server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/angular-server/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/angular-server",
"version": "5.4.3",
"version": "5.4.4",
"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.4.3",
"@ionic/core": "5.4.4",
"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.4.3",
"version": "5.4.4",
"description": "React Router wrapper for @ionic/react",
"keywords": [
"ionic",
Expand Down Expand Up @@ -39,16 +39,16 @@
"tslib": "*"
},
"peerDependencies": {
"@ionic/core": "5.4.3",
"@ionic/react": "5.4.3",
"@ionic/core": "5.4.4",
"@ionic/react": "5.4.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"@ionic/core": "5.4.3",
"@ionic/react": "5.4.3",
"@ionic/core": "5.4.4",
"@ionic/react": "5.4.4",
"@rollup/plugin-node-resolve": "^8.1.0",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.9",
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/react",
"version": "5.4.3",
"version": "5.4.4",
"description": "React specific wrapper for @ionic/core",
"keywords": [
"ionic",
Expand Down Expand Up @@ -39,7 +39,7 @@
"css/"
],
"dependencies": {
"@ionic/core": "5.4.3",
"@ionic/core": "5.4.4",
"ionicons": "^5.1.2",
"tslib": "*"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/vue-router/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/vue-router/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/vue-router",
"version": "5.4.3",
"version": "5.4.4",
"description": "Vue Router integration for @ionic/vue",
"scripts": {
"test.spec": "jest",
Expand Down
4 changes: 2 additions & 2 deletions packages/vue/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/vue/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/vue",
"version": "5.4.3",
"version": "5.4.4",
"description": "Vue specific wrapper for @ionic/core",
"scripts": {
"lint": "echo add linter",
Expand Down Expand Up @@ -57,7 +57,7 @@
"vue-router": "^4.0.0-beta.11"
},
"dependencies": {
"@ionic/core": "5.4.3",
"@ionic/core": "5.4.4",
"ionicons": "^5.1.2"
},
"vetur": {
Expand Down

0 comments on commit 96d6012

Please sign in to comment.