-
Notifications
You must be signed in to change notification settings - Fork 61
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
Bump core 14.10.4 #1801
Bump core 14.10.4 #1801
Conversation
c1fcb2c
to
e825ebf
Compare
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.
Minor things 👍
@@ -547,7 +547,9 @@ jobs: | |||
uses: actions/setup-java@v4 | |||
with: | |||
distribution: ${{ vars.VERSION_JAVA_DISTRIBUTION }} | |||
java-version: ${{ vars.VERSION_JAVA }} | |||
java-version: | | |||
17 |
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.
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 PR is succeeded by #1779. But the explicit reference to Java 17 is maintained. This syntax will cause actions/setup-java
to install both 17
and vars.VERSION_JAVA
so this is exactly allowing us to run the sdkmanager with Java 17 while building the rest with vars.VERSION_JAVA
pointed to by JAVA_HOME
.
.directory(metadataDir) | ||
.encryptionKey(wrongKey) | ||
.schemaVersion(7) |
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.
Why do we need to specify the schema version? the test is validating the encryption key...
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.
Because the schema version that the client is using to write the metadata realm is greater than 0 which is used by default. If we don't set it we will get a migration error when trying to open the realm.
encryptedMetadataRealm_openWithWrongKeyThrows
: copies the Realm file to validate encryption.is_fatal
flag after being fliped inrealm_sync_session_handle_error_for_testing
.uploadProgressListener_changesOnly
disabled until download progress estimate is always 1.0 realm-core#7869 is fixed.