Skip to content

Commit cdcdc9c

Browse files
authored
Merge branch 'main' into td/record-exception
2 parents c94e370 + 37f8134 commit cdcdc9c

File tree

15 files changed

+54
-32
lines changed

15 files changed

+54
-32
lines changed
Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
11
name: Private Mirror Sync
22

3-
concurrency:
4-
group: ${{ github.workflow }}
5-
cancel-in-progress: true
6-
73
on:
8-
push:
9-
branches:
10-
- main
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '0 2 * * *'
117

128
jobs:
139
sync:
14-
if: github.repository == 'firebase/firebase-android-sdk'
10+
if: github.repository == 'FirebasePrivate/firebase-android-sdk'
1511
runs-on: ubuntu-latest
1612
steps:
13+
- uses: actions/[email protected]
14+
with:
15+
repository: firebase/firebase-android-sdk
16+
ref: main
17+
fetch-depth: 0
18+
submodules: true
19+
1720
- uses: actions/[email protected]
1821
with:
1922
fetch-depth: 0
2023
submodules: true
2124
token: ${{ secrets.GOOGLE_OSS_BOT_TOKEN }}
22-
committer: google-oss-bot <[email protected]>
2325
- name: Force push HEAD to private repo main branch
2426
run: |
27+
git config --local user.name google-oss-bot
28+
git config --local user.email [email protected]
2529
git remote add mirror https://github.com/FirebasePrivate/firebase-android-sdk.git
2630
git push mirror HEAD:main --force --verbose

firebase-crashlytics-ndk/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Unreleased
22

33

4+
# 19.3.0
5+
* [changed] Updated `firebase-crashlytics` dependency to v19.3.0
6+
47
# 19.2.1
58
* [changed] Updated `firebase-crashlytics` dependency to v19.2.1
69

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=19.2.2
2-
latestReleasedVersion=19.2.1
1+
version=19.3.1
2+
latestReleasedVersion=19.3.0

firebase-crashlytics/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# Unreleased
2+
3+
4+
# 19.3.0
25
* [fixed] Fixed inefficiency in the Kotlin `FirebaseCrashlytics.setCustomKeys` extension.
36
* [fixed] Execute failure listener outside the main thread [#6535]
47

8+
9+
## Kotlin
10+
The Kotlin extensions library transitively includes the updated
11+
`firebase-crashlytics` library. The Kotlin extensions library has no additional
12+
updates.
13+
514
# 19.2.1
615
* [changed] Updated protobuf dependency to `3.25.5` to fix
716
[CVE-2024-7254](https://nvd.nist.gov/vuln/detail/CVE-2024-7254).
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=19.2.2
2-
latestReleasedVersion=19.2.1
1+
version=19.3.1
2+
latestReleasedVersion=19.3.0

firebase-perf/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Unreleased
22

33

4+
# 21.0.3
5+
* [changed] Bump internal dependencies.
6+
7+
8+
## Kotlin
9+
The Kotlin extensions library transitively includes the updated
10+
`firebase-performance` library. The Kotlin extensions library has no additional
11+
updates.
12+
413
# 21.0.2
514
* [fixed] Fixed `IllegalStateException` that happened when starting a trace
615
before Firebase initializes.

firebase-perf/firebase-perf.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ dependencies {
118118
api("com.google.firebase:firebase-components:18.0.0")
119119
api("com.google.firebase:firebase-config:21.5.0")
120120
api("com.google.firebase:firebase-installations:17.2.0")
121-
api("com.google.firebase:firebase-sessions:2.0.0") {
121+
api("com.google.firebase:firebase-sessions:2.0.7") {
122122
exclude group: 'com.google.firebase', module: 'firebase-common'
123123
exclude group: 'com.google.firebase', module: 'firebase-common-ktx'
124124
exclude group: 'com.google.firebase', module: 'firebase-components'
@@ -138,4 +138,4 @@ dependencies {
138138
testImplementation libs.mockito.core
139139
testImplementation 'org.mockito:mockito-inline:5.2.0'
140140
testImplementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.6'
141-
}
141+
}

firebase-perf/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616
#
1717

18-
version=21.0.3
19-
latestReleasedVersion=21.0.2
18+
version=21.0.4
19+
latestReleasedVersion=21.0.3
2020
android.enableUnitTestBinaryResources=true
2121

firebase-sessions/CHANGELOG.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
# Unreleased
22

33

4+
# 2.0.7
5+
* [fixed] Removed extraneous logs that risk leaking internal identifiers.
6+
47
# 2.0.6
58
* [changed] Updated protobuf dependency to `3.25.5` to fix
69
[CVE-2024-7254](https://github.com/advisories/GHSA-735f-pc8j-v9w8).
710

8-
9-
## Kotlin
10-
The Kotlin extensions library transitively includes the updated
11-
`firebase-sessions` library. The Kotlin extensions library has no additional
12-
updates.
13-
1411
# 2.0.5
1512
* [unchanged] Updated to keep SDK versions aligned.
1613

firebase-sessions/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
version=2.0.7
16-
latestReleasedVersion=2.0.6
15+
version=2.0.8
16+
latestReleasedVersion=2.0.7

0 commit comments

Comments
 (0)