| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
There was a problem hiding this comment.
Thanks for fixing this! Please make sure that this is ok to merge/the version number in the changelog is up-to-date.
Sorry, something went wrong.
|
|
||
| ### 8.1.0 | ||
| - Changes | ||
| - Firestore: Fixed a linker error when DocumentChange::npos was used. |
There was a problem hiding this comment.
Nit: please wrap DocumentChange::npos in backticks.
Sorry, something went wrong.
There was a problem hiding this comment.
Done.
Sorry, something went wrong.
| ### 8.1.0 | ||
| - Changes | ||
| - Firestore: Fixed a linker error when DocumentChange::npos was used. | ||
| ([#474](https://github.com/firebase/firebase-cpp-sdk/pull/474)). |
There was a problem hiding this comment.
Optional: I think the changelog usually links to issues, not PRs, so this link could probably be omited.
Sorry, something went wrong.
There was a problem hiding this comment.
It looks like there is a mixture of issues and PRs linked to in previous change log entries. I see your point but I personally feel like adding a link to additional context is useful for future readers. If this issue had been discovered externally then there would be an issue number; however, since it was discovered by me, a developer on the Firestore team, no issue was created. IMO, providing this link adds value at no cost. If you feel strongly I can remove it, but I like having it here.
Sorry, something went wrong.
There was a problem hiding this comment.
Please make sure that this is ok to merge/the version number in the changelog is up-to-date.
I confirmed the version number at go/firebase-cpp-release.
Sorry, something went wrong.
|
|
||
| ### 8.1.0 | ||
| - Changes | ||
| - Firestore: Fixed a linker error when DocumentChange::npos was used. |
There was a problem hiding this comment.
Done.
Sorry, something went wrong.
| ### 8.1.0 | ||
| - Changes | ||
| - Firestore: Fixed a linker error when DocumentChange::npos was used. | ||
| ([#474](https://github.com/firebase/firebase-cpp-sdk/pull/474)). |
There was a problem hiding this comment.
It looks like there is a mixture of issues and PRs linked to in previous change log entries. I see your point but I personally feel like adding a link to additional context is useful for future readers. If this issue had been discovered externally then there would be an issue number; however, since it was discovered by me, a developer on the Firestore team, no issue was created. IMO, providing this link adds value at no cost. If you feel strongly I can remove it, but I like having it here.
Sorry, something went wrong.
❌ Integration test FAILEDRequested by @dconeybe on commit de68c2b
|
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Fix a bug where accessing firebase::firestore::DocumentChange::npos from a non-Android platform results in a linker error:
Undefined symbols for architecture x86_64: "firebase::firestore::DocumentChange::npos", referenced from: firebase_testapp_automated::FirebaseFirestoreBasicTest_TestDocumentChangeNpos_Test::TestBody() in integration_test.cc.o ld: symbol(s) not found for architecture x86_64Here is the declaration of npos:
firebase-cpp-sdk/firestore/src/include/firebase/firestore/document_change.h
Lines 66 to 72 in 7ae9569
The fix is to add a definition of npos into the corresponding .cc file