Skip to content

Commit 96fc791

Browse files
authored
Create release config for m152
1 parent b83910b commit 96fc791

File tree

3 files changed

+270
-0
lines changed

3 files changed

+270
-0
lines changed

release.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "m152",
3+
"libraries": [
4+
":firebase-components",
5+
":firebase-crashlytics",
6+
":firebase-crashlytics-ndk",
7+
":firebase-sessions",
8+
":firebase-crashlytics:ktx",
9+
":firebase-firestore",
10+
":firebase-firestore:ktx",
11+
":firebase-messaging",
12+
":firebase-messaging-directboot",
13+
":firebase-messaging:ktx"
14+
]
15+
}

release_report.json

Lines changed: 171 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
1+
{
2+
"changesByLibraryName": {
3+
"firebase-components": [
4+
{
5+
"commitId": "b83910b238aa9ac66a42f7fba49aedc5e86c8ffd",
6+
"prId": "6184",
7+
"author": "David Motsonashvili",
8+
"message": "add release notes for componenets (#6184)\n\nCo-authored-by: David Motsonashvili <[email protected]>",
9+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/b83910b238aa9ac66a42f7fba49aedc5e86c8ffd",
10+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6184"
11+
}
12+
],
13+
"firebase-crashlytics": [
14+
{
15+
"commitId": "db42baeae866b02cc877e27df14a7749ff255807",
16+
"prId": "6156",
17+
"author": "themiswang",
18+
"message": "move more jobs to disk write (#6156)\n\nMove file clean up task to disk write worker.\r\nFix unit test: close session has to run on a background thread",
19+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/db42baeae866b02cc877e27df14a7749ff255807",
20+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6156"
21+
},
22+
{
23+
"commitId": "fb2f8b24afc581dbb22d453859bbfe8bb37d4caa",
24+
"prId": "6152",
25+
"author": "Matthew Robertson",
26+
"message": "Make the session id not depend on fetching the fid (#6152)\n\nMake generating a session id not depend on fetching the fid. This is\r\nneeded so we can allow the common worker to initialize, and start\r\naccepting use actions, before any data collection, settings, or fid\r\nvalidation happens.\r\n\r\nThe hash of the crashlytics installation id was used to pad the length\r\nand increase entropy. Instead of that, we use a random uuid now.\r\nVerified nothing depends on the source of that padding by manually\r\nsetting it to all 0s and doing an end-to-end test.\r\n\r\nThe way the session id is built is a little bit weird, using bytes. In\r\nthe future, we could rewrite this to use proper string formatting.",
27+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/fb2f8b24afc581dbb22d453859bbfe8bb37d4caa",
28+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6152"
29+
},
30+
{
31+
"commitId": "9535f940e2172021263497d819d3aec680ab301d",
32+
"prId": "6178",
33+
"author": "Matthew Robertson",
34+
"message": "Add a CrashlyticsWorkers container to manage the workers (#6178)\n\nAdd a CrashlyticsWorkers container to manage the workers, and define\r\nwhat each one is for. Also added a `submitTaskOnSuccess` method for\r\nconvenience. This will be useful for any of the user actions that get\r\ntriggered by send unsent reports.\r\n\r\nAlso found and fixed a bug in the worker queue. If a task gets cancelled\r\nand is followed by a runnable or callable already in the queue, it would\r\nhave been skipped. Now it's not a problem, and a test case added.",
35+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/9535f940e2172021263497d819d3aec680ab301d",
36+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6178"
37+
},
38+
{
39+
"commitId": "9ed73c407bee8bde1e7c6e611a68f1639374bf9c",
40+
"prId": "6158",
41+
"author": "Matthew Robertson",
42+
"message": "Create a util for Crashlytics tasks, and move race into it (#6158)\n\nCreate a util for Crashlytics-specific Tasks, and move `race` into it.\r\nThis util class will hold other things later, so they don't make the\r\nworker class a mess. We will need something like `submitWaiting` next to\r\nblock until a task is complete, this is how data collection is\r\nimplemented.",
43+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/9ed73c407bee8bde1e7c6e611a68f1639374bf9c",
44+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6158"
45+
},
46+
{
47+
"commitId": "99a9d9358502f88f464484c30539f836aa56e05b",
48+
"prId": "6148",
49+
"author": "Matthew Robertson",
50+
"message": "Move CrashlyticsWorker to concurrency package (#6148)\n\n",
51+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/99a9d9358502f88f464484c30539f836aa56e05b",
52+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6148"
53+
},
54+
{
55+
"commitId": "8b832df8146dd6ec58931aba6e0b01e8c1db0321",
56+
"prId": "6143",
57+
"author": "Matthew Robertson",
58+
"message": "Improvements to the CrashlyticsWorker (#6143)\n\nAdded a method to submit a task followed by a continuation to the\r\nworker. This is useful for making a continuation happen right after the\r\nsubmitted task, even if other tasks were submitted to the worker in the\r\nmeantime. This will be useful for fetching settings from a network\r\nexecutor, then continuing on the common worker to parse the settings\r\njson.\r\n\r\nAlso added a method to race two tasks on the worker. This is useful for\r\nthings like waiting for an for explicit data collection enable call, or\r\nautomatic data collection being enabled.\r\n\r\nBoth methods have their behaviour fully documented in the javadoc and\r\ntested in unit tests.",
59+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/8b832df8146dd6ec58931aba6e0b01e8c1db0321",
60+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6143"
61+
},
62+
{
63+
"commitId": "d0fea0e29b81201ec6d884fe65c6396ac5fe938c",
64+
"prId": "6140",
65+
"author": "Matthew Robertson",
66+
"message": "Add tests for internal apis used by development platform plugins (#6140)\n\nAdd test cases for internal apis used by development platform plugins so\r\nwe don't break them by accident during refactoring.\r\n\r\nWe should consider making the internal api more explicit.",
67+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/d0fea0e29b81201ec6d884fe65c6396ac5fe938c",
68+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6140"
69+
},
70+
{
71+
"commitId": "10fe14215dcdff6e57f67196309b5f7fee859ad9",
72+
"prId": "6133",
73+
"author": "themiswang",
74+
"message": "Move log and non-fatal persistence to disk write worker (#6133)\n\nOther metadata persistence is already on the right work from the\r\nprevious pr #6120\r\n- Move log and non-fatal persistence to disk write worker\r\n- Refine unit tests\r\n- Remove unused functions and interface",
75+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/10fe14215dcdff6e57f67196309b5f7fee859ad9",
76+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6133"
77+
},
78+
{
79+
"commitId": "26c8a5a7eab7fffb2820d8b9f23643d24c8510f1",
80+
"prId": "6132",
81+
"author": "Matthew Robertson",
82+
"message": "Fix flaky test (#6132)\n\nFix flaky `submitTaskFromAnotherWorkerDoesNotUseLocalThreads` test. This\r\ntest would fail about 2% of the time on my machine due to dealing with\r\nthreads. With this change, it fails less than 0.5% of the time. Tested\r\nby running the test in a loop 1,000 times.",
83+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/26c8a5a7eab7fffb2820d8b9f23643d24c8510f1",
84+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6132"
85+
},
86+
{
87+
"commitId": "3a4ec1891cd39115dff7d25fcb2b2eab3e743aba",
88+
"prId": "6120",
89+
"author": "themiswang",
90+
"message": "User action refactor (#6120)\n\n- Creating common and disk worker based on Firebase background common\r\nexecutor\r\n- Move all user action directly to background thread and remove some\r\nunnecessary task submit\r\n- Add unit tests dependency for firebase common executor\r\n- Decouple crashlytics backend handler from user metadata and use disk\r\nwriting working for persistence write.",
91+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/3a4ec1891cd39115dff7d25fcb2b2eab3e743aba",
92+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6120"
93+
},
94+
{
95+
"commitId": "96b702fbb7dda5569d08459d44e97ce63657bde8",
96+
"prId": "6128",
97+
"author": "Matthew Robertson",
98+
"message": "Migrate to Firebase common executors (#6128)\n\nMigrate to Firebase common executors. Use the new `CrashlyticsWorker`\r\nfor common and disk write workers.",
99+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/96b702fbb7dda5569d08459d44e97ce63657bde8",
100+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6128"
101+
},
102+
{
103+
"commitId": "705d7a3d71afa736a685d02779b02c90be6b50ea",
104+
"prId": "6126",
105+
"author": "Matthew Robertson",
106+
"message": "Generalize the CrashlyticsWorker (#6126)\n\nGeneralize the CrashlyticsWorker.\r\n\r\nThe old CrashlyticsBackgroundWorker has a lot of overhead. Local\r\nexperimentation shows this generalized worker manages submitting tasks\r\nabout 4 times as fast.\r\n\r\nThe old background worker has some inaccurate Javadoc. I corrected and\r\nverified every detail mentioned in the Javadoc with integration tests.\r\nWe can rely on it now.\r\n\r\nI also found a bug in the old worker. If you cancel a task then submit a\r\nrunnable or callable, that will never execute because the chain breaks.\r\nI fixed it in the general worker and added test cases.\r\n\r\nNext steps will be to utilize the generic worker for the proposed\r\ncommon, network, and disk write workers.",
107+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/705d7a3d71afa736a685d02779b02c90be6b50ea",
108+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6126"
109+
},
110+
{
111+
"commitId": "1b491717889cbb74239b24711396400652a43990",
112+
"prId": "6125",
113+
"author": "Matthew Robertson",
114+
"message": "Convenient preconditions specific for Crashlytics concurrency (#6125)\n\n",
115+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/1b491717889cbb74239b24711396400652a43990",
116+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6125"
117+
}
118+
],
119+
"firebase-crashlytics-ndk": [
120+
],
121+
"firebase-sessions": [
122+
],
123+
"firebase-crashlytics/ktx": [
124+
],
125+
"firebase-firestore": [
126+
{
127+
"commitId": "08deb691d666d981b72c0f96a266befa16812d95",
128+
"prId": "6050",
129+
"author": "Tom Andersen",
130+
"message": "Add FirestoreClientProvider (#6050)\n\nIntroduce FirestoreClientProvider to manage life cycle and access to\r\nFirestoreClient. Calls to FirestoreClient are made through the reference\r\nheld in FirestoreClientProvider, thereby preparing for swapping\r\nFirestoreClient in future PR. This requires rewiring calls, such that\r\ncode does not hold a direct reference to FirestoreClient.\r\n\r\nI am open to a better name than FirestoeClientProvider...",
131+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/08deb691d666d981b72c0f96a266befa16812d95",
132+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6050"
133+
},
134+
{
135+
"commitId": "57aaf396af5bed37a57816073ace0b0251aed882",
136+
"prId": "6154",
137+
"author": "Mark Duckworth",
138+
"message": "feat: Add support for the VectorValue type (#6154)\n\n",
139+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/57aaf396af5bed37a57816073ace0b0251aed882",
140+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6154"
141+
}
142+
],
143+
"firebase-firestore/ktx": [
144+
],
145+
"firebase-messaging": [
146+
{
147+
"commitId": "8c04ec2b567340dc61b2d2ff4fcb5e9faa9deba5",
148+
"prId": "6112",
149+
"author": "Greg Sakakihara",
150+
"message": "Check for notification_open duplicate logging based on message ID. (#6112)\n\n- Changed to use the message ID when checking for duplicate\r\nnotification_open logging instead of the Activity's Intent. This should\r\navoid logging again when an app starts another activity using a copy of\r\nthe notification's intent\r\n(https://github.com/firebase/firebase-android-sdk/issues/6091).",
151+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/8c04ec2b567340dc61b2d2ff4fcb5e9faa9deba5",
152+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6112"
153+
},
154+
{
155+
"commitId": "c928402e8f1099e1a876205674f345827627b618",
156+
"prId": "6098",
157+
"author": "welishr",
158+
"message": "Retry topic subscription on quota errors using exponential backoff (#6098)\n\nTopic subscription requests might hit a quota, but we can retry these\r\nfailures with exponential backoff incase they are transient. Retries will only be attempted as long as the app lives and will eventually backoff to 8 hours, so even if an app is consistently at quota, these extra sporadic retries should be harmless.\r\n\r\nFixes #6032",
159+
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/c928402e8f1099e1a876205674f345827627b618",
160+
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/6098"
161+
}
162+
],
163+
"firebase-messaging-directboot": [
164+
],
165+
"firebase-messaging/ktx": [
166+
]
167+
},
168+
"changedLibrariesWithNoChangelog": [
169+
":firebase-vertexai"
170+
]
171+
}

