We'd love to accept your patches and contributions to this project.
Contributions to this project must be accompanied by a Contributor License Agreement (CLA). You (or your employer) retain the copyright to your contribution; this simply gives us permission to use and redistribute your contributions as part of the project.
If you or your current employer have already signed the Google CLA (even if it was for a different project), you probably don't need to do it again.
Visit https://cla.developers.google.com/ to see your current agreements or to sign a new one.
This project follows Google's Open Source Community Guidelines.
All submissions, including submissions by project members, require review. We use GitHub pull requests for this purpose. Consult GitHub Help for more information on using pull requests.
- Linux, Mac OS X, or Windows.
- git (used for source version control).
- An ssh client (used to authenticate with GitHub).
- An IDE such as Android Studio or Visual Studio Code.
flutter_plugin_tools
locally activated.clang-format
(available via brew on macOS, apt on Ubuntu, maybe via llvm on chocolatey for Windows)swiftformat
(available via brew on macOS)
- Ensure all the dependencies described in the previous section are installed.
- Fork
https://github.com/firebase/FirebaseUI-Flutter
into your own GitHub account. If you already have a fork, and are now installing a development environment on a new machine, make sure you've updated your fork so that you don't use stale configuration options from long ago. If you don't know what "fork" means – learn more here. - If you haven't configured your machine with an SSH key that's known to github, then follow GitHub's directions to generate an SSH key.
git clone git@github.com:<your_name_here>/FirebaseUI-Flutter.git
git remote add upstream git@github.com:firebase/FirebaseUI-Flutter.git
(So that you fetch from the master repository, not your clone, when runninggit fetch
et al.)
FirebaseUI-Flutter uses Melos to manage the project and dependencies.
To install Melos, run the following command from your SSH client:
dart pub global activate melos
Next, at the root of your locally cloned repository bootstrap the projects dependencies:
melos bootstrap
The bootstrap command locally links all dependencies within the project without having to
provide manual dependency_overrides
. This allows all
plugins, examples and tests to build from the local clone project.
- You do not need to run
flutter pub get
once bootstrap has been completed.- If you're using fvm you might need to specify the sdk-path:
melos bs --sdk-path=/Users/user/fvm/default/
We gladly accept contributions via GitHub pull requests.
Please peruse the Flutter style guide and design principles before working on anything non-trivial. These guidelines are intended to keep the code consistent and avoid common pitfalls.
To start working on a patch:
git fetch upstream
git checkout upstream/master -b <name_of_your_branch>
- Hack away!
Once you have made your changes, ensure that it passes the internal analyzer & formatting checks. The following commands can be run locally to highlight any issues before committing your code:
# Run the analyze check
melos run analyze
# Format code
melos run format
Assuming all is successful, commit and push your code:
git commit -a -m "<your informative commit message>"
git push origin <name_of_your_branch>
Before submitting your pull request, you need to sign the Contributor License Agreement.
- Go to
https://github.com/firebase/FirebaseUI-Flutter
and click the "Compare & pull request" button
Please make sure all your check-ins have detailed commit messages explaining the patch.
When naming the title of your pull request, please follow the Conventional Commits
guide. For example, for a fix to the firebase_ui_auth
plugin:
fix(ui_auth): fixed a bug!
Plugins tests are run automatically on contributions using GitHub Actions. Depending on your code contributions, various tests will be run against your updated code automatically.
E2e tests are those which directly communicate with Firebase, whose results cannot be mocked. These tests require the Firebase Emulator.
To start the Firebase Emulator, run this command:
firebase emulator:start
Once the Firebase Emulator is up and running, execute the following Melos command from the terminal:
melos test:e2e
If multiple devices are connected, you need to specify the target device by running the following command:
melos test:e2e -- <device-id>
Before submitting your PR, please provide evidence of running the E2E tests on macOS, Android, and iOS by sharing terminal output or screenshots. This demonstrates that the few E2E tests skipped in CI run successfully locally, which will enhance the review process for your PR.
Once you've gotten an LGTM from a project maintainer and once your PR has received the green light from all our automated testing, wait for one the package maintainers to merge the pull request.
If you create a new file, do not forget to add the license header. You can add it manually, or use
addlicense
to add the license to all
necessary files.
To install addlicense
, run:
go install github.com/google/addlicense@latest
Do not forget to add $HOME/go/bin
to your PATH
. If you are using Bash on
Linux or macOS, you need to add export PATH="$HOME/go/bin:$PATH"
to your
.bash_profile
.
To add the license header to all files, run from the root of the repository:
melos run add-license-header
This command uses addlicense
with all necessary flags.
We push releases manually, using Melos to take care of the hard work.
Changelogs and version updates are automatically updated by a project maintainer (via Melos). The new version is automatically generated via the commit types and changelogs via the commit messages.
Some things to keep in mind before publishing the release:
- Has CI ran on the master commit and gone green? Even if CI shows as green on the PR it's still possible for it to fail on merge, for multiple reasons. There may have been some bug in the merge that introduced new failures. CI runs on PRs as it's configured on their branch state, and not on tip of tree. CI on PRs also only runs tests for packages that it detects have been directly changed, vs running on every single package on master.
- Publishing is forever. Hopefully any bugs or breaking in changes in this PR have already been caught in PR review, but now's a second chance to revert before anything goes live.
- "Don't deploy on a Friday." Consider carefully whether or not it's worth immediately publishing an update before a stretch of time where you're going to be unavailable. There may be bugs with the release or questions about it from people that immediately adopt it, and uncovering and resolving those support issues will take more time if you're unavailable.
- Switch to
main
branch locally. - Run
git pull origin main
. - Run
git pull --tags
to make sure all tags are fetched. - Create new branch with the signature "release/[year]-[month]-[day]".
- Run
melos version --no-git-tag-version
to automatically version packages and update Changelogs. - Run
melos publish
to dry run and confirm all packages are publishable. - After successful dry run, commit all changes with the signature
chore(release): prepare for release
. - Run
git push origin [RELEASE BRANCH NAME]
& open pull request for review on GitHub. - After successful review and merge of the pull request, switch to
main
branch locally, & rungit pull origin main
. - Run
melos publish --no-dry-run --git-tag-version
to now publish to Pub.dev. - Run
git push --tags
to push tags to repository.
Sometimes you may need to 'graduate' a package from a 'dev' or 'beta' (versions tagged like this: 0.10.0-dev.4
) to a stable version. Melos can also be used
to graduate multiple packages using the following steps:
- Switch to
master
branch locally. - Run 'git pull origin master'.
- Run
git fetch --all
to make sure all tags and commits are fetched. - Run
melos version --graduate
to prompt a list of all packages to be graduated (You may also specifically select packages using the scope flag like this:--scope="*firestore*"
) - Run
git push --follow-tags
to push the auto commits and tags to the remote repository. - Run
melos publish
to dry run and confirm all packages are publishable. - Run
melos publish --no-dry-run
to now publish to Pub.dev.