-
Notifications
You must be signed in to change notification settings - Fork 586
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrating from util::Optional
to std::optional
since Realm Core is moving that way
#6449
Conversation
tul::Optional
to std::optional
since Realm Core is moving that wayutil::Optional
to std::optional
since Realm Core is moving that way
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Future, here we come 🙂
CHANGELOG.md
Outdated
<!-- * Either mention core version or upgrade --> | ||
<!-- * Using Realm Core vX.Y.Z --> | ||
<!-- * Upgraded Realm Core from vX.Y.Z to vA.B.C --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<!-- * Either mention core version or upgrade --> | |
<!-- * Using Realm Core vX.Y.Z --> | |
<!-- * Upgraded Realm Core from vX.Y.Z to vA.B.C --> |
package-lock.json
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one changed because of commander
and @commander-js/extra-typings
switching versions in bindgen to v11
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep 👍 It's expected and will also happen when we pull in realm/realm-core#7299.
You could probably leave those updates out of this PR and add them on the PR upgrading to an upcoming Core release instead 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it builds and passes, I'm happy 😊
b01469f
to
e58efbe
Compare
…s moving that way (realm#6449) * Migrating from `tul::Optional` to `std::optional` since Realm Core is moving that way * Update core * Update CHANGELOG.md * Make linter great again
What, How & Why?
The Realm Core team wishes to stop using
util::Optional
and start usingstd::optional
. Currentlyutil::Optional
is an alias but will eventually disappear. Together with realm/realm-core#7284 we are preparing for the future.Not sure why
package-lock.json
needs to be updated.☑️ ToDos
Compatibility
label is updated or copied from previous entryCOMPATIBILITY.md
package.json
s (if updating internal packages)Breaking
label has been applied or is not necessary