-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/emulator_args
- Loading branch information
Showing
40 changed files
with
338 additions
and
5,230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Bug report | ||
about: There is a problem in how provider behaves | ||
title: "" | ||
labels: bug, needs triage | ||
assignees: | ||
- rrousselGit | ||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
|
||
<Please add a small sample to that can be executed to reproduce the problem. As a general rule, 100 lines is the maximum> | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: I have a problem and I need help | ||
url: https://github.com/rrousselGit/riverpod/discussions | ||
about: Please ask and answer questions here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Documentation improvement request | ||
about: >- | ||
Suggest a new example/documentation or ask for clarification about an | ||
existing one. | ||
title: "" | ||
labels: documentation, needs triage | ||
assignees: | ||
- rrousselGit | ||
--- | ||
|
||
**Describe what scenario you think is uncovered by the existing examples/articles** | ||
A clear and concise description of the problem that you want explained. | ||
|
||
**Describe why existing examples/articles do not cover this case** | ||
Explain which examples/articles you have seen before making this request, and | ||
why they did not help you with your problem. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the documentation request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: "" | ||
labels: enhancement, needs triage | ||
assignees: | ||
- rrousselGit | ||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
## Related Issues | ||
|
||
fixes #your-issue-number | ||
|
||
<!-- | ||
Update to link the issue that is going to be fixed by this. | ||
Unless this concerns documentation, make sure to create an issue first | ||
before raising a PR. | ||
You do not need to describe what this PR is doing, as this should | ||
already be covered by the associated issue. | ||
If the linked issue isn't enough, then chances are a new issue | ||
is needed. | ||
Don't hesitate to create many issues! This can avoid working | ||
on something, only to have your PR closed or have to be rewritten | ||
due to a disagreement/misunderstanding. | ||
--> | ||
|
||
## Checklist | ||
|
||
Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes (`[x]`). | ||
|
||
- [ ] I have updated the `CHANGELOG.md` of the relevant packages. | ||
Changelog files must be edited under the form: | ||
|
||
```md | ||
## Unreleased fix/major/minor | ||
|
||
- Description of your change. (thanks to @yourGithubId) | ||
``` | ||
|
||
- [ ] If this contains new features or behavior changes, | ||
I have updated the documentation to match those changes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
enable-beta-ecosystems: true | ||
updates: | ||
- package-ecosystem: "pub" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Build | ||
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- "**.md" | ||
- "**.mdx" | ||
|
||
schedule: | ||
# runs the CI everyday at 10AM | ||
- cron: "0 10 * * *" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
defaults: | ||
run: | ||
working-directory: packages/dart_firebase_admin | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 2 | ||
- uses: actions/setup-node@v4 | ||
- uses: subosito/[email protected] | ||
with: | ||
channel: master | ||
- name: Add pub cache bin to PATH | ||
run: echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH | ||
- name: Add pub cache to PATH | ||
run: echo "PUB_CACHE="$HOME/.pub-cache"" >> $GITHUB_ENV | ||
|
||
- name: Install firebase CLI | ||
run: npm install -g firebase-tools | ||
|
||
- name: Install dependencies | ||
run: dart pub get && cd example && dart pub get && cd - | ||
|
||
- name: Check format | ||
run: dart format --set-exit-if-changed . | ||
|
||
- name: Analyze | ||
run: dart analyze | ||
|
||
- name: Run tests | ||
run: ${{github.workspace}}/scripts/coverage.sh | ||
|
||
- name: Upload coverage to codecov | ||
run: curl -s https://codecov.io/bash | bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
firebase-debug.log | ||
ui-debug.log | ||
firestore-debug.log | ||
|
||
build | ||
coverage | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
export 'src/messaging.dart' | ||
hide FirebaseMessagingRequestHandler, MessagingTopicManagementResponse; | ||
export 'src/messaging.dart' hide FirebaseMessagingRequestHandler; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.