-
Notifications
You must be signed in to change notification settings - Fork 588
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
404 additions
and
0 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,33 @@ | ||
{ | ||
"name": "test_m001", | ||
"libraries": [ | ||
":firebase-abt", | ||
":firebase-appdistribution", | ||
":firebase-appdistribution-api", | ||
":firebase-appdistribution-api:ktx", | ||
":firebase-config", | ||
":firebase-config:ktx", | ||
":firebase-config-interop", | ||
":firebase-crashlytics", | ||
":firebase-crashlytics-ndk", | ||
":firebase-crashlytics:ktx", | ||
":firebase-database", | ||
":firebase-database:ktx", | ||
":firebase-datatransport", | ||
":firebase-firestore", | ||
":firebase-firestore:ktx", | ||
":firebase-messaging", | ||
":firebase-messaging-directboot", | ||
":firebase-messaging:ktx", | ||
":firebase-ml-modeldownloader", | ||
":firebase-ml-modeldownloader:ktx", | ||
":firebase-perf", | ||
":firebase-perf:ktx", | ||
":firebase-sessions", | ||
":appcheck:firebase-appcheck", | ||
":appcheck:firebase-appcheck-debug", | ||
":appcheck:firebase-appcheck-debug-testing", | ||
":appcheck:firebase-appcheck-playintegrity", | ||
":appcheck:firebase-appcheck:ktx" | ||
] | ||
} |
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,234 @@ | ||
{ | ||
"changesByLibraryName": { | ||
"firebase-abt": [ | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
} | ||
], | ||
"firebase-appdistribution": [ | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
} | ||
], | ||
"firebase-appdistribution-api": [ | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
} | ||
], | ||
"firebase-appdistribution-api/ktx": [ | ||
], | ||
"firebase-config": [ | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
} | ||
], | ||
"firebase-config/ktx": [ | ||
], | ||
"firebase-config-interop": [ | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
} | ||
], | ||
"firebase-crashlytics": [ | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
} | ||
], | ||
"firebase-crashlytics-ndk": [ | ||
], | ||
"firebase-crashlytics/ktx": [ | ||
], | ||
"firebase-database": [ | ||
{ | ||
"commitId": "5ef5cdda14666df3f6727719f4d3344c8286ef32", | ||
"prId": "5626", | ||
"author": "vladd-g", | ||
"message": "Firestore/Database: Handle bridge methods while mapping (#5626)\n\nThis PR was inspired by [this\r\nquestion](https://stackoverflow.com/questions/77739613/kotlin-multiple-setters-getters-generics/).\r\nThe `@Exclude` annotation has not been propagated to Kotlin's\r\ncorresponding bridge methods. Additionally, there is no straightforward\r\nway to eliminate their 'get-' and 'set-' prefixes, as `@JvmName` is not\r\npropagated to them either.\r\n\r\nIt seemed possible to solve this issue by redesigning the models.\r\nHowever, including bridge methods in the exceptions list – alongside\r\nother checks nearby – anyway seems to be a viable solution.\r\n\r\n---------\r\n\r\nCo-authored-by: cherylEnkidu <cheryllin@google.com>", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5ef5cdda14666df3f6727719f4d3344c8286ef32", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5626" | ||
} | ||
], | ||
"firebase-database/ktx": [ | ||
], | ||
"firebase-datatransport": [ | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
} | ||
], | ||
"firebase-firestore": [ | ||
{ | ||
"commitId": "5ef5cdda14666df3f6727719f4d3344c8286ef32", | ||
"prId": "5626", | ||
"author": "vladd-g", | ||
"message": "Firestore/Database: Handle bridge methods while mapping (#5626)\n\nThis PR was inspired by [this\r\nquestion](https://stackoverflow.com/questions/77739613/kotlin-multiple-setters-getters-generics/).\r\nThe `@Exclude` annotation has not been propagated to Kotlin's\r\ncorresponding bridge methods. Additionally, there is no straightforward\r\nway to eliminate their 'get-' and 'set-' prefixes, as `@JvmName` is not\r\npropagated to them either.\r\n\r\nIt seemed possible to solve this issue by redesigning the models.\r\nHowever, including bridge methods in the exceptions list – alongside\r\nother checks nearby – anyway seems to be a viable solution.\r\n\r\n---------\r\n\r\nCo-authored-by: cherylEnkidu <cheryllin@google.com>", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5ef5cdda14666df3f6727719f4d3344c8286ef32", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5626" | ||
}, | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
}, | ||
{ | ||
"commitId": "9b48edd65856a866f752412e017f52546867c743", | ||
"prId": "5660", | ||
"author": "cherylEnkidu", | ||
"message": "Add test coverage for bundle to verify the support for empty array and map (#5660)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/9b48edd65856a866f752412e017f52546867c743", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5660" | ||
}, | ||
{ | ||
"commitId": "4dcae02e0937b0fc347e7aeab971a77fcf3762e8", | ||
"prId": "5634", | ||
"author": "Denver Coneybeare", | ||
"message": "Firestore: Small Count API documentation improvements (#5634)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/4dcae02e0937b0fc347e7aeab971a77fcf3762e8", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5634" | ||
} | ||
], | ||
"firebase-firestore/ktx": [ | ||
], | ||
"firebase-messaging": [ | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
} | ||
], | ||
"firebase-messaging-directboot": [ | ||
], | ||
"firebase-messaging/ktx": [ | ||
], | ||
"firebase-ml-modeldownloader": [ | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
} | ||
], | ||
"firebase-ml-modeldownloader/ktx": [ | ||
], | ||
"firebase-perf": [ | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
}, | ||
{ | ||
"commitId": "e8d357998aa77635a90d6c0a4bd1285f60eaaf10", | ||
"prId": "5672", | ||
"author": "Rodrigo Lazo", | ||
"message": "Fix perf devapp namespace (#5672)\n\nNamespace should be `com.googletest.firebase.perf.testapp` without the\r\n`prod` suffix", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/e8d357998aa77635a90d6c0a4bd1285f60eaaf10", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5672" | ||
} | ||
], | ||
"firebase-perf/ktx": [ | ||
], | ||
"firebase-sessions": [ | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
} | ||
], | ||
"appcheck/firebase-appcheck": [ | ||
{ | ||
"commitId": "5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prId": "5631", | ||
"author": "Rodrigo Lazo", | ||
"message": "Bump internal dependencies (#5631)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/5c24573d473f07be6553bb30a18ef68b3ea30e3c", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5631" | ||
} | ||
], | ||
"appcheck/firebase-appcheck-debug": [ | ||
{ | ||
"commitId": "e69040707eaf1fab00561739bfa3d3e7ca93edb0", | ||
"prId": "5686", | ||
"author": "Rodrigo Lazo", | ||
"message": "Add missing changelog entries for m143 (#5686)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/e69040707eaf1fab00561739bfa3d3e7ca93edb0", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5686" | ||
} | ||
], | ||
"appcheck/firebase-appcheck-debug-testing": [ | ||
{ | ||
"commitId": "e69040707eaf1fab00561739bfa3d3e7ca93edb0", | ||
"prId": "5686", | ||
"author": "Rodrigo Lazo", | ||
"message": "Add missing changelog entries for m143 (#5686)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/e69040707eaf1fab00561739bfa3d3e7ca93edb0", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5686" | ||
} | ||
], | ||
"appcheck/firebase-appcheck-playintegrity": [ | ||
{ | ||
"commitId": "e69040707eaf1fab00561739bfa3d3e7ca93edb0", | ||
"prId": "5686", | ||
"author": "Rodrigo Lazo", | ||
"message": "Add missing changelog entries for m143 (#5686)\n\n", | ||
"commitLink": "https://github.com/firebase/firebase-android-sdk/commit/e69040707eaf1fab00561739bfa3d3e7ca93edb0", | ||
"prLink": "https://github.com/firebase/firebase-android-sdk/pull/5686" | ||
} | ||
], | ||
"appcheck/firebase-appcheck/ktx": [ | ||
] | ||
}, | ||
"changedLibrariesWithNoChangelog": [ | ||
":firebase-common", | ||
":firebase-common:ktx", | ||
":firebase-dynamic-links", | ||
":firebase-dynamic-links:ktx" | ||
] | ||
} |
Oops, something went wrong.