Skip to content

Commit b60b5a6

Browse files
Merge branch 'firebase:main' into main
2 parents 637a0c0 + 8b5cc97 commit b60b5a6

28 files changed

Lines changed: 142 additions & 83 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73
3737
with:
3838
distribution: "temurin"
39-
java-version: "17"
39+
java-version: "21"
4040
- name: Enable KVM
4141
run: |
4242
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
@@ -101,7 +101,7 @@ jobs:
101101
- uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73
102102
with:
103103
distribution: "temurin"
104-
java-version: "11"
104+
java-version: "21"
105105
- name: 'Free up space'
106106
run: |
107107
sudo rm -rf \
@@ -197,7 +197,7 @@ jobs:
197197
- uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73
198198
with:
199199
distribution: "temurin"
200-
java-version: "11"
200+
java-version: "21"
201201
- uses: hendrikmuhs/ccache-action@ed74d11c0b343532753ecead8a951bb09bb34bc9
202202
name: Xcode Compile Cache
203203
with:

.github/workflows/issue-labels.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,16 @@ jobs:
1616
- name: Check if the comment is from the OP
1717
id: check-op
1818
run: |
19-
OP=${{ github.event.issue.user.login }}
20-
COMMENTER=${{ github.event.comment.user.login }}
19+
OP=${GITHUB_EVENT_ISSUE_USER_LOGIN}
20+
COMMENTER=${GITHUB_EVENT_COMMENT_USER_LOGIN}
2121
if [ "$OP" = "$COMMENTER" ]; then
2222
echo "op_comment=true" >> $GITHUB_ENV
2323
else
2424
echo "op_comment=false" >> $GITHUB_ENV
2525
fi
26+
env:
27+
GITHUB_EVENT_ISSUE_USER_LOGIN: ${{ github.event.issue.user.login }}
28+
GITHUB_EVENT_COMMENT_USER_LOGIN: ${{ github.event.comment.user.login }}
2629
- name: Add 'Needs Attention' label if OP responded
2730
if: env.op_comment == 'true'
2831
uses: actions-ecosystem/action-add-labels@v1
@@ -48,4 +51,4 @@ jobs:
4851
with:
4952
labels: 'Needs Attention'
5053
env:
51-
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
54+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

.github/workflows/unit_tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,18 @@ jobs:
5757
if: matrix.target == 'html'
5858
run: |
5959
melos exec \
60-
--scope=${{ matrix.package }}* \
60+
--scope=${MATRIX_PACKAGE}* \
6161
--dir-exists="test" \
6262
--fail-fast -- "flutter test --platform chrome"
63+
env:
64+
MATRIX_PACKAGE: ${{ matrix.package }}
6365

6466
- name: Run unit tests
6567
if: matrix.target == 'io'
6668
run: |
6769
melos exec \
68-
--scope=${{ matrix.package }}* \
70+
--scope=${MATRIX_PACKAGE}* \
6971
--dir-exists="test" \
7072
--fail-fast -- "flutter test"
73+
env:
74+
MATRIX_PACKAGE: ${{ matrix.package }}

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ These tests require the Firebase Emulator.
136136
To start the Firebase Emulator, run this command:
137137

138138
```bash
139-
firebase emulator:start
139+
melos emulator:start
140140
```
141141

142142
Once the Firebase Emulator is up and running, execute the following Melos command from the terminal:

packages/firebase_ui_auth/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ environment:
2323
dependencies:
2424
app_tracking_transparency: ^2.0.6
2525
cupertino_icons: ^1.0.6
26-
firebase_auth: ^6.1.1
27-
firebase_core: ^4.2.0
26+
firebase_auth: ^6.1.3
27+
firebase_core: ^4.3.0
2828
flutter:
2929
sdk: flutter
3030
flutter_localizations:

packages/firebase_ui_auth/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ environment:
1111
dependencies:
1212
app_links: ^6.4.0
1313
email_validator: ^2.1.17
14-
firebase_auth: ^6.1.1
15-
firebase_core: ^4.2.0
14+
firebase_auth: ^6.1.3
15+
firebase_core: ^4.3.0
1616
firebase_ui_localizations: ^2.0.1
1717
firebase_ui_oauth: ^2.0.1
1818
firebase_ui_shared: ^1.4.2

packages/firebase_ui_database/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ dependencies:
3333
# The following adds the Cupertino Icons font to your application.
3434
# Use with the CupertinoIcons class for iOS style icons.
3535
cupertino_icons: ^1.0.6
36-
firebase_core: ^4.2.0
37-
firebase_database: ^12.0.3
36+
firebase_core: ^4.3.0
37+
firebase_database: ^12.1.1
3838
dev_dependencies:
3939
drive: ^1.0.0-1.0.nullsafety.5
4040
flutter_test:

packages/firebase_ui_database/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ environment:
99

1010
dependencies:
1111
collection: ^1.18.0
12-
firebase_database: ^12.0.3
12+
firebase_database: ^12.1.1
1313
firebase_ui_localizations: ^2.0.1
1414
flutter:
1515
sdk: flutter

packages/firebase_ui_firestore/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ dependencies:
3030
flutter:
3131
sdk: flutter
3232
firebase_ui_firestore: ^2.0.1
33-
cloud_firestore: ^6.0.3
33+
cloud_firestore: ^6.1.1
3434
cupertino_icons: ^1.0.6
35-
firebase_core: ^4.2.0
35+
firebase_core: ^4.3.0
3636
dev_dependencies:
3737
drive: ^1.0.0-1.0.nullsafety.5
3838
flutter_test:

packages/firebase_ui_firestore/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ environment:
88
flutter: ">=3.3.0"
99

1010
dependencies:
11-
cloud_firestore: ^6.0.3
11+
cloud_firestore: ^6.1.1
1212
firebase_ui_localizations: ^2.0.1
1313
firebase_ui_shared: ^1.4.2
1414
flutter:

0 commit comments

Comments
 (0)