Thank you for contributing to this project. We value your input, and any issues or pull requests adhering to these guidelines are welcome.
Please read and follow our Code of Conduct.
TL;DR: Be respectful and professional.
Vendor specific details are intentionally not included in this module in order to be lightweight and agnostic. If there are changes needed to enable vendor specific behaviour in code or other extension points, check out the spec.
Here’s the updated README tailored for Open Feature and GitHub:
Install dependencies with:
dart pub get
We aim to minimize runtime dependencies. Please review new dependencies carefully and follow Dart's best practices when proposing additions.
We use an extensive suite of automated tests to ensure quality and reliability. Contributors must include appropriate tests for new features or bug fixes. Automated GitHub workflows will validate changes during pull requests.
Test Type | Description | Command |
---|---|---|
Unit Tests | Validates individual components in isolation using mocks and fakes. | dart test |
Integration Tests | Validates interactions between components and external systems like Firebase. | make integration-test |
End-to-End Tests | Simulates real-world workflows across the system using Gherkin-based test harness. | make e2e-test |
Mutation Tests | Ensures robustness of test coverage by introducing controlled code mutations. | dart run mutest |
Static Analysis | Ensures code adheres to guidelines and highlights potential bugs. | dart analyze |
Code Coverage | Ensures critical paths are covered with tests, generates LCOV reports. | dart test --coverage=coverage |
Run unit tests with:
dart test
Our CI pipeline executes Gherkin-based end-to-end tests. To run them locally:
- Pull the
test-harness
git submodule:git submodule update --init --recursive
- Execute the tests:
make e2e-test
Validate the robustness of your test suite using mutation tests:
dart run mutest
Here's the updated Branching and Commit Guidelines section with the adjustment to use feat
for features and other refinements to align with your conventions:
Follow these conventions when creating branches for pull requests:
<type>/<branch-name>
Branch Type | Purpose |
---|---|
feat |
For new features under development. Example: feat/add-auth-module . |
fix |
For bug fixes. Example: fix/login-error . |
hotfix |
For urgent production fixes requiring immediate attention. Example: hotfix/critical-db-error . |
chore |
For maintenance tasks, such as dependency updates or refactoring. Example: chore/update-dependencies . |
release |
For preparing release branches with versioned changes. Example: release/v1.2.0 . |
test |
For testing-related changes, such as adding or modifying test cases. Example: test/add-unit-tests . |
Type | Example Branch Name |
---|---|
feat |
feat/add-user-auth |
fix |
fix/payment-gateway-bug |
hotfix |
hotfix/critical-db-error |
chore |
chore/upgrade-dependencies |
test |
test/add-integration-tests |
release |
release/v1.2.0 |
We follow Conventional Commits to ensure clear and consistent commit history.
Commit types are aligned with branch naming conventions to maintain consistency across the workflow.
<type>(<scope>): <short summary>
<BLANK LINE>
[optional body]
<BLANK LINE>
[optional footer(s)]
Type | Branch Equivalent | Description |
---|---|---|
feat |
feat |
Adds a new feature. Example: feat(auth): add OAuth 2.0 support . |
fix |
fix |
Fixes a bug. Example: fix(payment): resolve rounding error . |
hotfix |
hotfix |
Urgent fixes for production. Example: hotfix(db): resolve connection issue . |
chore |
chore |
Maintenance tasks or refactoring. Example: chore(deps): update dependencies . |
test |
test |
Adds or updates tests. Example: test(api): add integration tests . |
refactor |
refactor |
Code restructuring without functional changes. Example: refactor(ui): improve layout . |
release |
release |
Prepares a versioned release. Example: release: v1.2.0 . |
-
Align Commit Type with Branch Type:
- A branch like
feat/add-auth-module
should include commits starting withfeat:
. - A branch like
fix/login-error
should include commits starting withfix:
.
- A branch like
-
Use Scope (Optional):
- Add a scope in parentheses to specify the module or component affected.
- Examples:
feat(auth)
,fix(payment)
,test(ui)
.
-
Write a Clear Summary:
- Use the imperative mood for the summary (e.g., "add", "fix", not "added" or "fixed").
-
Add Context in the Body (Optional):
- Provide additional details or reasoning for the change.
-
Reference Issues or PRs in the Footer:
- Use the footer for links to related issues or PRs and to indicate breaking changes.
- Examples:
Fixes #123 BREAKING CHANGE: Deprecated legacy login endpoints.
To maintain consistency and ensure stability, we enforce the following branch protection rules:
-
Branches:
main
,qa
,development
-
Rules:
- Direct pushes are not allowed.
- Changes must go through a pull request and pass all required checks before merging.
- At least 1 reviewer must approve pull requests.
- Status checks:
- Branch name validation must pass.
- Commit message validation must pass.
- Relevant workflows (e.g.,
main-workflow
,qa-workflow
) must pass.
- Feature and other short-lived branches (e.g.,
feat/add-auth
,fix/login-error
) are not protected. - Contributors can push directly to these branches.
- Feature, Fix, Hotfix, Test Branches:
- Created by developers for specific tasks.
- Merged into
main
,qa
, ordevelopment
branches through pull requests. - Deleted after merging.
-
Contributors Create Feature Branches:
- Example:
feat/add-user-auth
. - Pushes to these branches are allowed without restrictions.
- Example:
-
Pull Requests into Protected Branches:
- Protected branches (
main
,qa
,development
) require pull requests. - Pull requests trigger workflows for testing and validation.
- Protected branches (
-
Validation on Push and Pull Requests:
- Branch name and commit message validations are run on all branches during pushes.
- Protected branches also enforce workflow checks and reviews.
Branch Name | Commit Message |
---|---|
feat/add-auth-module |
feat(auth): add OAuth 2.0 support |
fix/payment-bug |
fix(payment): resolve rounding error in total calculation |
hotfix/db-connection-issue |
hotfix(db): resolve connection timeout in production |
chore/update-dependencies |
chore(deps): upgrade Dart SDK to 3.0 |
test/add-integration-tests |
test(auth): add integration tests for login functionality |
refactor/improve-logging |
refactor(logging): standardize log format |
release/v1.2.0 |
release: prepare for v1.2.0 |
This repository uses Release Please for automated versioning and changelogs.
Merges into the main branch trigger a new version release if changes are detected.
For versioning standards, follow Dart's semantic versioning.
Here’s your updated Submitting a Pull Request section with improved formatting and alignment for clarity and readability:
Contributing to the project is highly encouraged! Please follow these steps to submit a well-structured pull request (PR):
-
Create a New Branch:
- Use the appropriate branch naming convention:
git checkout -b feat/new-feature
- Ensure your branch is based on the latest
development
branch:git fetch origin git checkout development git rebase origin/development
- Use the appropriate branch naming convention:
-
Implement Changes:
- Write clean, modular code following the project's coding standards.
- Add appropriate unit and integration tests to ensure coverage.
-
Run Tests Locally:
- Validate your changes locally to ensure they don't break existing functionality:
dart analyze dart test
- Validate your changes locally to ensure they don't break existing functionality:
-
Commit Your Changes:
- Use meaningful commit messages following the Conventional Commits format:
git commit -s -m "feat(sdk): implement new feature"
- Use meaningful commit messages following the Conventional Commits format:
To certify your contribution, you must add a Signed-off-by
line to your commit message. This is required to comply with the Developer Certificate of Origin (DCO).
-
Sign Off When Committing:
- Use the
-s
or--signoff
flag when creating a commit:git commit -s -m "feat: add authentication module"
- This will add a
Signed-off-by
line to your commit message:feat: add authentication module Signed-off-by: Your Name <[email protected]>
- Use the
-
Ensure Git User Configuration:
- Make sure your Git username and email are correctly configured:
git config --global user.name "Your Name" git config --global user.email "[email protected]"
- Make sure your Git username and email are correctly configured:
-
Forgot to Sign Off?:
-
If you forgot to sign off a commit, you can fix it by amending the commit:
git commit --amend --signoff git push --force-with-lease
-
For multiple commits, rebase with
--signoff
:git rebase --signoff HEAD~<number-of-commits> git push --force-with-lease
-
-
Push Your Branch:
- Push your changes to the remote repository:
git push origin feat/new-feature
- Push your changes to the remote repository:
-
Open a Pull Request:
- Navigate to the repository on GitHub.
- Open a pull request targeting the
qa
branch. - Provide a clear title and description summarizing your changes, including:
- The problem your changes solve.
- The approach you used.
- Links to relevant issues or discussions (e.g.,
Closes #123
).
- Ensure your branch passes all tests and validations before creating a PR.
- If you encounter issues during the sign-off process, check your DCO compliance or consult the contributing guidelines.
Pull requests often receive feedback. Follow these steps to address requested changes:
-
Use Fixup Commits for Small Changes:
- For minor fixes or changes requested during the review:
git commit --all --fixup HEAD git push
- For minor fixes or changes requested during the review:
-
Amend Commit Messages if Needed:
- Update commit messages to clarify or provide additional details:
git commit --amend git push --force-with-lease
- Update commit messages to clarify or provide additional details:
-
Rebase and Squash Commits:
- If your branch has multiple commits and needs to be cleaned up:
git rebase -i origin/qa git push --force-with-lease
- If your branch has multiple commits and needs to be cleaned up:
-
Run Tests Again:
- Ensure all tests pass after making changes:
dart analyze dart test
- Ensure all tests pass after making changes:
-
Update the Pull Request:
- Add a comment to the PR describing what was updated in response to the feedback.
- Keep Pull Requests Small:
- Submit changes in manageable chunks to make reviews easier.
- Follow Coding Standards:
- Adhere to the project's coding style and guidelines.
- Document Changes:
- Update relevant documentation, if applicable, to reflect your changes.
- Add Tests:
- Ensure new features or bug fixes are thoroughly tested.
- Reference Issues:
- Use
Fixes #<issue-number>
orCloses #<issue-number>
in the PR description to auto-close related issues.
- Use
# Create a new branch
git checkout -b feat/add-auth
# Implement changes
# ...
# Run tests
dart analyze
dart test
# Commit changes
git commit -m "feat(auth): add OAuth 2.0 authentication"
# Push changes
git push origin feat/add-auth
# Open a pull request on GitHub
# Provide a clear description linking the related issue (e.g., Fixes #45)
We follow Dart's semantic versioning conventions:
x.y.z+1
: For patch releases during pre-1.0 development.x.y.z
: For stable, production-ready versions.
- Join our regular meetings here.
- Chat with us in the
#openfeature
channel on CNCF Slack.