Skip to content
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

Updated dependencies #1664

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Run unit tests on ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: subosito/flutter-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maintainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
close-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4.0.0
- uses: actions/stale@v9
with:
days-before-issue-stale: 30
days-before-issue-close: 90
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
container:
image: google/dart:latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Setup credentials
run: |
mkdir -p ~/.pub-cache
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 8.3.3
### General
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version 8.3.2 was already published. So this changelog entry will either need to be removed, or moved to 8.3.3 (with a version bump in the pubspec)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed!! 👍

- Updates flutter_plugin_android_lifecycle, ffi, path, win32, cross_file and web dependencies [@vicajilau].
- Updates CI/CD with new dependencies [@vicajilau].

## 8.3.2
### Android
- Fix pickFiles for Android with launchMode=singleInstance [#1700](https://github.com/miguelpruivo/flutter_file_picker/issues/1700), [#1404](https://github.com/miguelpruivo/flutter_file_picker/issues/1404)
Expand Down
14 changes: 7 additions & 7 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ 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.2
version: 8.3.3

dependencies:
flutter:
sdk: flutter
flutter_web_plugins:
sdk: flutter

flutter_plugin_android_lifecycle: ^2.0.17
flutter_plugin_android_lifecycle: ^2.0.22
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vicajilau Do we update the changelog & version? Or do we just roll this in with the next bugfix/patch etc. ?

Copy link
Contributor Author

@vicajilau vicajilau Feb 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have already added it @navaronbracke. I have taken the trouble to upload the versions of the CI/CD dependencies as well. If you don't like it, I'll revert it 😉

plugin_platform_interface: ^2.1.8
ffi: ^2.0.1
path: ^1.8.2
win32: ^5.5.1
cross_file: ^0.3.3+7
web: ^1.0.0
ffi: ^2.1.3
path: ^1.9.0
win32: ^5.9.0
cross_file: ^0.3.4+2
web: ^1.1.0

dev_dependencies:
lints: ^4.0.0
Expand Down