-
Notifications
You must be signed in to change notification settings - Fork 556
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
announcement: File Plugin 8.1.2 (#1373)
* announcement: File Plugin 8.1.2 * Update www/_posts/2024-10-28-cordova-plugin-file-8.1.2.md Co-authored-by: エリス <[email protected]> * corrected grammer --------- Co-authored-by: エリス <[email protected]>
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,8 @@ By default, the `AndroidInsecureFileModeEnabled` preference is disabled. If your | |
|
||
For iOS, there are no changes. | ||
|
||
_Edit (2024-10-28)_: This patch introduces a regression on Android platforms when resolving `.toURL()` on some `file://` URIs. Please use upgrade to `[email protected]` instead. | ||
|
||
Please report any issues you find by following the this [How to File a Bug](https://github.com/apache/cordova#filing-a-bug) guide! | ||
|
||
<!--more--> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
layout: post | ||
author: | ||
name: Norman Breau | ||
url: https://breautek.com | ||
title: "File Plugin 8.1.2 Released!" | ||
categories: announcements | ||
tags: news releases | ||
--- | ||
|
||
We are happy to announce that we have just released an update for `cordova-plugin-file`! | ||
|
||
* [[email protected]](https://www.npmjs.com/package/cordova-plugin-file) | ||
|
||
**To upgrade:** | ||
|
||
```bash | ||
cordova plugin remove cordova-plugin-file | ||
cordova plugin add [email protected] | ||
``` | ||
|
||
## Release Highlights | ||
|
||
This patch is a regression fix. See [8.1.1 release blog](https://cordova.apache.org/announcements/2024/10/23/cordova-plugin-file-8.1.1.html) post for more details. | ||
|
||
In 8.1.1, the `FileEntry.toURL()` method broke when used on any `file://` that didn't lead to the app's internal assets on Android. This is now corrected. | ||
|
||
This bug didn't effect iOS devices. | ||
|
||
Please report any issues you find by following the [How to File a Bug](https://github.com/apache/cordova#filing-a-bug) guide! | ||
|
||
<!--more--> | ||
# Changes include: | ||
|
||
**Fixes:** | ||
* [GH-640](https://github.com/apache/cordova-plugin-file/pull/640) fix(android): Regression breaking resolved DOM-usable file:// paths (#640) |