From 7f33ef4add0a3a8ef3f2c3500f090711c1266dbf Mon Sep 17 00:00:00 2001 From: Norman Breau Date: Wed, 30 Oct 2024 10:51:38 -0300 Subject: [PATCH] chore: version 8.0.0 --- RELEASENOTES.md | 35 +++++++++++++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- plugin.xml | 2 +- tests/package-lock.json | 13 +++++++++++++ tests/package.json | 2 +- tests/plugin.xml | 2 +- 7 files changed, 54 insertions(+), 6 deletions(-) create mode 100644 tests/package-lock.json diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 8d35c2ceb..0b601d7d0 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,6 +20,41 @@ --> # Release Notes +### 8.0.0 (Oct 30, 2024) + +**Breaking Changes:** + +* [GH-889](https://github.com/apache/cordova-plugin-camera/pull/889) fix(android): Remove media permissions to make complaint with **Android** 14 requirements (#889) +* [GH-902](https://github.com/apache/cordova-plugin-camera/pull/902) fix(android): return content uris when possible when selecting from gallery (#902) +* [GH-909](https://github.com/apache/cordova-plugin-camera/pull/909) refactor(android): Make WRITE_EXTERNAL_STORAGE optional (#909) +* [GH-910](https://github.com/apache/cordova-plugin-camera/pull/910) fix(android): Return data uris as an URI (#910) +* [GH-911](https://github.com/apache/cordova-plugin-camera/pull/911) fix(ios): Sync camera API return to match **Android** changes (#911) +* [GH-912](https://github.com/apache/cordova-plugin-camera/pull/912) fix(browser): Make data uri be returned as actual URI strings (#912) + +**Fixes**: + +* [GH-901](https://github.com/apache/cordova-plugin-camera/pull/901) fix(android): Isolate provider access to a subdirectory (#901) +* [GH-915](https://github.com/apache/cordova-plugin-camera/pull/903) fix(android): Improper serialization of image uri in save instance state (#903) +* [GH-904](https://github.com/apache/cordova-plugin-camera/pull/904) fix(android): Use VERSION_CODES instead of hard-coded API literals (#904) +* [GH-915](https://github.com/apache/cordova-plugin-camera/pull/905) fix(android): improper cache path construction during image manipulation (#905) +* [GH-906](https://github.com/apache/cordova-plugin-camera/pull/906) refactor(android): replace image path usage with image uris (#906) +* [GH-915](https://github.com/apache/cordova-plugin-camera/pull/907) refactor(android): remove query img usage (#907) +* [GH-915](https://github.com/apache/cordova-plugin-camera/pull/915) fix!: Remove WRITE_EXTERNAL_PERMISSION (#915) + +**CI**: + +* [GH-890](https://github.com/apache/cordova-plugin-camera/pull/890) ci(android): Update **Android** CI to be compatible with `cordova-android`@13 (#890) +* [GH-895](https://github.com/apache/cordova-plugin-camera/pull/895) ci: sync workflow with paramedic (#895) + +**Documentation**: + +* [GH-913](https://github.com/apache/cordova-plugin-camera/pull/913) docs: Revisions for v8 public API changes with the return string formats of getPicture (#913) + +**Other**: + +* [GH-898](https://github.com/apache/cordova-plugin-camera/pull/898) chore: Update eslint config to 5.1.0 (#898) +* [GH-914](https://github.com/apache/cordova-plugin-camera/pull/914) deprecation: allowEdit (#914) + ### 7.0.0 (Sep 06, 2023) **Breaking Changes:** diff --git a/package-lock.json b/package-lock.json index 2932e5b20..ab521a7d2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cordova-plugin-camera", - "version": "8.0.0-dev", + "version": "8.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cordova-plugin-camera", - "version": "8.0.0-dev", + "version": "8.0.0", "license": "Apache-2.0", "devDependencies": { "@cordova/eslint-config": "^5.1.0" diff --git a/package.json b/package.json index 195078410..350a21111 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-camera", - "version": "8.0.0-dev", + "version": "8.0.0", "description": "Cordova Camera Plugin", "types": "./types/index.d.ts", "cordova": { diff --git a/plugin.xml b/plugin.xml index 360c17921..4f082c5ac 100644 --- a/plugin.xml +++ b/plugin.xml @@ -21,7 +21,7 @@ + version="8.0.0"> Camera Cordova Camera Plugin Apache 2.0 diff --git a/tests/package-lock.json b/tests/package-lock.json new file mode 100644 index 000000000..a697d5246 --- /dev/null +++ b/tests/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "cordova-plugin-camera-tests", + "version": "8.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "cordova-plugin-camera-tests", + "version": "8.0.0", + "license": "Apache-2.0" + } + } +} diff --git a/tests/package.json b/tests/package.json index 289d81456..1797e8595 100644 --- a/tests/package.json +++ b/tests/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-camera-tests", - "version": "7.0.1-dev", + "version": "8.0.0", "description": "", "cordova": { "id": "cordova-plugin-camera-tests", diff --git a/tests/plugin.xml b/tests/plugin.xml index 733e83076..0abec4cf7 100644 --- a/tests/plugin.xml +++ b/tests/plugin.xml @@ -22,7 +22,7 @@ xmlns:android="http://schemas.android.com/apk/res/android" xmlns:rim="http://www.blackberry.com/ns/widgets" id="cordova-plugin-camera-tests" - version="7.0.1-dev"> + version="8.0.0"> Cordova Camera Plugin Tests Apache 2.0