This is an automated email from the ASF dual-hosted git repository. erisu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/cordova-plugin-file.git
commit 5480a3e2932b5fec0d5554ba7123bfd510203a30 Author: Erisu <[email protected]> AuthorDate: Fri Jul 7 13:19:08 2023 +0900 release(file-v8.0.0): updated version and RELEASENOTES.md --- RELEASENOTES.md | 14 ++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- plugin.xml | 2 +- tests/package.json | 2 +- tests/plugin.xml | 2 +- 6 files changed, 20 insertions(+), 6 deletions(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index c9bce15..efeee8b 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,6 +20,20 @@ --> # Release Notes +### 8.0.0 (Jul 07, 2023) + +* [GH-534](https://github.com/apache/cordova-plugin-file/pull/534) fix(android): `FileError` on a content `resolveLocalFileSystemURL` +* [GH-566](https://github.com/apache/cordova-plugin-file/pull/566) feat(android): add `READ_MEDIA_*` permissions for Android 13+ +* [GH-576](https://github.com/apache/cordova-plugin-file/pull/576) feat(android)!: bump `cordova-android@12` requirement +* [GH-575](https://github.com/apache/cordova-plugin-file/pull/575) ci: sync github workflow with paramedic base configs +* [GH-574](https://github.com/apache/cordova-plugin-file/pull/574) chore: update `@cordova/[email protected]` w/ fixes +* [GH-556](https://github.com/apache/cordova-plugin-file/pull/556) feat(android)!: remove `WRITE_EXTERNAL_STORAGE` permission from `plugin.xml` +* [GH-554](https://github.com/apache/cordova-plugin-file/pull/554) spec(android): fix spec based on testing environment +* [GH-547](https://github.com/apache/cordova-plugin-file/pull/547) fix(types): Mark `FileWriter.write` to support `ArrayBuffer` data +* [GH-535](https://github.com/apache/cordova-plugin-file/pull/535) ci: sync workflow with paramedic +* [GH-531](https://github.com/apache/cordova-plugin-file/pull/531) dep(npm): bump package-lock v2 w/ rebuild +* [GH-529](https://github.com/apache/cordova-plugin-file/pull/529) ci(android): update java requirement for `cordova-android@11` + ### 7.0.0 (Apr 08, 2022) * [GH-520](https://github.com/apache/cordova-plugin-file/pull/520) test(android): disable `content` scheme tests diff --git a/package-lock.json b/package-lock.json index bd5b87e..cee0159 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cordova-plugin-file", - "version": "8.0.0-dev", + "version": "8.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cordova-plugin-file", - "version": "8.0.0-dev", + "version": "8.0.0", "license": "Apache-2.0", "devDependencies": { "@cordova/eslint-config": "^5.0.0" diff --git a/package.json b/package.json index 43eb923..69a7130 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-file", - "version": "8.0.0-dev", + "version": "8.0.0", "description": "Cordova File Plugin", "types": "./types/index.d.ts", "cordova": { diff --git a/plugin.xml b/plugin.xml index 83f56bc..a8f3130 100644 --- a/plugin.xml +++ b/plugin.xml @@ -21,7 +21,7 @@ <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-file" - version="8.0.0-dev"> + version="8.0.0"> <name>File</name> <description>Cordova File Plugin</description> <license>Apache 2.0</license> diff --git a/tests/package.json b/tests/package.json index 4232af9..d7e3d52 100644 --- a/tests/package.json +++ b/tests/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-file-tests", - "version": "8.0.0-dev", + "version": "8.0.0", "description": "", "cordova": { "id": "cordova-plugin-file-tests", diff --git a/tests/plugin.xml b/tests/plugin.xml index 13bb96e..18e62e5 100644 --- a/tests/plugin.xml +++ b/tests/plugin.xml @@ -21,7 +21,7 @@ <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-file-tests" - version="8.0.0-dev"> + version="8.0.0"> <name>Cordova File Plugin Tests</name> <license>Apache 2.0</license> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
