-
Notifications
You must be signed in to change notification settings - Fork 716
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Breaking Change for macOS Entitlement Requirement #1707
Add Breaking Change for macOS Entitlement Requirement #1707
Conversation
CHANGELOG.md
Outdated
@@ -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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was added on the Wiki: https://github.com/miguelpruivo/flutter_file_picker/wiki/Setup#macos
Maybe add a See also: https://github.com/miguelpruivo/flutter_file_picker/wiki/Setup#macos
instead of pointing to the linked PR ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense! I didn't see it. On its way
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vicajilau Apologies, but due to the other change that just landed, this is now in the wrong place.
Can you put it at the bottom of
## 8.2.0
### Desktop (macOS)
- Reimplement macOS file picker using method channels ...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@navaronbracke Fixed 💪
Resolved @navaronbracke 🚀 |
…ing-breaking-change
CHANGELOG.md
Outdated
@@ -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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vicajilau Apologies, but due to the other change that just landed, this is now in the wrong place.
Can you put it at the bottom of
## 8.2.0
### Desktop (macOS)
- Reimplement macOS file picker using method channels ...
@vicajilau I adjusted the changelog note a little, so that it is in bold in the markdown |
Pull Request: Add Breaking Change for macOS Entitlement Requirement
Description
This pull request introduces a breaking change for macOS users of the
flutter_file_picker
package.Breaking Change
Starting from version 8.3.0, the
pickFiles()
method now requires the entitlementcom.apple.security.files.user-selected.read-only
on macOS. If this entitlement is not present, the method will returnnull
and the file picker will not open, potentially leading to confusion among developers upgrading from previous versions where this entitlement was not required.Justification
Changes Made
CHANGELOG.md
to include the breaking change notice.DebugProfile.entitlements
andRelease.entitlements
to restore the expected functionality.Related Issue
Additional Notes