diff --git a/CHANGELOG.md b/CHANGELOG.md index 69df0f9ef..f7fa02ea0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.2](https://github.com/ionic-team/capacitor/compare/5.7.1...5.7.2) (2024-03-06) + +### Bug Fixes + +- **android:** prevent crash on script injection if the script is too long ([#7316](https://github.com/ionic-team/capacitor/issues/7316)) ([67c00e2](https://github.com/ionic-team/capacitor/commit/67c00e2b18994c78433b4b35b7c9e69fa24277b0)) +- **cli:** Attempt to verify non-cjs modules exist if cjs resolution fails ([#7310](https://github.com/ionic-team/capacitor/issues/7310)) ([#7313](https://github.com/ionic-team/capacitor/issues/7313)) ([28e7f08](https://github.com/ionic-team/capacitor/commit/28e7f08dd7a78a61a40f7c9f90ed30a94b167a35)) + ## [5.7.1](https://github.com/ionic-team/capacitor/compare/5.7.0...5.7.1) (2024-03-01) ### Bug Fixes diff --git a/android/CHANGELOG.md b/android/CHANGELOG.md index c8da05192..4a3cc86d8 100644 --- a/android/CHANGELOG.md +++ b/android/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.2](https://github.com/ionic-team/capacitor/compare/5.7.1...5.7.2) (2024-03-06) + +### Bug Fixes + +- **android:** prevent crash on script injection if the script is too long ([#7316](https://github.com/ionic-team/capacitor/issues/7316)) ([67c00e2](https://github.com/ionic-team/capacitor/commit/67c00e2b18994c78433b4b35b7c9e69fa24277b0)) + ## [5.7.1](https://github.com/ionic-team/capacitor/compare/5.7.0...5.7.1) (2024-03-01) ### Bug Fixes diff --git a/android/package.json b/android/package.json index 2cd3ecb63..18096c9b9 100644 --- a/android/package.json +++ b/android/package.json @@ -1,6 +1,6 @@ { "name": "@capacitor/android", - "version": "5.7.1", + "version": "5.7.2", "description": "Capacitor: Cross-platform apps with JavaScript and the web", "homepage": "https://capacitorjs.com", "author": "Ionic Team (https://ionic.io)", diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 2020298c6..2eda6bd46 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.2](https://github.com/ionic-team/capacitor/compare/5.7.1...5.7.2) (2024-03-06) + +### Bug Fixes + +- **cli:** Attempt to verify non-cjs modules exist if cjs resolution fails ([#7310](https://github.com/ionic-team/capacitor/issues/7310)) ([#7313](https://github.com/ionic-team/capacitor/issues/7313)) ([28e7f08](https://github.com/ionic-team/capacitor/commit/28e7f08dd7a78a61a40f7c9f90ed30a94b167a35)) + ## [5.7.1](https://github.com/ionic-team/capacitor/compare/5.7.0...5.7.1) (2024-03-01) ### Bug Fixes diff --git a/cli/package.json b/cli/package.json index ebccdc37c..043ee0143 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@capacitor/cli", - "version": "5.7.1", + "version": "5.7.2", "description": "Capacitor: Cross-platform apps with JavaScript and the web", "homepage": "https://capacitorjs.com", "author": "Ionic Team (https://ionic.io)", diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index e47f6bdcf..b1ef2ffe7 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.2](https://github.com/ionic-team/capacitor/compare/5.7.1...5.7.2) (2024-03-06) + +**Note:** Version bump only for package @capacitor/core + ## [5.7.1](https://github.com/ionic-team/capacitor/compare/5.7.0...5.7.1) (2024-03-01) ### Bug Fixes diff --git a/core/package.json b/core/package.json index 3574232e3..ea528f4f8 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "@capacitor/core", - "version": "5.7.1", + "version": "5.7.2", "description": "Capacitor: Cross-platform apps with JavaScript and the web", "homepage": "https://capacitorjs.com", "author": "Ionic Team (https://ionic.io)", diff --git a/ios/CHANGELOG.md b/ios/CHANGELOG.md index 1bd34a68d..215b72be1 100644 --- a/ios/CHANGELOG.md +++ b/ios/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.2](https://github.com/ionic-team/capacitor/compare/5.7.1...5.7.2) (2024-03-06) + +**Note:** Version bump only for package @capacitor/ios + ## [5.7.1](https://github.com/ionic-team/capacitor/compare/5.7.0...5.7.1) (2024-03-01) ### Bug Fixes diff --git a/ios/package.json b/ios/package.json index 54e1008a9..3c93b4d1b 100644 --- a/ios/package.json +++ b/ios/package.json @@ -1,6 +1,6 @@ { "name": "@capacitor/ios", - "version": "5.7.1", + "version": "5.7.2", "description": "Capacitor: Cross-platform apps with JavaScript and the web", "homepage": "https://capacitorjs.com", "author": "Ionic Team (https://ionic.io)", diff --git a/lerna.json b/lerna.json index 5f8466750..fcc09b86e 100644 --- a/lerna.json +++ b/lerna.json @@ -11,6 +11,6 @@ "tagVersionPrefix": "" } }, - "version": "5.7.1", + "version": "5.7.2", "$schema": "node_modules/lerna/schemas/lerna-schema.json" }