From fec4f9c5cbae096844cc97ca2bb8957419d87689 Mon Sep 17 00:00:00 2001 From: Victor Carreras <34163765+vicajilau@users.noreply.github.com> Date: Wed, 12 Feb 2025 15:08:31 +0100 Subject: [PATCH 1/7] Adding breaking change to CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d3e10cd1..2bd66859 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,8 @@ ## 8.3.0 ### Desktop (macOS) && iOS - Adds support for Swift Package Manager for compatibility with new projects [#1582](https://github.com/miguelpruivo/flutter_file_picker/issues/1582) +### macOS +- BREAKING CHANGE: `pickFiles()` now requires the `com.apple.security.files.user-selected.read-only` entitlement on macOS. Without this entitlement, the file picker will not open, and the method will return `null`. [#1706](https://github.com/miguelpruivo/flutter_file_picker/issues/1706) ## 8.2.0 ### Desktop (macOS) From c88138d0bbf6dfc3bdc17e88a86dfb21b52820d1 Mon Sep 17 00:00:00 2001 From: Victor Carreras <34163765+vicajilau@users.noreply.github.com> Date: Fri, 14 Feb 2025 11:05:13 +0100 Subject: [PATCH 2/7] Changed references --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bd66859..a88a1b96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,7 @@ ### Desktop (macOS) && iOS - Adds support for Swift Package Manager for compatibility with new projects [#1582](https://github.com/miguelpruivo/flutter_file_picker/issues/1582) ### macOS -- BREAKING CHANGE: `pickFiles()` now requires the `com.apple.security.files.user-selected.read-only` entitlement on macOS. Without this entitlement, the file picker will not open, and the method will return `null`. [#1706](https://github.com/miguelpruivo/flutter_file_picker/issues/1706) +- BREAKING CHANGE: `pickFiles()` now requires the `com.apple.security.files.user-selected.read-only` entitlement on macOS. Without this entitlement, the file picker will not open, and the method will return `null`. [WIKI](https://github.com/miguelpruivo/flutter_file_picker/wiki/Setup#macos) ## 8.2.0 ### Desktop (macOS) From 2a402c324ad029ae8f190eca16533d23ebe2fb2e Mon Sep 17 00:00:00 2001 From: Victor Carreras <34163765+vicajilau@users.noreply.github.com> Date: Fri, 14 Feb 2025 11:41:13 +0100 Subject: [PATCH 3/7] Modified place --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2736b0f9..49adb349 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,12 +26,12 @@ ## 8.3.0 ### Desktop (macOS) && iOS - Adds support for Swift Package Manager for compatibility with new projects [#1582](https://github.com/miguelpruivo/flutter_file_picker/issues/1582) -### macOS -- BREAKING CHANGE: `pickFiles()` now requires the `com.apple.security.files.user-selected.read-only` entitlement on macOS. Without this entitlement, the file picker will not open, and the method will return `null`. [WIKI](https://github.com/miguelpruivo/flutter_file_picker/wiki/Setup#macos) ## 8.2.0 ### Desktop (macOS) - Reimplement macOS file picker using method channels (fixes [#1492](https://github.com/miguelpruivo/flutter_file_picker/issues/1492), [#1445](https://github.com/miguelpruivo/flutter_file_picker/issues/1445), [#1674](https://github.com/miguelpruivo/flutter_file_picker/issues/1674), [#1685](https://github.com/miguelpruivo/flutter_file_picker/issues/1685)) +- BREAKING CHANGE: `pickFiles()` now requires the `com.apple.security.files.user-selected.read-only` entitlement on macOS. Without this entitlement, the file picker will not open, and the method will return `null`. [WIKI](https://github.com/miguelpruivo/flutter_file_picker/wiki/Setup#macos) + ## 8.1.7 ### iOS From da6197d5e8d9f66c0f028dd0cf4cd1e242b02ac9 Mon Sep 17 00:00:00 2001 From: Victor Carreras <34163765+vicajilau@users.noreply.github.com> Date: Fri, 14 Feb 2025 11:42:37 +0100 Subject: [PATCH 4/7] Updated version --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index f623594a..36cc99a6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: A package that allows you to use a native file explorer to pick sin homepage: https://github.com/miguelpruivo/plugins_flutter_file_picker repository: https://github.com/miguelpruivo/flutter_file_picker issue_tracker: https://github.com/miguelpruivo/flutter_file_picker/issues -version: 8.3.5 +version: 8.3.6 dependencies: flutter: From edbaf4f91237a6b2fe6f00e2adf0bbd1e78935fa Mon Sep 17 00:00:00 2001 From: Navaron Bracke Date: Fri, 14 Feb 2025 11:52:15 +0100 Subject: [PATCH 5/7] Revert version change for changelog-only update --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 36cc99a6..f623594a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: A package that allows you to use a native file explorer to pick sin homepage: https://github.com/miguelpruivo/plugins_flutter_file_picker repository: https://github.com/miguelpruivo/flutter_file_picker issue_tracker: https://github.com/miguelpruivo/flutter_file_picker/issues -version: 8.3.6 +version: 8.3.5 dependencies: flutter: From 2ac7aa8174f77b96b17bacb1e1581b41ac847da5 Mon Sep 17 00:00:00 2001 From: Navaron Bracke Date: Fri, 14 Feb 2025 11:55:34 +0100 Subject: [PATCH 6/7] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49adb349..e14236ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,7 +30,7 @@ ## 8.2.0 ### Desktop (macOS) - Reimplement macOS file picker using method channels (fixes [#1492](https://github.com/miguelpruivo/flutter_file_picker/issues/1492), [#1445](https://github.com/miguelpruivo/flutter_file_picker/issues/1445), [#1674](https://github.com/miguelpruivo/flutter_file_picker/issues/1674), [#1685](https://github.com/miguelpruivo/flutter_file_picker/issues/1685)) -- BREAKING CHANGE: `pickFiles()` now requires the `com.apple.security.files.user-selected.read-only` entitlement on macOS. Without this entitlement, the file picker will not open, and the method will return `null`. [WIKI](https://github.com/miguelpruivo/flutter_file_picker/wiki/Setup#macos) +- **BREAKING CHANGE:** `pickFiles()` now requires the `com.apple.security.files.user-selected.read-only` entitlement on macOS. Without this entitlement, the file picker will not open, and the method will return `null`. See the note in the updated [wiki](https://github.com/miguelpruivo/flutter_file_picker/wiki/Setup#macos) ## 8.1.7 From 87de4b16799a74d64574d6829daba80f1c6a06e3 Mon Sep 17 00:00:00 2001 From: Navaron Bracke Date: Fri, 14 Feb 2025 11:56:10 +0100 Subject: [PATCH 7/7] remove blank line --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e14236ea..08be3bf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,7 +32,6 @@ - Reimplement macOS file picker using method channels (fixes [#1492](https://github.com/miguelpruivo/flutter_file_picker/issues/1492), [#1445](https://github.com/miguelpruivo/flutter_file_picker/issues/1445), [#1674](https://github.com/miguelpruivo/flutter_file_picker/issues/1674), [#1685](https://github.com/miguelpruivo/flutter_file_picker/issues/1685)) - **BREAKING CHANGE:** `pickFiles()` now requires the `com.apple.security.files.user-selected.read-only` entitlement on macOS. Without this entitlement, the file picker will not open, and the method will return `null`. See the note in the updated [wiki](https://github.com/miguelpruivo/flutter_file_picker/wiki/Setup#macos) - ## 8.1.7 ### iOS - Fix Image Picker to Handle Partial Failures Gracefully [#1554](https://github.com/miguelpruivo/flutter_file_picker/issues/1554)