release_report.md

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# Release Report
2+
## firebase-components
3+
4+
* add release notes for componenets (#6184)
5+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6184) [commit](https://github.com/firebase/firebase-android-sdk/commit/b83910b238aa9ac66a42f7fba49aedc5e86c8ffd) [David Motsonashvili]
6+
7+
## firebase-crashlytics
8+
9+
* move more jobs to disk write (#6156)
10+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6156) [commit](https://github.com/firebase/firebase-android-sdk/commit/db42baeae866b02cc877e27df14a7749ff255807) [themiswang]
11+
12+
* Make the session id not depend on fetching the fid (#6152)
13+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6152) [commit](https://github.com/firebase/firebase-android-sdk/commit/fb2f8b24afc581dbb22d453859bbfe8bb37d4caa) [Matthew Robertson]
14+
15+
* Add a CrashlyticsWorkers container to manage the workers (#6178)
16+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6178) [commit](https://github.com/firebase/firebase-android-sdk/commit/9535f940e2172021263497d819d3aec680ab301d) [Matthew Robertson]
17+
18+
* Create a util for Crashlytics tasks, and move race into it (#6158)
19+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6158) [commit](https://github.com/firebase/firebase-android-sdk/commit/9ed73c407bee8bde1e7c6e611a68f1639374bf9c) [Matthew Robertson]
20+
21+
* Move CrashlyticsWorker to concurrency package (#6148)
22+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6148) [commit](https://github.com/firebase/firebase-android-sdk/commit/99a9d9358502f88f464484c30539f836aa56e05b) [Matthew Robertson]
23+
24+
* Improvements to the CrashlyticsWorker (#6143)
25+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6143) [commit](https://github.com/firebase/firebase-android-sdk/commit/8b832df8146dd6ec58931aba6e0b01e8c1db0321) [Matthew Robertson]
26+
27+
* Add tests for internal apis used by development platform plugins (#6140)
28+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6140) [commit](https://github.com/firebase/firebase-android-sdk/commit/d0fea0e29b81201ec6d884fe65c6396ac5fe938c) [Matthew Robertson]
29+
30+
* Move log and non-fatal persistence to disk write worker (#6133)
31+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6133) [commit](https://github.com/firebase/firebase-android-sdk/commit/10fe14215dcdff6e57f67196309b5f7fee859ad9) [themiswang]
32+
33+
* Fix flaky test (#6132)
34+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6132) [commit](https://github.com/firebase/firebase-android-sdk/commit/26c8a5a7eab7fffb2820d8b9f23643d24c8510f1) [Matthew Robertson]
35+
36+
* User action refactor (#6120)
37+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6120) [commit](https://github.com/firebase/firebase-android-sdk/commit/3a4ec1891cd39115dff7d25fcb2b2eab3e743aba) [themiswang]
38+
39+
* Migrate to Firebase common executors (#6128)
40+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6128) [commit](https://github.com/firebase/firebase-android-sdk/commit/96b702fbb7dda5569d08459d44e97ce63657bde8) [Matthew Robertson]
41+
42+
* Generalize the CrashlyticsWorker (#6126)
43+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6126) [commit](https://github.com/firebase/firebase-android-sdk/commit/705d7a3d71afa736a685d02779b02c90be6b50ea) [Matthew Robertson]
44+
45+
* Convenient preconditions specific for Crashlytics concurrency (#6125)
46+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6125) [commit](https://github.com/firebase/firebase-android-sdk/commit/1b491717889cbb74239b24711396400652a43990) [Matthew Robertson]
47+
48+
## firebase-crashlytics-ndk
49+
50+
51+
## firebase-sessions
52+
53+
54+
## firebase-crashlytics/ktx
55+
56+
57+
## firebase-firestore
58+
59+
* Add FirestoreClientProvider (#6050)
60+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6050) [commit](https://github.com/firebase/firebase-android-sdk/commit/08deb691d666d981b72c0f96a266befa16812d95) [Tom Andersen]
61+
62+
* feat: Add support for the VectorValue type (#6154)
63+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6154) [commit](https://github.com/firebase/firebase-android-sdk/commit/57aaf396af5bed37a57816073ace0b0251aed882) [Mark Duckworth]
64+
65+
## firebase-firestore/ktx
66+
67+
68+
## firebase-messaging
69+
70+
* Check for notification_open duplicate logging based on message ID. (#6112)
71+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6112) [commit](https://github.com/firebase/firebase-android-sdk/commit/8c04ec2b567340dc61b2d2ff4fcb5e9faa9deba5) [Greg Sakakihara]
72+
73+
* Retry topic subscription on quota errors using exponential backoff (#6098)
74+
[pr](https://github.com/firebase/firebase-android-sdk/pull/6098) [commit](https://github.com/firebase/firebase-android-sdk/commit/c928402e8f1099e1a876205674f345827627b618) [welishr]
75+
76+
## firebase-messaging-directboot
77+
78+
79+
## firebase-messaging/ktx
80+
81+
82+
83+
## SDKs with changes, but no changelogs
84+
:firebase-vertexai

0 commit comments

Comments
 (0)