Skip to content

Commit 7f33ef4

Browse files
committed
chore: version 8.0.0
1 parent 4c9dc10 commit 7f33ef4

7 files changed

+54
-6
lines changed

RELEASENOTES.md

+35
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,41 @@
2020
-->
2121
# Release Notes
2222

23+
### 8.0.0 (Oct 30, 2024)
24+
25+
**Breaking Changes:**
26+
27+
* [GH-889](https://github.com/apache/cordova-plugin-camera/pull/889) fix(android): Remove media permissions to make complaint with **Android** 14 requirements (#889)
28+
* [GH-902](https://github.com/apache/cordova-plugin-camera/pull/902) fix(android): return content uris when possible when selecting from gallery (#902)
29+
* [GH-909](https://github.com/apache/cordova-plugin-camera/pull/909) refactor(android): Make WRITE_EXTERNAL_STORAGE optional (#909)
30+
* [GH-910](https://github.com/apache/cordova-plugin-camera/pull/910) fix(android): Return data uris as an URI (#910)
31+
* [GH-911](https://github.com/apache/cordova-plugin-camera/pull/911) fix(ios): Sync camera API return to match **Android** changes (#911)
32+
* [GH-912](https://github.com/apache/cordova-plugin-camera/pull/912) fix(browser): Make data uri be returned as actual URI strings (#912)
33+
34+
**Fixes**:
35+
36+
* [GH-901](https://github.com/apache/cordova-plugin-camera/pull/901) fix(android): Isolate provider access to a subdirectory (#901)
37+
* [GH-915](https://github.com/apache/cordova-plugin-camera/pull/903) fix(android): Improper serialization of image uri in save instance state (#903)
38+
* [GH-904](https://github.com/apache/cordova-plugin-camera/pull/904) fix(android): Use VERSION_CODES instead of hard-coded API literals (#904)
39+
* [GH-915](https://github.com/apache/cordova-plugin-camera/pull/905) fix(android): improper cache path construction during image manipulation (#905)
40+
* [GH-906](https://github.com/apache/cordova-plugin-camera/pull/906) refactor(android): replace image path usage with image uris (#906)
41+
* [GH-915](https://github.com/apache/cordova-plugin-camera/pull/907) refactor(android): remove query img usage (#907)
42+
* [GH-915](https://github.com/apache/cordova-plugin-camera/pull/915) fix!: Remove WRITE_EXTERNAL_PERMISSION (#915)
43+
44+
**CI**:
45+
46+
* [GH-890](https://github.com/apache/cordova-plugin-camera/pull/890) ci(android): Update **Android** CI to be compatible with `cordova-android`@13 (#890)
47+
* [GH-895](https://github.com/apache/cordova-plugin-camera/pull/895) ci: sync workflow with paramedic (#895)
48+
49+
**Documentation**:
50+
51+
* [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)
52+
53+
**Other**:
54+
55+
* [GH-898](https://github.com/apache/cordova-plugin-camera/pull/898) chore: Update eslint config to 5.1.0 (#898)
56+
* [GH-914](https://github.com/apache/cordova-plugin-camera/pull/914) deprecation: allowEdit (#914)
57+
2358
### 7.0.0 (Sep 06, 2023)
2459

2560
**Breaking Changes:**

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-camera",
3-
"version": "8.0.0-dev",
3+
"version": "8.0.0",
44
"description": "Cordova Camera Plugin",
55
"types": "./types/index.d.ts",
66
"cordova": {

plugin.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
2222
xmlns:android="http://schemas.android.com/apk/res/android"
2323
id="cordova-plugin-camera"
24-
version="7.0.1-dev">
24+
version="8.0.0">
2525
<name>Camera</name>
2626
<description>Cordova Camera Plugin</description>
2727
<license>Apache 2.0</license>

tests/package-lock.json

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-camera-tests",
3-
"version": "7.0.1-dev",
3+
"version": "8.0.0",
44
"description": "",
55
"cordova": {
66
"id": "cordova-plugin-camera-tests",

tests/plugin.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
xmlns:android="http://schemas.android.com/apk/res/android"
2323
xmlns:rim="http://www.blackberry.com/ns/widgets"
2424
id="cordova-plugin-camera-tests"
25-
version="7.0.1-dev">
25+
version="8.0.0">
2626
<name>Cordova Camera Plugin Tests</name>
2727
<license>Apache 2.0</license>
2828

0 commit comments

Comments
 (0)