diff --git a/action-sheet/android/build.gradle b/action-sheet/android/build.gradle index ed13b1306..75f5e32f1 100644 --- a/action-sheet/android/build.gradle +++ b/action-sheet/android/build.gradle @@ -16,7 +16,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/app-launcher/android/build.gradle b/app-launcher/android/build.gradle index de113c135..19e8c0c39 100644 --- a/app-launcher/android/build.gradle +++ b/app-launcher/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/app/android/build.gradle b/app/android/build.gradle index 72a44c0f6..64597aa82 100644 --- a/app/android/build.gradle +++ b/app/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/browser/android/build.gradle b/browser/android/build.gradle index ea107cf09..b68e83a4f 100644 --- a/browser/android/build.gradle +++ b/browser/android/build.gradle @@ -16,7 +16,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/camera/CHANGELOG.md b/camera/CHANGELOG.md index 9a4b2022b..2e712eba7 100644 --- a/camera/CHANGELOG.md +++ b/camera/CHANGELOG.md @@ -21,6 +21,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @capacitor/camera +## [5.0.8](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/camera@5.0.7...@capacitor/camera@5.0.8) (2023-12-15) + +### Bug Fixes + +- **camera:** reject promise on web input cancel event ([#1964](https://github.com/ionic-team/capacitor-plugins/issues/1964)) ([77dc373](https://github.com/ionic-team/capacitor-plugins/commit/77dc373b41fb5fee9fb7acdb511564043494bb10)) + ## [5.0.7](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/camera@5.0.6...@capacitor/camera@5.0.7) (2023-08-09) ### Bug Fixes diff --git a/camera/android/build.gradle b/camera/android/build.gradle index 5a87ff2a5..40590d304 100644 --- a/camera/android/build.gradle +++ b/camera/android/build.gradle @@ -17,7 +17,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/camera/src/index.ts b/camera/src/index.ts index ca67dd498..1eaeeb464 100644 --- a/camera/src/index.ts +++ b/camera/src/index.ts @@ -1,9 +1,10 @@ import { registerPlugin } from '@capacitor/core'; import type { CameraPlugin } from './definitions'; +import { CameraWeb } from './web'; const Camera = registerPlugin('Camera', { - web: () => import('./web').then(m => new m.CameraWeb()), + web: () => new CameraWeb(), }); export * from './definitions'; diff --git a/clipboard/android/build.gradle b/clipboard/android/build.gradle index 44dee55cc..e12f97d5d 100644 --- a/clipboard/android/build.gradle +++ b/clipboard/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/device/android/build.gradle b/device/android/build.gradle index 3120567ec..5f816fcc5 100644 --- a/device/android/build.gradle +++ b/device/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/dialog/android/build.gradle b/dialog/android/build.gradle index ccc27862f..ef512bdbf 100644 --- a/dialog/android/build.gradle +++ b/dialog/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/filesystem/CHANGELOG.md b/filesystem/CHANGELOG.md index 02c951025..d82eb1214 100644 --- a/filesystem/CHANGELOG.md +++ b/filesystem/CHANGELOG.md @@ -28,6 +28,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - **filesystem:** add removeAllListeners method ([#1862](https://github.com/ionic-team/capacitor-plugins/issues/1862)) ([f5f84ee](https://github.com/ionic-team/capacitor-plugins/commit/f5f84eedd0806382ba35cb1cdc9f104e35e9b61a)) +# [5.2.0](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/filesystem@5.1.4...@capacitor/filesystem@5.2.0) (2023-12-15) + +### Features + +- **filesystem:** add removeAllListeners method ([#1868](https://github.com/ionic-team/capacitor-plugins/issues/1868)) ([fb941c7](https://github.com/ionic-team/capacitor-plugins/commit/fb941c7f39c37684c07c5162644756f4b919418d)) + ## [5.1.4](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/filesystem@5.1.3...@capacitor/filesystem@5.1.4) (2023-09-14) **Note:** Version bump only for package @capacitor/filesystem diff --git a/filesystem/android/build.gradle b/filesystem/android/build.gradle index 95a4bbbca..e5d428611 100644 --- a/filesystem/android/build.gradle +++ b/filesystem/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/filesystem/android/src/main/java/com/capacitorjs/plugins/filesystem/FilesystemPlugin.java b/filesystem/android/src/main/java/com/capacitorjs/plugins/filesystem/FilesystemPlugin.java index 95e979077..99bff1fb5 100644 --- a/filesystem/android/src/main/java/com/capacitorjs/plugins/filesystem/FilesystemPlugin.java +++ b/filesystem/android/src/main/java/com/capacitorjs/plugins/filesystem/FilesystemPlugin.java @@ -460,7 +460,7 @@ public void requestPermissions(PluginCall call) { permissionsResultJSON.put(PUBLIC_STORAGE, "granted"); call.resolve(permissionsResultJSON); } else { - requestPermissionForAlias(PUBLIC_STORAGE, call, "permissionCallback"); + super.requestPermissions(call); } } diff --git a/geolocation/android/build.gradle b/geolocation/android/build.gradle index 5215a0390..e42baa01b 100644 --- a/geolocation/android/build.gradle +++ b/geolocation/android/build.gradle @@ -16,7 +16,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/google-maps/CHANGELOG.md b/google-maps/CHANGELOG.md index cd98251ef..33be73bbc 100644 --- a/google-maps/CHANGELOG.md +++ b/google-maps/CHANGELOG.md @@ -29,6 +29,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - **google-maps:** Separate mapId for Google Maps Cloud IDs ([#1750](https://github.com/ionic-team/capacitor-plugins/issues/1750)) ([88a633c](https://github.com/ionic-team/capacitor-plugins/commit/88a633ccab6753fe2559a9b8b55a697022fe327c)) +# [5.4.0](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/google-maps@5.3.3...@capacitor/google-maps@5.4.0) (2023-12-15) + +### Features + +- **google-maps:** Separate mapId for Google Maps Cloud IDs ([#1943](https://github.com/ionic-team/capacitor-plugins/issues/1943)) ([bf7ec33](https://github.com/ionic-team/capacitor-plugins/commit/bf7ec3306e7943358ac9ea118b904ff27d6ea2f6)) + ## [5.3.3](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/google-maps@5.3.2...@capacitor/google-maps@5.3.3) (2023-10-04) ### Bug Fixes diff --git a/google-maps/android/build.gradle b/google-maps/android/build.gradle index 5e5bc34fb..52752a7c3 100644 --- a/google-maps/android/build.gradle +++ b/google-maps/android/build.gradle @@ -22,7 +22,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' diff --git a/haptics/android/build.gradle b/haptics/android/build.gradle index b387bce10..343662f7b 100644 --- a/haptics/android/build.gradle +++ b/haptics/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/keyboard/CHANGELOG.md b/keyboard/CHANGELOG.md index fc1eb3c97..edc1b0d58 100644 --- a/keyboard/CHANGELOG.md +++ b/keyboard/CHANGELOG.md @@ -25,6 +25,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - **app,haptics,status-bar,keyboard:** Supporting Swift Package Manager ([#1886](https://github.com/ionic-team/capacitor-plugins/issues/1886)) ([918ea30](https://github.com/ionic-team/capacitor-plugins/commit/918ea30a95f80d740f39e9ab472ed90f9d4a6aba)) +## [5.0.7](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/keyboard@5.0.6...@capacitor/keyboard@5.0.7) (2023-12-15) + +### Bug Fixes + +- **keyboard:** Change keyboard style during setStyle ([#1935](https://github.com/ionic-team/capacitor-plugins/issues/1935)) ([3b520b8](https://github.com/ionic-team/capacitor-plugins/commit/3b520b845563f08897f55eb44fe212ae384a7675)) + ## [5.0.6](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/keyboard@5.0.5...@capacitor/keyboard@5.0.6) (2023-07-12) **Note:** Version bump only for package @capacitor/keyboard diff --git a/keyboard/android/build.gradle b/keyboard/android/build.gradle index 80a9a9e1b..be18b24f6 100644 --- a/keyboard/android/build.gradle +++ b/keyboard/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/local-notifications/android/build.gradle b/local-notifications/android/build.gradle index c6c8c25d0..d0780952c 100644 --- a/local-notifications/android/build.gradle +++ b/local-notifications/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/network/android/build.gradle b/network/android/build.gradle index 59bb4cba0..1b9981806 100644 --- a/network/android/build.gradle +++ b/network/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/preferences/android/build.gradle b/preferences/android/build.gradle index 08653d85e..90e1f3f37 100644 --- a/preferences/android/build.gradle +++ b/preferences/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/push-notifications/android/build.gradle b/push-notifications/android/build.gradle index fa2fa65e5..034f3a626 100644 --- a/push-notifications/android/build.gradle +++ b/push-notifications/android/build.gradle @@ -16,7 +16,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/screen-orientation/android/build.gradle b/screen-orientation/android/build.gradle index 2acfc7c5e..02c183b87 100644 --- a/screen-orientation/android/build.gradle +++ b/screen-orientation/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/screen-reader/CHANGELOG.md b/screen-reader/CHANGELOG.md index 6c428c5b8..fd4243442 100644 --- a/screen-reader/CHANGELOG.md +++ b/screen-reader/CHANGELOG.md @@ -19,6 +19,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @capacitor/screen-reader +## [5.0.7](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/screen-reader@5.0.6...@capacitor/screen-reader@5.0.7) (2023-12-15) + +**Note:** Version bump only for package @capacitor/screen-reader + ## [5.0.6](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/screen-reader@5.0.5...@capacitor/screen-reader@5.0.6) (2023-07-12) **Note:** Version bump only for package @capacitor/screen-reader diff --git a/screen-reader/android/build.gradle b/screen-reader/android/build.gradle index ee034b9de..6357efc12 100644 --- a/screen-reader/android/build.gradle +++ b/screen-reader/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/share/android/build.gradle b/share/android/build.gradle index bb190f497..ca473b6ea 100644 --- a/share/android/build.gradle +++ b/share/android/build.gradle @@ -2,7 +2,7 @@ ext { capacitorVersion = System.getenv('CAPACITOR_VERSION') junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2' androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1' - androidxCoreVersion = project.hasProperty('androidxCoreVersion') ? rootProject.ext.androidxCoreVersion : '1.10.1' + androidxCoreVersion = project.hasProperty('androidxCoreVersion') ? rootProject.ext.androidxCoreVersion : '1.12.0' androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5' androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1' } @@ -16,7 +16,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/splash-screen/android/build.gradle b/splash-screen/android/build.gradle index 2243fcb25..a0dfda682 100644 --- a/splash-screen/android/build.gradle +++ b/splash-screen/android/build.gradle @@ -16,7 +16,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/status-bar/android/build.gradle b/status-bar/android/build.gradle index 3ebd7168c..35489210f 100644 --- a/status-bar/android/build.gradle +++ b/status-bar/android/build.gradle @@ -1,7 +1,7 @@ ext { capacitorVersion = System.getenv('CAPACITOR_VERSION') junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2' - androidxCoreVersion = project.hasProperty('androidxCoreVersion') ? rootProject.ext.androidxCoreVersion : '1.10.1' + androidxCoreVersion = project.hasProperty('androidxCoreVersion') ? rootProject.ext.androidxCoreVersion : '1.12.0' androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1' androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5' androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1' @@ -16,7 +16,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/text-zoom/android/build.gradle b/text-zoom/android/build.gradle index 692ca491c..90c1cbc8c 100644 --- a/text-zoom/android/build.gradle +++ b/text-zoom/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' } diff --git a/toast/android/build.gradle b/toast/android/build.gradle index 5a3746e43..1a3b46d3c 100644 --- a/toast/android/build.gradle +++ b/toast/android/build.gradle @@ -15,7 +15,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.2.0' + classpath 'com.android.tools.build:gradle:8.2.1' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { classpath 'io.github.gradle-nexus:publish-plugin:1.3.0' }